OWL2VOWL_work

init

6/9/2026 12:39:42 PM

Changes

.dockerignore 5(+5 -0)

.gitignore 32(+32 -0)

.travis.yml 3(+3 -0)

Dockerfile 40(+40 -0)

LICENSE.txt 21(+21 -0)

ontologies/foaf.rdf 609(+609 -0)

ontologies/fullontobench.ttl 10595(+10595 -0)

ontologies/marinetlo.owl 1784(+1784 -0)

ontologies/muto.rdf 215(+215 -0)

ontologies/sioc.rdf 851(+851 -0)

ontologies/tagont.owl 247(+247 -0)

ontologies/test.ttl 64(+64 -0)

ontologies/testing.owl 792(+792 -0)

ontologies/v1.owl 2413(+2413 -0)

ontologies/wine.rdf 2402(+2402 -0)

pom.xml 559(+559 -0)

README.md 101(+101 -0)

Details

.dockerignore 5(+5 -0)

diff --git a/.dockerignore b/.dockerignore
new file mode 100644
index 0000000..c8f5623
--- /dev/null
+++ b/.dockerignore
@@ -0,0 +1,5 @@
+.git
+target
+ontologies
+*.md
+!doc/docker/README.md
diff --git a/.github/workflows/docker-ci.yml b/.github/workflows/docker-ci.yml
new file mode 100644
index 0000000..3e8177d
--- /dev/null
+++ b/.github/workflows/docker-ci.yml
@@ -0,0 +1,55 @@
+name: Docker CI
+
+on:
+  pull_request:
+    paths:
+      - ".github/workflows/docker-ci.yml"
+      - "Dockerfile"
+      - "pom.xml"
+      - "src/**"
+  push:
+    branches: [master, main]
+    paths:
+      - ".github/workflows/docker-ci.yml"
+      - "Dockerfile"
+      - "pom.xml"
+      - "src/**"
+
+concurrency:
+  group: docker-ci-${{ github.workflow }}-${{ github.ref }}
+  cancel-in-progress: true
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    permissions:
+      contents: read
+    steps:
+      - uses: actions/checkout@v6.0.3
+
+      - uses: docker/setup-buildx-action@v4.1.0
+
+      - name: Build image
+        uses: docker/build-push-action@v7.2.0
+        with:
+          context: .
+          file: Dockerfile
+          tags: owl2vowl:ci
+          load: true
+          cache-from: type=gha
+          cache-to: type=gha,mode=max
+
+      - name: Smoke test
+        run: |
+          docker run -d --name owl2vowl-ci -p 8080:8080 owl2vowl:ci
+          for i in $(seq 1 40); do
+            if curl -sf http://127.0.0.1:8080/serverTimeStamp; then
+              echo "OK"
+              docker rm -f owl2vowl-ci
+              exit 0
+            fi
+            sleep 3
+          done
+          docker logs owl2vowl-ci
+          docker rm -f owl2vowl-ci
+          exit 1
diff --git a/.github/workflows/docker-release.yml b/.github/workflows/docker-release.yml
new file mode 100644
index 0000000..a2cf9f0
--- /dev/null
+++ b/.github/workflows/docker-release.yml
@@ -0,0 +1,49 @@
+name: Docker Release
+
+on:
+  push:
+    tags:
+      - "v*"
+
+permissions:
+  contents: read
+  packages: write
+
+env:
+  REGISTRY: ghcr.io
+
+jobs:
+  publish:
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v6.0.3
+
+      - uses: docker/setup-buildx-action@v4.1.0
+
+      - uses: docker/login-action@v4.2.0
+        with:
+          registry: ${{ env.REGISTRY }}
+          username: ${{ github.actor }}
+          password: ${{ secrets.GITHUB_TOKEN }}
+
+      - name: Docker metadata
+        id: meta
+        uses: docker/metadata-action@v6.0.0
+        with:
+          images: ${{ env.REGISTRY }}/${{ github.repository }}
+          tags: |
+            type=semver,pattern={{version}}
+            type=semver,pattern={{major}}.{{minor}}
+            type=semver,pattern={{major}}
+            type=raw,value=latest
+
+      - name: Build and push
+        uses: docker/build-push-action@v7.2.0
+        with:
+          context: .
+          file: Dockerfile
+          push: true
+          tags: ${{ steps.meta.outputs.tags }}
+          labels: ${{ steps.meta.outputs.labels }}
+          cache-from: type=gha
+          cache-to: type=gha,mode=max

.gitignore 32(+32 -0)

diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..73868cb
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,32 @@
+# Maven build directory
+/target
+
+# IntelliJ files
+*.iml
+.idea/
+
+# Eclipse files
+.project
+.classpath
+*.pydevproject
+.metadata
+bin/**
+tmp/**
+tmp/**/*
+*.tmp
+*.bak
+*.swp
+*~.nib
+local.properties
+.settings/
+.loadpath
+
+# Release directory
+/release
+/logs/
+
+/src/main/resources/static/
+
+rebel.xml
+/owl2vowl_logs/
+/bin/

.travis.yml 3(+3 -0)

diff --git a/.travis.yml b/.travis.yml
new file mode 100644
index 0000000..9bcf999
--- /dev/null
+++ b/.travis.yml
@@ -0,0 +1,3 @@
+language: java
+jdk:
+  - oraclejdk8
diff --git a/doc/docker/README.md b/doc/docker/README.md
new file mode 100644
index 0000000..509ae02
--- /dev/null
+++ b/doc/docker/README.md
@@ -0,0 +1,36 @@
+# Docker — OWL2VOWL
+
+## Full stack (WebVOWL + converter)
+
+OWL2VOWL is built **into** the WebVOWL image. Clone **WebVOWL** only; the Dockerfile clones this repo from GitHub during `docker build`:
+
+```bash
+git clone https://github.com/VisualDataWeb/WebVOWL.git
+cd WebVOWL
+docker compose build && docker compose up -d
+```
+
+See `WebVOWL/docker/README.md` (build args `OWL2VOWL_GIT_REF`, `OWL2VOWL_GIT_URL`).
+
+## Standalone converter image (this repo)
+
+Optional JAR/WAR-only container (no WebVOWL UI):
+
+```bash
+cd OWL2VOWL
+docker build -t owl2vowl:local .
+docker run --rm -p 8080:8080 owl2vowl:local
+```
+
+Uses `OWL2VOWL/Dockerfile` (`maven:3.9.16-eclipse-temurin-8-noble` → `eclipse-temurin:8-jre-noble`). Runs as user **`owl2vowl`** (non-root) with `HEALTHCHECK` on `/serverTimeStamp`.
+
+### CI / GHCR
+
+| Workflow | Trigger | Image |
+|----------|---------|-------|
+| `.github/workflows/docker-ci.yml` | PR + `master` | Build + smoke test |
+| `.github/workflows/docker-release.yml` | Tag `v*` | `ghcr.io/visualdataweb/owl2vowl` |
+
+## Build context
+
+`.dockerignore` excludes `ontologies/` from the standalone image build context.

Dockerfile 40(+40 -0)

diff --git a/Dockerfile b/Dockerfile
new file mode 100644
index 0000000..90e7dff
--- /dev/null
+++ b/Dockerfile
@@ -0,0 +1,40 @@
+ARG OWL2VOWL_VERSION=0.3.7
+ARG MAVEN_IMAGE=3.9.16-eclipse-temurin-8-noble
+ARG JRE_IMAGE=8-jre-noble
+
+FROM maven:${MAVEN_IMAGE} AS build
+
+WORKDIR /var/lib/owl2vowl
+COPY pom.xml .
+RUN mvn -B dependency:go-offline -P war-release
+
+COPY src src
+RUN mvn -B package -P war-release -DskipTests
+
+FROM eclipse-temurin:${JRE_IMAGE}
+
+ARG OWL2VOWL_VERSION=0.3.7
+
+LABEL org.opencontainers.image.title="OWL2VOWL" \
+      org.opencontainers.image.description="OWL to VOWL JSON converter (Spring Boot WAR)" \
+      org.opencontainers.image.version="${OWL2VOWL_VERSION}"
+
+RUN apt-get update \
+    && apt-get install -y --no-install-recommends curl \
+    && rm -rf /var/lib/apt/lists/* \
+    && groupadd -r owl2vowl --gid=10001 \
+    && useradd -r -g owl2vowl --uid=10001 --home-dir=/owl2vowl owl2vowl \
+    && mkdir -p /owl2vowl \
+    && chown -R owl2vowl:owl2vowl /owl2vowl
+
+WORKDIR /owl2vowl
+COPY --from=build --chown=owl2vowl:owl2vowl /var/lib/owl2vowl/target/owl2vowl.war .
+
+USER owl2vowl
+
+EXPOSE 8080
+
+HEALTHCHECK --interval=30s --timeout=5s --start-period=90s --retries=3 \
+    CMD curl -f http://127.0.0.1:8080/serverTimeStamp || exit 1
+
+CMD ["java", "-jar", "owl2vowl.war"]

LICENSE.txt 21(+21 -0)

diff --git a/LICENSE.txt b/LICENSE.txt
new file mode 100644
index 0000000..b04cd03
--- /dev/null
+++ b/LICENSE.txt
@@ -0,0 +1,21 @@
+The MIT License (MIT)
+
+Copyright (c) 2014-2020 Vincent Link, Steffen Lohmann, Eduard Marbach, Vitalis Wiens
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/ontologies/allvalues.ttl b/ontologies/allvalues.ttl
new file mode 100644
index 0000000..d061e3e
--- /dev/null
+++ b/ontologies/allvalues.ttl
@@ -0,0 +1,201 @@
+@prefix : <http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix xml: <http://www.w3.org/XML/1998/namespace> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@base <http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/> .
+
+<http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/> rdf:type owl:Ontology .
+
+
+#################################################################
+#
+#    Object Properties
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/objectAllValuesFromProperty
+
+:objectAllValuesFromProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/objectSomeValuesFromProperty
+
+:objectSomeValuesFromProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/objectSomeValuesFromProperty_RL
+
+:objectSomeValuesFromProperty_RL rdf:type owl:ObjectProperty .
+
+
+:objectAllValuesFromPropertyWithDomainAndRange rdf:type owl:ObjectProperty ;
+
+                           rdfs:domain :Class1 ;
+
+                           rdfs:range :ObjectAllValuesFromRange .
+
+
+:objectAllValuesFromPropertyWithDomainAndNoRange rdf:type owl:ObjectProperty ;
+
+                           rdfs:domain :Class1 .
+
+
+:objectAllValuesFromPropertyWithRangeAndNoDomain rdf:type owl:ObjectProperty ;
+
+                           rdfs:range :ObjectAllValuesFromRange .
+
+
+
+
+
+#################################################################
+#
+#    Data properties
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/dataAllValuesFromProperty
+
+:dataAllValuesFromProperty rdf:type owl:DatatypeProperty ;
+                           
+                           rdfs:domain :Class1 ;
+                           
+                           rdfs:range xsd:integer .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/dataSomeValuesFromProperty
+
+:dataSomeValuesFromProperty rdf:type owl:DatatypeProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/dataSomeValuesFromProperty_RL
+
+:dataSomeValuesFromProperty_RL rdf:type owl:DatatypeProperty .
+
+
+
+
+
+#################################################################
+#
+#    Classes
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/Class1
+
+:Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/DataAllValuesFrom
+
+:DataAllValuesFrom rdf:type owl:Class ;
+                   
+                   rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                     owl:onProperty :dataAllValuesFromProperty ;
+                                     owl:allValuesFrom xsd:integer
+                                   ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/DataSomeValuesFrom
+
+:DataSomeValuesFrom rdf:type owl:Class ;
+                    
+                    rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                      owl:onProperty :dataSomeValuesFromProperty ;
+                                      owl:someValuesFrom xsd:dateTime
+                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/DataSomeValuesFrom_RL
+
+:DataSomeValuesFrom_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/ObjectAllValuesFrom
+
+:ObjectAllValuesFrom rdf:type owl:Class ;
+                     
+                     rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                       owl:onProperty :objectAllValuesFromProperty ;
+                                       owl:allValuesFrom :ObjectAllValuesFromRange
+                                     ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/ObjectAllValuesFromRange
+
+:ObjectAllValuesFromRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/ObjectSomeValuesFrom
+
+:ObjectSomeValuesFrom rdf:type owl:Class ;
+                      
+                      rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                        owl:onProperty :objectSomeValuesFromProperty ;
+                                        owl:someValuesFrom :ObjectSomeValuesFromRange
+                                      ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/ObjectSomeValuesFromRange
+
+:ObjectSomeValuesFromRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/ObjectSomeValuesFromRange_RL
+
+:ObjectSomeValuesFromRange_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/39/ObjectSomeValuesFrom_RL
+
+:ObjectSomeValuesFrom_RL rdf:type owl:Class .
+
+
+
+
+
+#################################################################
+#
+#    General axioms
+#
+#################################################################
+
+
+[ rdf:type owl:Restriction ;
+  owl:onProperty :objectSomeValuesFromProperty_RL ;
+  owl:someValuesFrom :ObjectSomeValuesFromRange_RL ;
+  rdfs:subClassOf :ObjectSomeValuesFrom_RL
+] .
+
+
+
+[ rdf:type owl:Restriction ;
+  owl:onProperty :dataSomeValuesFromProperty_RL ;
+  owl:someValuesFrom xsd:dateTime ;
+  rdfs:subClassOf :DataSomeValuesFrom_RL
+] .
+
+
+
+
+###  Generated by the OWL API (version 4.1.0) https://github.com/owlcs/owlapi
+
diff --git a/ontologies/Drammar_NunnaryScene_Optimized_Rules.owl b/ontologies/Drammar_NunnaryScene_Optimized_Rules.owl
new file mode 100644
index 0000000..b5d9994
--- /dev/null
+++ b/ontologies/Drammar_NunnaryScene_Optimized_Rules.owl
@@ -0,0 +1,16289 @@
+<?xml version="1.0"?>
+
+
+<!DOCTYPE rdf:RDF [
+    <!ENTITY terms "http://purl.org/dc/terms/" >
+    <!ENTITY owl "http://www.w3.org/2002/07/owl#" >
+    <!ENTITY swrl "http://www.w3.org/2003/11/swrl#" >
+    <!ENTITY dc "http://purl.org/dc/elements/1.1/" >
+    <!ENTITY swrlb "http://www.w3.org/2003/11/swrlb#" >
+    <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
+    <!ENTITY www "http://www.cadmos.cirma.unito.it#" >
+    <!ENTITY olo "http://purl.org/ontology/olo/core#" >
+    <!ENTITY skos "http://www.w3.org/2004/02/skos/core#" >
+    <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
+    <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
+    <!ENTITY vs "http://www.w3.org/2003/06/sw-vocab-status/ns#" >
+    <!ENTITY drammar "http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#" >
+]>
+
+
+<rdf:RDF xmlns="http://www.cadmos.cirma.unito.it#"
+     xml:base="http://www.cadmos.cirma.unito.it"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
+     xmlns:terms="http://purl.org/dc/terms/"
+     xmlns:www="http://www.cadmos.cirma.unito.it#"
+     xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
+     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+     xmlns:swrl="http://www.w3.org/2003/11/swrl#"
+     xmlns:olo="http://purl.org/ontology/olo/core#"
+     xmlns:drammar="http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#"
+     xmlns:swrlb="http://www.w3.org/2003/11/swrlb#"
+     xmlns:owl="http://www.w3.org/2002/07/owl#"
+     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
+     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+     xmlns:skos="http://www.w3.org/2004/02/skos/core#">
+    <owl:Ontology rdf:about="http://www.cadmos.cirma.unito.it">
+        <dc:date rdf:datatype="&xsd;dateTime">2011-05-11T12:10:52+01:00</dc:date>
+        <owl:versionInfo rdf:datatype="&xsd;decimal">5.0</owl:versionInfo>
+        <dc:description rdf:datatype="&xsd;string">The Drammar Ontology provides basic concepts and properties 
+for semantic annotations of story-based media. </dc:description>
+        <dc:creator rdf:datatype="&xsd;string">Vincenzo Lombardo
+Rossana Damiano
+Mario Cataldi
+Antonio Lieto
+Antonio Pizzo</dc:creator>
+        <terms:publisher>CIRMA</terms:publisher>
+        <dc:title xml:lang="en">Drammar Ontology</dc:title>
+    </owl:Ontology>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Annotation properties
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://purl.org/dc/elements/1.1/creator -->
+
+    <owl:AnnotationProperty rdf:about="&dc;creator">
+        <rdfs:label xml:lang="en-us">Creator</rdfs:label>
+        <terms:issued>1999-07-02</terms:issued>
+        <terms:modified>2008-01-14</terms:modified>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <rdfs:comment xml:lang="en-us">An entity primarily responsible for making the resource.</rdfs:comment>
+        <terms:description xml:lang="en-us">Examples of a Creator include a person, an organization, or a service. Typically, the name of a Creator should be used to indicate the entity.</terms:description>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#creator-006"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </owl:AnnotationProperty>
+    
+
+
+    <!-- http://purl.org/dc/elements/1.1/date -->
+
+    <owl:AnnotationProperty rdf:about="&dc;date">
+        <rdfs:label xml:lang="en-us">Date</rdfs:label>
+        <terms:issued>1999-07-02</terms:issued>
+        <terms:modified>2008-01-14</terms:modified>
+        <rdfs:comment xml:lang="en-us">A point or period of time associated with an event in the lifecycle of the resource.</rdfs:comment>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <terms:description xml:lang="en-us">Date may be used to express temporal information at any level of granularity.  Recommended best practice is to use an encoding scheme, such as the W3CDTF profile of ISO 8601 [W3CDTF].</terms:description>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#date-006"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </owl:AnnotationProperty>
+    
+
+
+    <!-- http://purl.org/dc/elements/1.1/description -->
+
+    <owl:AnnotationProperty rdf:about="&dc;description">
+        <rdfs:label xml:lang="en-us">Description</rdfs:label>
+        <terms:modified>2008-01-14</terms:modified>
+        <terms:issued>1999-07-02</terms:issued>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <rdfs:comment xml:lang="en-us">An account of the resource.</rdfs:comment>
+        <terms:description xml:lang="en-us">Description may include but is not limited to: an abstract, a table of contents, a graphical representation, or a free-text account of the resource.</terms:description>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#description-006"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </owl:AnnotationProperty>
+    
+
+
+    <!-- http://purl.org/dc/elements/1.1/title -->
+
+    <owl:AnnotationProperty rdf:about="&dc;title">
+        <rdfs:label xml:lang="en-us">Title</rdfs:label>
+        <terms:issued>1999-07-02</terms:issued>
+        <terms:modified>2008-01-14</terms:modified>
+        <rdfs:comment xml:lang="en-us">A name given to the resource.</rdfs:comment>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#title-006"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </owl:AnnotationProperty>
+    
+
+
+    <!-- http://purl.org/dc/terms/description -->
+
+    <owl:AnnotationProperty rdf:about="&terms;description"/>
+    
+
+
+    <!-- http://purl.org/dc/terms/hasVersion -->
+
+    <owl:AnnotationProperty rdf:about="&terms;hasVersion"/>
+    
+
+
+    <!-- http://purl.org/dc/terms/issued -->
+
+    <owl:AnnotationProperty rdf:about="&terms;issued"/>
+    
+
+
+    <!-- http://purl.org/dc/terms/modified -->
+
+    <owl:AnnotationProperty rdf:about="&terms;modified"/>
+    
+
+
+    <!-- http://purl.org/dc/terms/publisher -->
+
+    <owl:AnnotationProperty rdf:about="&terms;publisher"/>
+    
+
+
+    <!-- http://purl.org/dc/terms/title -->
+
+    <owl:AnnotationProperty rdf:about="&terms;title"/>
+    
+
+
+    <!-- http://www.w3.org/2000/01/rdf-schema#comment -->
+
+    <owl:AnnotationProperty rdf:about="&rdfs;comment"/>
+    
+
+
+    <!-- http://www.w3.org/2000/01/rdf-schema#isDefinedBy -->
+
+    <owl:AnnotationProperty rdf:about="&rdfs;isDefinedBy"/>
+    
+
+
+    <!-- http://www.w3.org/2000/01/rdf-schema#label -->
+
+    <owl:AnnotationProperty rdf:about="&rdfs;label"/>
+    
+
+
+    <!-- http://www.w3.org/2000/01/rdf-schema#seeAlso -->
+
+    <owl:AnnotationProperty rdf:about="&rdfs;seeAlso"/>
+    
+
+
+    <!-- http://www.w3.org/2002/07/owl#versionInfo -->
+
+    <owl:AnnotationProperty rdf:about="&owl;versionInfo"/>
+    
+
+
+    <!-- http://www.w3.org/2003/06/sw-vocab-status/ns#term_status -->
+
+    <owl:AnnotationProperty rdf:about="&vs;term_status"/>
+    
+
+
+    <!-- http://www.w3.org/2004/02/skos/core#note -->
+
+    <owl:AnnotationProperty rdf:about="&skos;note"/>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Object Properties
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#appraisingAgent -->
+
+    <owl:ObjectProperty rdf:about="&www;appraisingAgent">
+        <rdfs:range rdf:resource="&drammar;Agent"/>
+        <rdfs:domain rdf:resource="&drammar;Emotion"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#coherentWith -->
+
+    <owl:ObjectProperty rdf:about="&www;coherentWith">
+        <rdf:type rdf:resource="&owl;SymmetricProperty"/>
+        <rdfs:range rdf:resource="&drammar;Goal"/>
+        <rdfs:domain rdf:resource="&drammar;Goal"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#containsFirstOLEPlan -->
+
+    <owl:ObjectProperty rdf:about="&www;containsFirstOLEPlan">
+        <rdfs:range rdf:resource="&drammar;OLE_Plan"/>
+        <rdfs:domain rdf:resource="&drammar;Plan"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;containsOLEPlan"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#containsLastOLEPlan -->
+
+    <owl:ObjectProperty rdf:about="&www;containsLastOLEPlan">
+        <rdfs:range rdf:resource="&drammar;OLE_Plan"/>
+        <rdfs:domain rdf:resource="&drammar;Plan"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;containsOLEPlan"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#featuresValue -->
+
+    <owl:ObjectProperty rdf:about="&www;featuresValue">
+        <rdfs:range rdf:resource="&drammar;Value"/>
+        <rdfs:domain rdf:resource="&drammar;ValueAtStake"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;features"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#isEmotionOf -->
+
+    <owl:ObjectProperty rdf:about="&www;isEmotionOf">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:range rdf:resource="&drammar;Agent"/>
+        <rdfs:domain rdf:resource="&drammar;Emotion"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#isInList -->
+
+    <owl:ObjectProperty rdf:about="&www;isInList">
+        <rdfs:subPropertyOf rdf:resource="&www;isInStructure"/>
+        <rdfs:range rdf:resource="&drammar;DramaList"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#isInPlanState -->
+
+    <owl:ObjectProperty rdf:about="&www;isInPlanState">
+        <rdfs:subPropertyOf rdf:resource="&www;isInSet"/>
+        <rdfs:range rdf:resource="&drammar;PlanState"/>
+        <rdfs:domain>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Belief"/>
+                    <rdf:Description rdf:about="&drammar;StateOfAffairsInPlanState"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:domain>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#isInSet -->
+
+    <owl:ObjectProperty rdf:about="&www;isInSet">
+        <rdfs:subPropertyOf rdf:resource="&www;isInStructure"/>
+        <rdfs:range rdf:resource="&drammar;DramaSet"/>
+        <owl:inverseOf rdf:resource="&drammar;hasSetMember"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#isInStructure -->
+
+    <owl:ObjectProperty rdf:about="&www;isInStructure">
+        <rdfs:range rdf:resource="&drammar;DramaStructure"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#isInTimeline -->
+
+    <owl:ObjectProperty rdf:about="&www;isInTimeline">
+        <rdfs:subPropertyOf rdf:resource="&www;isInList"/>
+        <rdfs:range rdf:resource="&drammar;Timeline"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#isInUnitState -->
+
+    <owl:ObjectProperty rdf:about="&www;isInUnitState">
+        <rdfs:subPropertyOf rdf:resource="&www;isInSet"/>
+        <rdfs:range rdf:resource="&drammar;UnitState"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#isPlanEffectOf -->
+
+    <owl:ObjectProperty rdf:about="&www;isPlanEffectOf">
+        <owl:inverseOf rdf:resource="&drammar;hasPlanEffect"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#isPlanPreconditionOf -->
+
+    <owl:ObjectProperty rdf:about="&www;isPlanPreconditionOf">
+        <owl:inverseOf rdf:resource="&drammar;hasPlanPrecondition"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#isUnitEffectOf -->
+
+    <owl:ObjectProperty rdf:about="&www;isUnitEffectOf">
+        <owl:inverseOf rdf:resource="&drammar;hasUnitEffect"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#isUnitPreconditionOf -->
+
+    <owl:ObjectProperty rdf:about="&www;isUnitPreconditionOf">
+        <owl:inverseOf rdf:resource="&drammar;hasUnitPrecondition"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#set_obj_property -->
+
+    <owl:ObjectProperty rdf:about="&www;set_obj_property">
+        <rdfs:domain rdf:resource="&drammar;DramaSet"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#target -->
+
+    <owl:ObjectProperty rdf:about="&www;target">
+        <rdfs:domain rdf:resource="&drammar;Emotion"/>
+        <rdfs:range>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Agent"/>
+                    <rdf:Description rdf:about="&drammar;Goal"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:range>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#achieves -->
+
+    <owl:ObjectProperty rdf:about="&drammar;achieves">
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+        <owl:inverseOf rdf:resource="&drammar;isAchievedBy"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#agent_object_property -->
+
+    <owl:ObjectProperty rdf:about="&drammar;agent_object_property">
+        <rdfs:comment>This is an abstract property that collects all the object properties having Agent (or its subclasses AgentInPlan and AgentInUnit) as DOMAIN. 
+This class has no inference value, but only is useful as an organizational principle. </rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Agent"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#containsOLE -->
+
+    <owl:ObjectProperty rdf:about="&drammar;containsOLE">
+        <rdfs:comment>Inverse of isOLElementOf.
+Connects the ordered list to its elements. </rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;DramaList"/>
+        <rdfs:range rdf:resource="&drammar;OrderedListElement"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#containsOLEAction -->
+
+    <owl:ObjectProperty rdf:about="&drammar;containsOLEAction">
+        <rdfs:range rdf:resource="&drammar;OLE_Action"/>
+        <rdfs:domain rdf:resource="&drammar;Plan"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;containsOLE"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#containsOLEPlan -->
+
+    <owl:ObjectProperty rdf:about="&drammar;containsOLEPlan">
+        <rdfs:range rdf:resource="&drammar;OLE_Plan"/>
+        <rdfs:domain rdf:resource="&drammar;Plan"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;containsOLE"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#containsOLEUnit -->
+
+    <owl:ObjectProperty rdf:about="&drammar;containsOLEUnit">
+        <rdfs:range rdf:resource="&drammar;OLE_Unit"/>
+        <rdfs:domain rdf:resource="&drammar;Timeline"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;containsOLE"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#describes -->
+
+    <owl:ObjectProperty rdf:about="&drammar;describes">
+        <rdfs:comment>The schema (SituationSchema) describes, i.e. provides a template, for processes and states (Dynamics). </rdfs:comment>
+        <rdfs:range rdf:resource="&drammar;DramaPerdurant"/>
+        <rdfs:domain rdf:resource="&drammar;SituationSchema"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#features -->
+
+    <owl:ObjectProperty rdf:about="&drammar;features">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>Generic property that has as domain some specific class (e.g. AgentInUnit, ActionInPlan), that restricts some more generic class according to its relation to some other class (e.g., Agent restricted to Unit, Action restricted to a single Plan, respectively), and as range the generic class that is restricted (e.g. Agent and Action, respectively).
+
+It is useful to catch some relation that goes beyond the subclass relation. 
+In particular, the property connects the two individuals, e.g. the individual ActionInPlan and the individual Action.  
+
+It collects, as subproperties, all the properties that link concrete entities and dynamics (so called, InUnit, e.g. AgentInUnit) and the abstract entities and dynamics (e.g., Agent). </rdfs:comment>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#featuresAgent -->
+
+    <owl:ObjectProperty rdf:about="&drammar;featuresAgent">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>Property that connects the concrete AgentInUnit, featured in some Unit, with the abstract notion of Agent. </rdfs:comment>
+        <rdfs:range rdf:resource="&drammar;Agent"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;features"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#featuresAgentInPlan -->
+
+    <owl:ObjectProperty rdf:about="&drammar;featuresAgentInPlan">
+        <rdfs:range rdf:resource="&drammar;AgentInPlan"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;featuresAgent"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#featuresObject -->
+
+    <owl:ObjectProperty rdf:about="&drammar;featuresObject">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>Property that connects the concrete ObjectInUnit, featured in some Unit, with the abstract notion of Object. </rdfs:comment>
+        <rdfs:range rdf:resource="&drammar;Object"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;features"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#featuresProcess -->
+
+    <owl:ObjectProperty rdf:about="&drammar;featuresProcess">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>Property that connects the concrete IncidentInUnit, contained in some Unit, with the abstract notion of Process (then described by a ProcessSchema). </rdfs:comment>
+        <rdfs:range rdf:resource="&drammar;Process"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;features"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#feels -->
+
+    <owl:ObjectProperty rdf:about="&drammar;feels">
+        <rdfs:comment>Property of an Agent,
+who FEELS an Emotion (a mental state with a emotional type and, in the future, an appraisal of event, object, agent, ... according to OCC or other theories).
+
+WARNING: We are assuming that, together with Units (that represent a segment of the timeline of incidents) and Plans (that represent actions to be committed when some pre-conditions are holding), in the future we need a structure for the emotional state of the agent. When such a structure S is conceived, we will create the subclass AgentInS that is the class the FEELS emotions. </rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Agent"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;agent_object_property"/>
+        <rdfs:range>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;F_Emotion"/>
+                    <rdf:Description rdf:about="&drammar;Emotion"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:range>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#follows -->
+
+    <owl:ObjectProperty rdf:about="&drammar;follows">
+        <rdfs:comment>Inverse of precedes.
+Sequential order in an ordered list.</rdfs:comment>
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+        <owl:inverseOf rdf:resource="&drammar;precedes"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasData -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasData">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>Property that connects a structural element (e.g. of the class OLE) with the data contained in it. 
+Range is not defined; it is defined for each specific structure element. </rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;OrderedListElement"/>
+        <rdfs:range rdf:resource="&owl;Thing"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasData_Action -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasData_Action">
+        <rdfs:range rdf:resource="&drammar;ActionInPlan"/>
+        <rdfs:domain rdf:resource="&drammar;OLE_Action"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;hasData"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasData_Plan -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasData_Plan">
+        <rdfs:domain rdf:resource="&drammar;OLE_Plan"/>
+        <rdfs:range rdf:resource="&drammar;Plan"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;hasData"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasData_Unit -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasData_Unit">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:domain rdf:resource="&drammar;OLE_Unit"/>
+        <rdfs:range rdf:resource="&drammar;Unit"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;hasData"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasDoneState -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasDoneState">
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+        <owl:inverseOf rdf:resource="&drammar;isDoneStateOf"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasEmotionType -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasEmotionType">
+        <rdfs:domain rdf:resource="&www;EmotionSchema"/>
+        <rdfs:range rdf:resource="&drammar;ExternalRefEmotionType"/>
+        <rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasExtRef -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasExtRef">
+        <rdfs:comment>Quality of an entity (DramaEndurant)
+
+In particular:
+
+Object_type
+This property provides a URI, in YAGOSUMO or in Wordnet, or a custom string that defines the class of some object. E.g., object individual PinkOctopus in Oktapodi is of Object_type &quot;octopus&quot; in Yago.
+
+Environment_periodOfYear
+Epoch of some environment. 
+E.g. summer, january, Easter.
+Can be a URI or forced custom string. This is why Range is empty.
+
+Environment_location
+Can be &quot;exterior&quot; or &quot;interior&quot;. From a fixed menu.
+
+Environment_timeOfDay
+Can be 
+&quot;dawn&quot;
+&quot;morning&quot;
+&quot;afternoon&quot;
+&quot;evening&quot;
+&quot;night&quot;. 
+From a fixed menu.
+
+Environment_type
+The type of an envrironment.
+E.g.: forest, kitchen, office, ... .
+It can be custom string or URI.
+This is why Range is empty.
+
+Environment_epoch
+Epoch of some environment. 
+E.g. 20th century, 1710&apos;s, 50&apos;s.
+Can be a URI or forced custom string. This is why Range is empty.
+
+</rdfs:comment>
+        <rdfs:range rdf:resource="&drammar;ExternalReference"/>
+        <rdfs:domain>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;DescriptionTemplate"/>
+                    <rdf:Description rdf:about="&drammar;DramaEntity"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:domain>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasFiller -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasFiller">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>Filler is the property that connects a Role of a Frame with the entity that fills that Role. 
+The Filler can be almost anything, but not really Thing ... this is why Range is not specified.
+Implementationally, we have put:
+AgentInUnit,
+ObjectInUnit.
+EnvironmentInUnit,
+State,
+ActionInUnit,
+EventInUnit, 
+...
+TO BE UPDATED ...</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Role"/>
+        <rdfs:range>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;DramaEndurant"/>
+                    <rdf:Description rdf:about="&drammar;DramaPerdurant"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:range>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasGoal -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasGoal">
+        <rdfs:comment>An Agent property is to have goals.
+Goal is sovraplan (since many plan can achieve a goal), so it is the range of an Agent property. 
+It is specialized into 
+- hasGoalInPlan, the property that connects an AgentInPlan to a Goal, meaning that the AgentInPlan has that goal in the plan
+and
+- hasGoalInUnit, the property that connects an AgentInUnit to a Goal, meaning that the AgentInUnit has that goal in the unit. 
+
+UTILITY
+All these three properties are inferrable from other facts in the ontology:
+1. 
+hasGoal is inferrable from the facts that (A) the Goal is (property) isAchievedBy a Plan and (B) the Plan is (property) intendedBy an AgentInPlan, (C) who (property) featuresAgent an Agent. 
+ALSO isGoalOf is inferrable, of course.
+2.
+hasGoalInPlan is inferrable from the facts that (A) the Agent (property) hasGoal a Goal and (B) the AgentInPlan (property) featuresAgent that Agent.
+3.
+hasGoalInUnit is inferrable from the facts that (A) the Agent (property) hasGoal a Goal and (B) the AgentInUnit (property) featuresAgent that Agent. 
+GUIDELINE
+Annotator MUST ONLY annotate 
+- isAchievedBy
+- intendedBy
+- featuresAgent
+
+CAVEAT
+Although all above is true, we can decide that through the interface we annotate hasGoal directly, without any SWRL reasoning. </rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Agent"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;agent_object_property"/>
+        <rdfs:range>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;F_Goal"/>
+                    <rdf:Description rdf:about="&drammar;Goal"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:range>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasPlanEffect -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasPlanEffect">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>Property that connects all the states that are effects of a plan.</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Plan"/>
+        <rdfs:range rdf:resource="&drammar;PlanState"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;plan_object_property"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasPlanPrecondition -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasPlanPrecondition">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>Property that connect all the states that are preconditions of a plan. </rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Plan"/>
+        <rdfs:range rdf:resource="&drammar;PlanState"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;plan_object_property"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasRole -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasRole">
+        <rdf:type rdf:resource="&owl;InverseFunctionalProperty"/>
+        <rdfs:comment>Connects a schema (ruled by a Frame) with each Role of the schema.</rdfs:comment>
+        <rdfs:range rdf:resource="&drammar;Role"/>
+        <rdfs:domain rdf:resource="&drammar;SituationSchema"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasSetInclusion -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasSetInclusion">
+        <rdfs:comment>Property of DramaSet class.
+It is the standard Inclusion over sets. </rdfs:comment>
+        <rdfs:subPropertyOf rdf:resource="&www;set_obj_property"/>
+        <rdfs:domain rdf:resource="&drammar;DramaSet"/>
+        <rdfs:range rdf:resource="&drammar;DramaSet"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasSetMember -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasSetMember">
+        <rdfs:subPropertyOf rdf:resource="&www;set_obj_property"/>
+        <rdfs:domain rdf:resource="&drammar;DramaSet"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasSpanEnd -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasSpanEnd">
+        <rdfs:comment>Property that connects the plan with the unit that ends its mapping on the timeline. </rdfs:comment>
+        <rdfs:range rdf:resource="&drammar;OLE_Unit"/>
+        <rdfs:domain rdf:resource="&drammar;Plan"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;plan_object_property"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasSpanInit -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasSpanInit">
+        <rdfs:comment>Property that connects the plan with the unit that initiates its mapping on the timeline. </rdfs:comment>
+        <rdfs:range rdf:resource="&drammar;OLE_Unit"/>
+        <rdfs:domain rdf:resource="&drammar;Plan"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;plan_object_property"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasUnitEffect -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasUnitEffect">
+        <rdfs:domain rdf:resource="&drammar;Unit"/>
+        <rdfs:range rdf:resource="&drammar;UnitState"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;unit_object_property"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasUnitPrecondition -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasUnitPrecondition">
+        <rdfs:domain rdf:resource="&drammar;Unit"/>
+        <rdfs:range rdf:resource="&drammar;UnitState"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;unit_object_property"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasValue -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasValue">
+        <rdfs:comment>Each agent has its values and such values must be (state_Status) true.</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Agent"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;agent_object_property"/>
+        <rdfs:range>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;F_Value"/>
+                    <rdf:Description rdf:about="&drammar;Value"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:range>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasValueType -->
+
+    <owl:ObjectProperty rdf:about="&drammar;hasValueType">
+        <rdfs:domain rdf:resource="&www;ValueSchema"/>
+        <rdfs:range rdf:resource="&drammar;ExternalRefEntity"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;hasExtRef"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#inConflictWith -->
+
+    <owl:ObjectProperty rdf:about="&drammar;inConflictWith">
+        <rdf:type rdf:resource="&owl;SymmetricProperty"/>
+        <rdfs:comment>This symmetric property overtly marks the conflicts over goals, actually DramaGoalOfDramaCharacterInUnit. 
+</rdfs:comment>
+        <rdfs:range rdf:resource="&drammar;Goal"/>
+        <rdfs:domain rdf:resource="&drammar;Goal"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#intends -->
+
+    <owl:ObjectProperty rdf:about="&drammar;intends">
+        <rdfs:comment>Intends has domain AgentInPlan and range Plan.
+Plans can be sovra-unit, as well as the Goal, but 
+Goal can also be sovra-plan. 
+So, hasGoal has domain Agent,
+while intentes has domain AgentInPlan. </rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Agent"/>
+        <rdfs:range rdf:resource="&drammar;Plan"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;agent_object_property"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#inverseObjectProperty -->
+
+    <owl:ObjectProperty rdf:about="&drammar;inverseObjectProperty">
+        <rdfs:comment>This is a generic property that groups all the inverse properties ... these properties are not annotated directly, but are inferred by the reasoning system immediately after the annotation of the direct property. 
+
+E.g. 
+achieves is INVERSE of isAchievedBy
+isGoalOf is INVERSE of hasGoal</rdfs:comment>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isAchievedBy -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isAchievedBy">
+        <rdfs:comment>This property connects a goal (GoalOfAgentInUnit) with the action that achieves it (ActionInUnit). 
+It could be the instatntiation of a generic obtainedThrough between a Goal and a Process (to be specified). </rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Goal"/>
+        <rdfs:range rdf:resource="&drammar;Plan"/>
+        <rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isDescribedBy -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isDescribedBy">
+        <rdfs:comment>Inverse of describes, this property connects a Dynamics (Process or State) with the SituationSchema that describes it.</rdfs:comment>
+        <owl:inverseOf rdf:resource="&drammar;describes"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isDoneStateOf -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isDoneStateOf">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>This is the property that connects a process with a particular state, called a done state, that holds whether the process has terminated. </rdfs:comment>
+        <rdfs:domain rdf:resource="&www;DoneSchema"/>
+        <rdfs:range>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;EventiveProcess"/>
+                    <rdf:Description rdf:about="&drammar;Plan"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:range>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isFeltBy -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isFeltBy">
+        <owl:inverseOf rdf:resource="&drammar;feels"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isFillerOf -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isFillerOf">
+        <rdf:type rdf:resource="&owl;InverseFunctionalProperty"/>
+        <owl:inverseOf rdf:resource="&drammar;hasFiller"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isGoalInUnit -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isGoalInUnit">
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+        <owl:inverseOf rdf:resource="&drammar;unitHasGoal"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isGoalOf -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isGoalOf">
+        <owl:inverseOf rdf:resource="&drammar;hasGoal"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isInPlan -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isInPlan">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:subPropertyOf rdf:resource="&www;isInList"/>
+        <rdfs:range rdf:resource="&drammar;Plan"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isInScene -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isInScene">
+        <rdfs:subPropertyOf rdf:resource="&www;isInSet"/>
+        <rdfs:range rdf:resource="&drammar;Scene"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isInUnit -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isInUnit">
+        <rdfs:subPropertyOf rdf:resource="&www;isInSet"/>
+        <owl:inverseOf rdf:resource="&drammar;unitHasEntity"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isIntendedBy -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isIntendedBy">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <owl:inverseOf rdf:resource="&drammar;intends"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isKnownBy -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isKnownBy">
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+        <owl:inverseOf rdf:resource="&drammar;knows"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isOLElementOf -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isOLElementOf">
+        <rdfs:comment>Connects the element of an ordered list to the ordered list.</rdfs:comment>
+        <owl:inverseOf rdf:resource="&drammar;containsOLE"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isRoleOf -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isRoleOf">
+        <owl:inverseOf rdf:resource="&drammar;hasRole"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isSpannedBy -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isSpannedBy">
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+        <owl:inverseOf rdf:resource="&drammar;spans"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#isValueOf -->
+
+    <owl:ObjectProperty rdf:about="&drammar;isValueOf">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <owl:inverseOf rdf:resource="&drammar;hasValue"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;inverseObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#knows -->
+
+    <owl:ObjectProperty rdf:about="&drammar;knows">
+        <rdfs:comment>Property of an AgentInPlan, who BELIEVES a Belief (a mental state with a propositional content).
+BELIEVES = KNOWS. 
+Beliefs are preconditions and effects of plans.</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Agent"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;agent_object_property"/>
+        <rdfs:range>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;F_Belief"/>
+                    <rdf:Description rdf:about="&drammar;Belief"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:range>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#mapping -->
+
+    <owl:ObjectProperty rdf:about="&drammar;mapping">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdf:type rdf:resource="&owl;SymmetricProperty"/>
+        <rdfs:domain>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;ActionInPlan"/>
+                    <rdf:Description rdf:about="&drammar;ActionInUnit"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:domain>
+        <rdfs:range>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;ActionInPlan"/>
+                    <rdf:Description rdf:about="&drammar;ActionInUnit"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:range>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#plan_object_property -->
+
+    <owl:ObjectProperty rdf:about="&drammar;plan_object_property">
+        <rdfs:domain rdf:resource="&drammar;Plan"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#precedes -->
+
+    <owl:ObjectProperty rdf:about="&drammar;precedes">
+        <rdfs:comment>Sequential order in an ordered list.</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;OrderedListElement"/>
+        <rdfs:range rdf:resource="&drammar;OrderedListElement"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#propositionalContent -->
+
+    <owl:ObjectProperty rdf:about="&drammar;propositionalContent">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>propositionalContent links a PropositionalAttitude schema (being it a BeliefSchema or a GoalSchema) to the its content (a factual state or process), that is the Process or State that is the actual content of the belief or the goal.
+Ex.: Belief (Ophelia believes PC) - propositionalContent - FactualState (PC = Hamlet is in the room) 
+Ex.: Goal (Ophelia wants PC) - propositionalContent - FactualProcess (PC = Ophelia returns the gifts) </rdfs:comment>
+        <rdfs:range>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;FactualProcess"/>
+                    <rdf:Description rdf:about="&www;FactualState"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:range>
+        <rdfs:domain>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;BeliefSchema"/>
+                    <rdf:Description rdf:about="&www;GoalSchema"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:domain>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#spans -->
+
+    <owl:ObjectProperty rdf:about="&drammar;spans">
+        <rdfs:range rdf:resource="&drammar;OLE_Unit"/>
+        <rdfs:domain rdf:resource="&drammar;Plan"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;plan_object_property"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#unitContainsAction -->
+
+    <owl:ObjectProperty rdf:about="&drammar;unitContainsAction">
+        <rdfs:range rdf:resource="&drammar;ActionInUnit"/>
+        <rdfs:domain rdf:resource="&drammar;Unit"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;unit_object_property"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#unitContainsUnintentionalIncident -->
+
+    <owl:ObjectProperty rdf:about="&drammar;unitContainsUnintentionalIncident">
+        <rdfs:range rdf:resource="&drammar;UnintentionalIncidentInUnit"/>
+        <rdfs:domain rdf:resource="&drammar;Unit"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;unit_object_property"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#unitHasEntity -->
+
+    <owl:ObjectProperty rdf:about="&drammar;unitHasEntity">
+        <rdfs:comment>Property of Unit, connecting all of its participants, specialized for agents and objects. 
+This property should be inferred for individuals through the presence of an incident inside a unit. In particular, the unit has Entity E if E is the filler of a Role of a ProcessSchema that describes an incident of the unit.  
+
+GUIDELINE
+The annotator should not annotate this property, because he/she annotates the subproperties. </rdfs:comment>
+        <rdfs:range rdf:resource="&drammar;DramaEndurant"/>
+        <rdfs:domain rdf:resource="&drammar;Unit"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;unit_object_property"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#unitHasGoal -->
+
+    <owl:ObjectProperty rdf:about="&drammar;unitHasGoal">
+        <rdfs:comment>This property links a unit with the goals that are active in the unit; that is, some Agent that performs in the unit hasGoal one of these goals. 
+This property is inferred for individuals through the mapping between plans and timeline by matching actions and incidents. 
+In particular, the unit has a goal G when an Agent intends a plan (achieving G) such that one of its actions is mapped to some incident in the unit. 
+
+GUIDELINE
+The annotator does not annotate this property. </rdfs:comment>
+        <rdfs:range rdf:resource="&drammar;Goal"/>
+        <rdfs:domain rdf:resource="&drammar;Unit"/>
+        <rdfs:subPropertyOf rdf:resource="&drammar;unit_object_property"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#unit_object_property -->
+
+    <owl:ObjectProperty rdf:about="&drammar;unit_object_property"/>
+    
+
+
+    <!-- http://www.w3.org/2002/07/owl#topObjectProperty -->
+
+    <owl:ObjectProperty rdf:about="&owl;topObjectProperty"/>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Data properties
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Process_status -->
+
+    <owl:DatatypeProperty rdf:about="&www;Process_status">
+        <rdfs:domain rdf:resource="&drammar;Process"/>
+        <rdfs:range rdf:resource="&xsd;boolean"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#atStake -->
+
+    <owl:DatatypeProperty rdf:about="&www;atStake">
+        <rdfs:comment>Boolean property:
+- true, if the value is at stake; 
+- false, if the value is balanced.</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;ValueAtStake"/>
+        <rdfs:range rdf:resource="&xsd;boolean"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#isIntentional -->
+
+    <owl:DatatypeProperty rdf:about="&www;isIntentional">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>Boolean property for Intentionality of processes. </rdfs:comment>
+        <rdfs:domain rdf:resource="&www;Action"/>
+        <rdfs:range rdf:resource="&xsd;boolean"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#quale_schemaType -->
+
+    <owl:DatatypeProperty rdf:about="&www;quale_schemaType">
+        <rdfs:comment>This datatype property represents the type of schema for some construct. 
+In particular, framenet is the magic word for the schemata extracted from Framenet. </rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;SituationSchema"/>
+        <rdfs:range>
+            <rdfs:Datatype>
+                <owl:oneOf>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&rdf;List"/>
+                        <rdf:first>belief</rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&rdf;List"/>
+                                <rdf:first>done</rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&rdf;List"/>
+                                        <rdf:first>emotion</rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&rdf;List"/>
+                                                <rdf:first>framenet</rdf:first>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&rdf;List"/>
+                                                        <rdf:first>goal</rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&rdf;List"/>
+                                                                <rdf:first>value</rdf:first>
+                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </owl:oneOf>
+            </rdfs:Datatype>
+        </rdfs:range>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Goal_achievement -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;Goal_achievement">
+        <rdfs:comment>Is some Goal achieved? Boolean T or F</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Goal"/>
+        <rdfs:range rdf:resource="&xsd;boolean"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Goal_type -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;Goal_type">
+        <rdfs:comment>Type of the goal: one of the strings
+&quot;Achievement&quot;
+&quot;Maintainance&quot;
+&quot;Perform&quot;
+&quot;Query&quot;</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Goal"/>
+        <rdfs:range>
+            <rdfs:Datatype>
+                <owl:oneOf>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&rdf;List"/>
+                        <rdf:first>Achievement</rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&rdf;List"/>
+                                <rdf:first>Maintainance</rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&rdf;List"/>
+                                        <rdf:first>Perform</rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&rdf;List"/>
+                                                <rdf:first>Query</rdf:first>
+                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </owl:oneOf>
+            </rdfs:Datatype>
+        </rdfs:range>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Object_status -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;Object_status">
+        <rdfs:comment>The status of an object (e.g., open, closed). Can be custom string or URI to some external commonsense ontology.</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;ObjectInUnit"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Plan_type -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;Plan_type">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>Can be Base or Recursive.</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Plan"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Role_ID_resource -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;Role_ID_resource">
+        <rdfs:comment>Two possible resources:
+Framenet OR Verbnet</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;ExternalRefRole"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Role_fillerDrammarType -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;Role_fillerDrammarType">
+        <rdfs:comment>It provides the type of some filler of a role, internal to Drammar ontology. 
+The range is one of the following strings: Action, Environment, Event, Agent, Object, Goal, State of affairs, Belief, Value, Emotion. </rdfs:comment>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Role_framenetRoleID -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;Role_framenetRoleID">
+        <rdfs:comment>Role_framenetRoleID
+ID of the role as stated by Framenet. It is the string returned through the access to Framenet. The string represent the ID of the Frame Element. </rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;ExternalRefRole"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Role_verbnetRoleType -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;Role_verbnetRoleType">
+        <rdfs:comment>Type of the role as stated by Verbnet. It is the string returned through the access to Verbnet. This happens when the access to Framenet fails.</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;ExternalRefRole"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#State_status -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;State_status">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>Boolean ... concerns the status of a state (state of affairs, goal, belief ...). </rdfs:comment>
+        <rdfs:range rdf:resource="&xsd;boolean"/>
+        <rdfs:domain>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;FactualState"/>
+                    <rdf:Description rdf:about="&www;StateOfAffairs"/>
+                    <rdf:Description rdf:about="&drammar;Done"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:domain>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Unit_tags -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;Unit_tags">
+        <rdfs:comment>Any tags freely added to a Unit. 
+Range is string, actually a sequence of strings (tags) separated by commas. </rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Unit"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Value_atStake -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;Value_atStake">
+        <rdfs:domain rdf:resource="&drammar;ValueAtStake"/>
+        <rdfs:range rdf:resource="&xsd;boolean"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#annotationProject -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;annotationProject">
+        <rdfs:comment>String retrieved from the project database representing the id of the project</rdfs:comment>
+        <rdfs:range rdf:resource="&xsd;string"/>
+        <rdfs:domain rdf:resource="&owl;Thing"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#freeComment -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;freeComment">
+        <rdfs:comment>Personal comment, not constrained in topic</rdfs:comment>
+        <rdfs:range rdf:resource="&xsd;string"/>
+        <rdfs:domain rdf:resource="&owl;Thing"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#freeDescription -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;freeDescription">
+        <rdfs:comment>Personal comment related mostly to topic</rdfs:comment>
+        <rdfs:range rdf:resource="&xsd;string"/>
+        <rdfs:domain rdf:resource="&owl;Thing"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasDMO -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;hasDMO">
+        <rdf:type rdf:resource="&owl;FunctionalProperty"/>
+        <rdfs:comment>Can be an Object Property, but it goes to an external class, DMO. So it is a a datatype Property to a URI. </rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;Unit"/>
+        <rdfs:range rdf:resource="&xsd;anyURI"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#hasMessage -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;hasMessage">
+        <rdfs:comment>Anything can convey a message.
+Standard cases: 
+Signpost at a city entrance &quot;Ciudad de Mexico&quot;; 
+Toothpaste brand name on the object toothpaste: &quot;Colgate&quot;
+A specific utterance in a communication action.</rdfs:comment>
+        <rdfs:range rdf:resource="&xsd;string"/>
+        <rdfs:domain rdf:resource="&owl;Thing"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#lastModified -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;lastModified">
+        <rdfs:domain rdf:resource="&owl;Thing"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#quale -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;quale">
+        <rdfs:comment>Any quality associated to anything. 
+Can be a custom string or URI in some vocabulary.
+This is why Range is empty.</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;ExternalReference"/>
+        <rdfs:range rdf:resource="&xsd;anyURI"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#quale_WordNetSense -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;quale_WordNetSense">
+        <rdfs:comment>WNSense is valued to a URI in Wordnet via MultiWordnet. E.g. &quot;partire&quot; is &quot;{v#01371248}&quot;. </rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;ExternalReference"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#quale_frame_URI -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;quale_frame_URI">
+        <rdfs:comment>It is one of the Quale ... so. domain is QualeClass
+
+Frame from Framenet selected by the annotator after having inserted an Original term, selected a sense in wordnet, selected a frame after the sense has been mapped to the possible frames through Mapnet.
+The value is the ID in Framenet.
+As Free description we insert the Name and Definition of the Frame in Framenet (actually the XML of the specific frame). 
+WARNING!!!
+Currently, in the implementation, it is the string of the number of choice in the list of frames returned. E.g. &quot;1&quot;</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;ExternalRefSchema"/>
+        <rdfs:range rdf:resource="&xsd;anyURI"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#quale_frame_name -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;quale_frame_name">
+        <rdfs:domain rdf:resource="&drammar;ExternalReference"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#quale_ontologicalConcept -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;quale_ontologicalConcept">
+        <rdfs:comment>The range is a concept in YagoSUMO. E.g. &amp;%Speaking+, &amp;%Arriving=, these two probably from SUMO; http://www.mpii.de/yago/resource/wordnet_bathing_100427853, probably from YAGO.</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;ExternalReference"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#quale_originalTerm -->
+
+    <owl:DatatypeProperty rdf:about="&drammar;quale_originalTerm">
+        <rdfs:comment>This is the string originally inserted for searching the URI in the external ontology. E.g. &quot;parlare&quot; &quot;eleganza&quot;</rdfs:comment>
+        <rdfs:domain rdf:resource="&drammar;ExternalReference"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.w3.org/2002/07/owl#topDataProperty -->
+
+    <owl:DatatypeProperty rdf:about="&owl;topDataProperty">
+        <rdfs:comment>All these properties are data associated with classes. Labels are self-explaining (e.g. hasDMO domain is absolutely Unit) or have domain Thing. In non-obvious names, the domain class is in the prefix of the name (e.g. Environment_epoch). </rdfs:comment>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Classes
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Action -->
+
+    <owl:Class rdf:about="&www;Action">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;EventiveProcess"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;isIntentional"/>
+                        <owl:hasValue rdf:datatype="&xsd;boolean">true</owl:hasValue>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&www;EventiveProcess"/>
+        <owl:disjointWith rdf:resource="&www;UnintentionalEventiveProcess"/>
+        <rdfs:comment>Action is an intentional EventiveProcess.
+
+This means that the Action should be part of a Plan of an Agent. 
+However, we have introduced an explicit boolean datatype property isIntentional, because it could that the annotators will use actions directly in the units. 
+An action is an EventiveProcess with the property isIntentional that values TRUE.
+
+Actions are then subdivided into two classes that are defined with respect to the scope to which they are bound. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BeliefSchema -->
+
+    <owl:Class rdf:about="&www;BeliefSchema">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;MentalStateSchema"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;quale_schemaType"/>
+                        <owl:hasValue>belief</owl:hasValue>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&drammar;MentalStateSchema"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#DoneInPlanState -->
+
+    <owl:Class rdf:about="&www;DoneInPlanState">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Done"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;isInPlanState"/>
+                        <owl:onClass rdf:resource="&drammar;PlanState"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#DoneInUnitState -->
+
+    <owl:Class rdf:about="&www;DoneInUnitState">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Done"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;isInUnitState"/>
+                        <owl:onClass rdf:resource="&drammar;UnitState"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#DoneSchema -->
+
+    <owl:Class rdf:about="&www;DoneSchema">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;StateSchema"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;quale_schemaType"/>
+                        <owl:hasValue>done</owl:hasValue>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&www;StateSchema"/>
+        <rdfs:comment>This schema establishes, through the value 
+  &apos;done&apos; 
+of the datatype property 
+  quale_schema
+that the representation of a Done state requires a 
+  Done schema.
+The Done schema is connected through a property 
+  isDoneStateOf
+with an EventiveProcess or the Plan that the Done state terminates.
+
+The schema practically works as a guideline. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchema -->
+
+    <owl:Class rdf:about="&www;EmotionSchema">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;MentalStateSchema"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;quale_schemaType"/>
+                        <owl:hasValue>emotion</owl:hasValue>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&drammar;MentalStateSchema"/>
+        <rdfs:comment>Emotion schema features
+- an emotion type, which refers to an individual representing a reference 
+   for the OCC emotion type
+- a role &apos;feltTowards&apos;, a property that refers to the object of the emotion. 
+
+A property &apos;feels&apos; goes from the Agent to the emotion. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EventiveProcess -->
+
+    <owl:Class rdf:about="&www;EventiveProcess">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Process"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;isInStructure"/>
+                        <owl:someValuesFrom rdf:resource="&drammar;DramaStructure"/>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <owl:disjointWith rdf:resource="&www;FactualProcess"/>
+        <rdfs:comment>EventiveProcesses are those Processes that are bound to some structure, i.e. have a scope in the ontology.
+In Drammar, the DramaStructures that contain the EventiveProcesses are Units (subclasses of DramaSets) and Plans (subclasses of DramaLists). 
+
+They are then subdivided through a further trait, that is 
+  whether the process is intentional (of an agent) or not
+  (Action or UnintentionalEventiveProcess).
+This trait is defined through a specific Datatype property, of boolean type, called isIntentional.
+
+So, its subclasses are:
+  - Action: with isIntentional property valued TRUE;
+  - UnintentionalEventiveProcess: with isIntentional property valued FALSE.
+
+Same happens in parallel to the EventiveStates, although in that case the trait concerns the state schema.</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EventiveState -->
+
+    <owl:Class rdf:about="&www;EventiveState">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;State"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;isInStructure"/>
+                        <owl:someValuesFrom rdf:resource="&drammar;DramaStructure"/>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&drammar;State"/>
+        <owl:disjointWith rdf:resource="&www;FactualState"/>
+        <rdfs:comment>EventiveState is the class of states that participate to some structure.
+In Drammar, these structures are UnitStates and PlanStates (subclasses
+of DramaSets).
+They are defined through further traits: next is 
+
+  whether the state is of an agent&apos;s mind, of the story world, or of some   
+  action aspect.
+
+This trait is defined through a specific StateSchema in the Description templates. 
+
+So, its subclasses are:
+  - DoneState (DN): some action has come at an end;
+  - MentalState (MS): mental state of an agent;
+  - StateOfAffairs (SOA): objective state of the story world. 
+
+Same happens in parallel to the EventiveProcesses, although in that case the trait concerns agent&apos;s intentionality. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#F_Belief -->
+
+    <owl:Class rdf:about="&www;F_Belief">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;F_PropositionalAttitude"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&www;BeliefSchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#F_Done -->
+
+    <owl:Class rdf:about="&www;F_Done">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;FactualState"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&www;DoneSchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#F_Emotion -->
+
+    <owl:Class rdf:about="&www;F_Emotion">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;F_MentalState"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&www;EmotionSchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#F_Goal -->
+
+    <owl:Class rdf:about="&www;F_Goal">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;F_PropositionalAttitude"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&www;GoalSchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#F_MentalState -->
+
+    <owl:Class rdf:about="&www;F_MentalState">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;FactualState"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&drammar;MentalStateSchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#F_PropositionalAttitude -->
+
+    <owl:Class rdf:about="&www;F_PropositionalAttitude">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;F_MentalState"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass>
+                            <owl:Class>
+                                <owl:unionOf rdf:parseType="Collection">
+                                    <rdf:Description rdf:about="&www;BeliefSchema"/>
+                                    <rdf:Description rdf:about="&www;GoalSchema"/>
+                                </owl:unionOf>
+                            </owl:Class>
+                        </owl:onClass>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#F_StateOfAffairs -->
+
+    <owl:Class rdf:about="&www;F_StateOfAffairs">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;FactualState"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&drammar;SOASchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#F_Value -->
+
+    <owl:Class rdf:about="&www;F_Value">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;F_MentalState"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&www;ValueSchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#FactualProcess -->
+
+    <owl:Class rdf:about="&www;FactualProcess">
+        <rdfs:subClassOf rdf:resource="&drammar;Process"/>
+        <rdfs:comment>FactualProcesses are those Processes that are abstraction of EventiveProcesses.
+They are not bound to any structure and have DramaEndurant (not contextualized to any structure) as participants.
+They are employed as PropositionalContent of Beliefs and fillers of some roles. 
+</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#FactualState -->
+
+    <owl:Class rdf:about="&www;FactualState">
+        <rdfs:subClassOf rdf:resource="&drammar;State"/>
+        <rdfs:comment>FactualStates are those States that are abstraction of EventiveStates.
+They are not bound to any structure and have DramaEndurant (not contextualized to any structure) as participants.
+They are employed as PropositionalContent of Beliefs and fillers of roles. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#GoalSchema -->
+
+    <owl:Class rdf:about="&www;GoalSchema">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;MentalStateSchema"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;quale_schemaType"/>
+                        <owl:hasValue>goal</owl:hasValue>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&drammar;MentalStateSchema"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#MentalState -->
+
+    <owl:Class rdf:about="&www;MentalState">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;EventiveState"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&drammar;MentalStateSchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>MentalStates are EventiveStates that are attributed to the mind of an agent. 
+There are four types of mental states:
+1. Emotion
+2. Belief
+3. Goal
+4. Value
+Belief and Goal are grouped under the class PropositionalAttitude, because they both concern some attitude of the agent toward a proposition (while emotions and values are different types of mental states). 
+
+A MentalState is defined as an EventiveState that is described by a MentalSchema. 
+The latter are to be specified as EmotionSchema, BeliefSchema, GoalSchema, ValueSchema. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#PropositionalAttitude -->
+
+    <owl:Class rdf:about="&www;PropositionalAttitude">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;MentalState"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass>
+                            <owl:Class>
+                                <owl:unionOf rdf:parseType="Collection">
+                                    <rdf:Description rdf:about="&www;BeliefSchema"/>
+                                    <rdf:Description rdf:about="&www;GoalSchema"/>
+                                </owl:unionOf>
+                            </owl:Class>
+                        </owl:onClass>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#StateOfAffairs -->
+
+    <owl:Class rdf:about="&www;StateOfAffairs">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;EventiveState"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&drammar;SOASchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>StateofAffairs are states that concern the storyworld as a whole; they are described by a SOASchema, so a State-of-Affairs-Schema. 
+
+</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#StateSchema -->
+
+    <owl:Class rdf:about="&www;StateSchema">
+        <rdfs:subClassOf rdf:resource="&drammar;SituationSchema"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#UnintentionalEventiveProcess -->
+
+    <owl:Class rdf:about="&www;UnintentionalEventiveProcess">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;EventiveProcess"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;isIntentional"/>
+                        <owl:hasValue rdf:datatype="&xsd;boolean">false</owl:hasValue>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&www;EventiveProcess"/>
+        <rdfs:comment>UnintentionalEventiveProcess is an unintentional EventiveProcess.
+
+So, an UnintentionalEventiveProcess is an EventiveProcess with the property isIntentional that values FALSE.
+
+UnintentionalEventiveProcess are then subdivided into two classes that are defined with respect to the scope to which they are bound. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#UnintentionalProcessInPlan -->
+
+    <owl:Class rdf:about="&www;UnintentionalProcessInPlan">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;UnintentionalEventiveProcess"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isInPlan"/>
+                        <owl:onClass rdf:resource="&drammar;Plan"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <owl:disjointWith rdf:resource="&drammar;ActionInPlan"/>
+        <rdfs:comment>Specialization of UnintentionalEventiveProcess contextualized to a Plan.
+
+This represents some unintentional process that is considered to be effective in a plan by the agent that intends the plan.
+
+It is a theoretically predicted class at the moment: no instances found yet in classical drama. But ... </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ValueSchema -->
+
+    <owl:Class rdf:about="&www;ValueSchema">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;MentalStateSchema"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;quale_schemaType"/>
+                        <owl:hasValue>value</owl:hasValue>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&drammar;MentalStateSchema"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ActionInPlan -->
+
+    <owl:Class rdf:about="&drammar;ActionInPlan">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;Action"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isInPlan"/>
+                        <owl:onClass rdf:resource="&drammar;Plan"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <owl:disjointWith rdf:resource="&drammar;ActionInUnit"/>
+        <rdfs:comment>ActionInPlan is the intentional action contextualized to a Plan. 
+The class represents those entities that are the actions mentioned in a plan. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ActionInUnit -->
+
+    <owl:Class rdf:about="&drammar;ActionInUnit">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;Action"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isInUnit"/>
+                        <owl:onClass rdf:resource="&drammar;Unit"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&www;Action"/>
+        <owl:disjointWith rdf:resource="&drammar;UnintentionalIncidentInUnit"/>
+        <rdfs:comment>Specialization of Incident for intentional Incidents in a Unit.
+Intentionality is represented with a datatype property, boolean &quot;isIntentional&quot;. 
+It is really intentional when mapped to an ActionInPlan through a SWRL. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Agent -->
+
+    <owl:Class rdf:about="&drammar;Agent">
+        <rdfs:subClassOf rdf:resource="&drammar;DramaEndurant"/>
+        <owl:disjointWith rdf:resource="&drammar;Object"/>
+        <rdfs:comment>Derived from BDI literature 
+Agents are those entities in drama, that potentially 
+-  have goals (object property hasGoal);
+-  intend plans to achieve goals (op intends)
+-  participate in actions with some role (op filler);
+
+If some Agent (e.g. Polonius) is involved in an action without being intentional (e.g., being the topic of a conversation), it remains classified as an Agent in Drammar, though it fills a different role in the frame (e.g., Topic of Conversation). </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#AgentInPlan -->
+
+    <owl:Class rdf:about="&drammar;AgentInPlan">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Agent"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;featuresAgent"/>
+                        <owl:onClass rdf:resource="&drammar;Agent"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isInPlan"/>
+                        <owl:onClass rdf:resource="&drammar;Plan"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>AgentInPlan
+
+Class of the agent who intends or commits to a plan.
+It is local to a plan. 
+Since many plans can achieve the same goal, the class Agent hasGoal Goal, while the class AgentInPlan hasGoalInPlan Goal. 
+
+AgentInPlan Feels an Emotion.
+For each AgentInPlan there is an Emotion
+e.g. Hamlet_P_H_Revenge feels Emo_Hamlet_P_H_Revenge
+
+The rationale is that in the world of drama all characters have emotions. we assume that all the agent in plan involved in the drama possess some deliberative capacity and some emotional attitude. Not for all the agents in plan we can define the type of emotion they feel. (technically the emotion type is achieved through a SWRL that tests the plan, so in some cases it could be not triggered)
+Conversely, in the world of the enacted action (Timeline) we assume that exist only the emotions appraised for the agent in unit when plans are mapped onto the timeline. That means that in the timeline exist only the emotions that can be described in a plan with an emotion type, therefore mapped onto the units in the timeline.</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#AgentInScene -->
+
+    <owl:Class rdf:about="&drammar;AgentInScene">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Agent"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;featuresAgentInPlan"/>
+                        <owl:onClass rdf:resource="&drammar;AgentInPlan"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isInScene"/>
+                        <owl:onClass rdf:resource="&drammar;Scene"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&drammar;Agent"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#AgentInUnit -->
+
+    <owl:Class rdf:about="&drammar;AgentInUnit">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Agent"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;featuresAgent"/>
+                        <owl:onClass rdf:resource="&drammar;Agent"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isInUnit"/>
+                        <owl:onClass rdf:resource="&drammar;Unit"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>AgentInUnit
+
+Class of the agent within a unit. 
+It is local to a Unit. 
+It is the class in relation performerAgent with the Unit, in case the agent is a direct performer in the ActionInUnit. Formally, this means that they are roles in some ProcessSchema; however, this is not sufficient to be a performer (think of Polonius being he topic of a discussion), so such a property should be annotated explicitly. 
+This is the case of Hamlet and Ophelia in the Unit17 of the Nunnery scene.
+Also an AgentInUnit can be a participantInUnit of a Unit: in this case, the agent is only mentioned for some reason in some action or event of the unit, but it is not performing in the unit. This is the case of Polonius. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Belief -->
+
+    <owl:Class rdf:about="&drammar;Belief">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;PropositionalAttitude"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;isInPlanState"/>
+                        <owl:someValuesFrom rdf:resource="&drammar;PlanState"/>
+                    </owl:Restriction>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&www;BeliefSchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <owl:disjointWith rdf:resource="&drammar;Goal"/>
+        <rdfs:comment>A belief is what an agent knows or believes.
+In Drammar there is no distinction between knowing and believing, because reasoning concerns Agent motivations for acting rather than the relationship between single agent knowledge and shared knowledge. 
+A belief has as scope a PlanState, that is precondition or effect of a Plan. 
+Mapping SWRL project a belief onto some UnitState. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#DescriptionTemplate -->
+
+    <owl:Class rdf:about="&drammar;DescriptionTemplate">
+        <rdfs:comment>This class contains all the patterns that depend on linguistic schemata.
+A pattern is useful to keep the Drammar representation of elements aligned with other shared ontologies and favor interoperability. 
+In Drammar, situation schemata and roles depend on patterns imported from other ontologies. 
+Situation schema provides the pattern for the description of incidents and states;
+Role provides the pattern for the role fillers in a frame instantiation. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Done -->
+
+    <owl:Class rdf:about="&drammar;Done">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;EventiveState"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&www;DoneSchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>Done is a state that focus on the termination of a process, being it a single action or a plan. 
+
+It is a class described by a special schema, of the form:
+DoneSchema --- Done state individual with property action_done restricted to the action individual. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#DramaEndurant -->
+
+    <owl:Class rdf:about="&drammar;DramaEndurant">
+        <rdfs:subClassOf rdf:resource="&drammar;DramaEntity"/>
+        <rdfs:comment>DramaEndurant, aka Entity - Class from DOLCE
+
+Entities of a drama: Agent, Object, Environment.
+They are involved in actions and states.
+The tripartite distinction is derived from the drama literature, where
+- Agents that intentionally perform actions;
+- Scene Objects involved in the actions; 
+- Environments where such actions occur.
+Please, note that entities classified in a way can be used in different ways.
+For example:
+1. If some Environment (e.g., the room in which the nunnery scene occurs) is involved in an action as a role  (e.g., is the thing painted), it remains classified as an environment in Drammar, though it fills a different role in the frame (e.g., of painting). 
+2. If some Agent (e.g. Polonius) is involved in an action without being intentional (e.g. is the topic of a conversation), it remains classified as an Agent in Drammar, though it fills a different role in the frame (e.g., Topic of Conversation). </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#DramaEntity -->
+
+    <owl:Class rdf:about="&drammar;DramaEntity">
+        <rdfs:comment>DramaEntity 
+
+Class of all the dramatic entities, that is of all the entities that are peculiar to drama.
+Its sisters are classes that are not peculiar to drama, but concern templates, external references and abstract data structures from computer science. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#DramaGoal -->
+
+    <owl:Class rdf:about="&drammar;DramaGoal">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Goal"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;inConflictWith"/>
+                        <owl:someValuesFrom rdf:resource="&drammar;Goal"/>
+                    </owl:Restriction>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isAchievedBy"/>
+                        <owl:someValuesFrom>
+                            <owl:Class>
+                                <owl:intersectionOf rdf:parseType="Collection">
+                                    <rdf:Description rdf:about="&drammar;Plan"/>
+                                    <owl:Restriction>
+                                        <owl:onProperty rdf:resource="&www;isInSet"/>
+                                        <owl:someValuesFrom rdf:resource="&drammar;Scene"/>
+                                    </owl:Restriction>
+                                </owl:intersectionOf>
+                            </owl:Class>
+                        </owl:someValuesFrom>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>The DramaGoal is a Goal in conflict with another Goal in a Scene.
+
+This means that the two Plans that achieve the two goals are in the Scene. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#DramaList -->
+
+    <owl:Class rdf:about="&drammar;DramaList">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;DramaStructure"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;containsOLE"/>
+                        <owl:someValuesFrom rdf:resource="&drammar;OrderedListElement"/>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>Sequences in drama: 
+timeline: sequence of units
+plan: sequence of plans or a single action.</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#DramaPerdurant -->
+
+    <owl:Class rdf:about="&drammar;DramaPerdurant">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;DramaEntity"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&drammar;DescriptionTemplate"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>DramaPerdurant, aka Dynamics,- Class from DOLCE
+
+Class of elements of Drama that describe the story evolution, i.e. Processes and States related to a unit. 
+Roughly, this class bridges to the concept of Perdurant in upper ontologies, externally to Drammar. However, in the context of Drammar we do not limit to bridging, but create a drama class because the individuals of this class describe the story advancement in terms of incidents and states holding between incidents (grouped in units). 
+
+Notice that Process and State are not defined classes because there are no clues for doing it in Drammar. Previously, we proposed a definition based on ProcessSchema and StateSchema, but such categories are not split in Framenet, the knowledge source of our schemata. 
+
+</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#DramaSet -->
+
+    <owl:Class rdf:about="&drammar;DramaSet">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;DramaStructure"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;hasSetMember"/>
+                        <owl:someValuesFrom rdf:resource="&owl;Thing"/>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#DramaStructure -->
+
+    <owl:Class rdf:about="&drammar;DramaStructure">
+        <rdfs:subClassOf rdf:resource="&drammar;DramaEntity"/>
+        <rdfs:comment>Class of the structures of the story, i.e. structures composed of several elements: timelines and story states, plans and plan states. 
+
+DramaLists are ordered sequences:
+- Timeline (sequence of Units)
+- Plan (sequence of subplans or a single action)
+
+DramaSets are sets:
+- Unit (set of incidents, actions - ActionInUnit - and events - EventInUnit)
+- StoryState (set of PlanStates)
+- PlanState (set of states)
+- UnitState (set of states)</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#DramaUnit -->
+
+    <owl:Class rdf:about="&drammar;DramaUnit">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Unit"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;unitHasGoal"/>
+                        <owl:someValuesFrom rdf:resource="&drammar;DramaGoal"/>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>DramaUnit
+
+Class of the units that have a dramatic goal.</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Emotion -->
+
+    <owl:Class rdf:about="&drammar;Emotion">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;MentalState"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&www;EmotionSchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isInScene"/>
+                        <owl:onClass rdf:resource="&drammar;Scene"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>Emotion is the class of emotions felt by an agent in a scene.
+The Scene is the scope of emotions: a scene is a set of several plans of several agents.
+The emotions refer to OCC emotion ontology (22 emotions types). 
+Emotion type is an external resource.
+</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExternalRefEmotionType -->
+
+    <owl:Class rdf:about="&drammar;ExternalRefEmotionType">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:oneOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Joy"/>
+                    <rdf:Description rdf:about="&drammar;Fear-confirmed"/>
+                    <rdf:Description rdf:about="&drammar;Shame"/>
+                    <rdf:Description rdf:about="&drammar;Anger"/>
+                    <rdf:Description rdf:about="&drammar;Love"/>
+                    <rdf:Description rdf:about="&drammar;Hate"/>
+                    <rdf:Description rdf:about="&drammar;Satisfaction"/>
+                    <rdf:Description rdf:about="&drammar;Happy-for"/>
+                    <rdf:Description rdf:about="&drammar;Hope"/>
+                    <rdf:Description rdf:about="&drammar;Reproach"/>
+                    <rdf:Description rdf:about="&drammar;Distress"/>
+                    <rdf:Description rdf:about="&drammar;Disappointment"/>
+                    <rdf:Description rdf:about="&drammar;Fear"/>
+                    <rdf:Description rdf:about="&drammar;Resentment"/>
+                    <rdf:Description rdf:about="&drammar;Relief"/>
+                    <rdf:Description rdf:about="&drammar;Pity"/>
+                    <rdf:Description rdf:about="&drammar;Like"/>
+                    <rdf:Description rdf:about="&drammar;Dislike"/>
+                    <rdf:Description rdf:about="&drammar;Gratitude"/>
+                    <rdf:Description rdf:about="&drammar;Pride"/>
+                    <rdf:Description rdf:about="&drammar;Gloating"/>
+                </owl:oneOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&drammar;ExternalReference"/>
+        <rdfs:comment>This class includes individuals for all the emotion types referred by OCC theory.
+The individuals are bridge individuals to some external formal OCC-based knowledge source, which does not exist yet.
+These individuals could also be a bridge to some commonsense ontology, such as YagoSumo for Values, but it would be different from the adoption of the OCC theory, as committed in Drammar. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExternalRefEntity -->
+
+    <owl:Class rdf:about="&drammar;ExternalRefEntity">
+        <rdfs:subClassOf rdf:resource="&drammar;ExternalReference"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExternalRefRole -->
+
+    <owl:Class rdf:about="&drammar;ExternalRefRole">
+        <rdfs:subClassOf rdf:resource="&drammar;ExternalReference"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExternalRefSchema -->
+
+    <owl:Class rdf:about="&drammar;ExternalRefSchema">
+        <rdfs:subClassOf rdf:resource="&drammar;ExternalReference"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExternalReference -->
+
+    <owl:Class rdf:about="&drammar;ExternalReference">
+        <rdfs:comment>This is a class that provides the service of accumulating all the quale datatype properties that refer to external ontologies. 
+
+Its subclasses are useful in grouping, but do not represent specific issues in support. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Goal -->
+
+    <owl:Class rdf:about="&drammar;Goal">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;PropositionalAttitude"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isAchievedBy"/>
+                        <owl:onClass rdf:resource="&drammar;Plan"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&www;GoalSchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isGoalOf"/>
+                        <owl:onClass rdf:resource="&drammar;Agent"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>A Goal is achieved by a single Plan; though in principle several plans can achieve the same Goal, in Drammar a Goal is bound to a single Plan.
+ 
+Goal isGoalOf of an Agent. 
+Goal has a propositional content that is
+- a process in the case of perform goal PG (Hamlet wants to ask Ophelia ...)
+- a state in the case of 
+  - achievement (Hamlet wants Ophelia goes to a nunnery)
+  - maintenance (Hamlet wants Claudius (keeps) believing Hamlet is mad)
+  - query (Hamlet wants to know whether Ophelia is honest)
+
+In these various cases the propositional content is different:
+- Perform Goal - PC: ActionInPlan
+- AG - PC: State, embedded in one Belief, with status false or 
+                  Process, embedded in Belief, with accomplishment false
+- MG - PC: State or Process, embedded in Belief, 
+                  with status/accomplishment true 
+- Query Goal - PC: depends on query; e.g.:
+  - Y/N question: the boolean status of a state (currently implemented as a 
+                            State with status TRUE)
+  - Wh question: the filler of a role in some state or process (currently not     
+                           implemented)
+
+These are guidelines for writing the plans correctly. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#MentalStateSchema -->
+
+    <owl:Class rdf:about="&drammar;MentalStateSchema">
+        <rdfs:subClassOf rdf:resource="&www;StateSchema"/>
+        <rdfs:comment>WARNING: THIS CURRENTLY IS A PLACEHOLDER!
+
+This class collects all the schemata that license the behavior of the Mental states (NIY).
+In particular, they can be:
+1. Beliefs: AGENTINPLAN believes BELIEF hasPropositionalContent exactly 1 FACT (NIY)
+2. Goal: AGENT hasGoal GOAL hasPropositionalContent exactly 1 FACT (NIY)
+3. Emotion: AGENT feels EMOTION feltTowards exactly 1 FACT or AGENT or OBJECT (NIY)
+4. Value: AGENT hasValue VALUEOFAGENT featuresValue VALUE (NIY)
+
+CURRENTLY, ALL THESE SCHEMATA ARE REALIZED DIRECTLY IN THE ONTOLOGY. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_Action -->
+
+    <owl:Class rdf:about="&drammar;OLE_Action">
+        <rdfs:subClassOf rdf:resource="&drammar;OrderedListElement"/>
+        <rdfs:comment>OrderedListElement for Actions ... to be inserted in an OrderedList ... such as, e.g., Plan</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_Plan -->
+
+    <owl:Class rdf:about="&drammar;OLE_Plan">
+        <rdfs:subClassOf rdf:resource="&drammar;OrderedListElement"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_Unit -->
+
+    <owl:Class rdf:about="&drammar;OLE_Unit">
+        <rdfs:subClassOf rdf:resource="&drammar;OrderedListElement"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Object -->
+
+    <owl:Class rdf:about="&drammar;Object">
+        <rdfs:subClassOf rdf:resource="&drammar;DramaEndurant"/>
+        <rdfs:comment>Object
+
+Class of entities (endurant) that participates into Perdurants, but without intentions.
+This class is disjoint from Agents (Disjoint property).</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ObjectInPlan -->
+
+    <owl:Class rdf:about="&drammar;ObjectInPlan">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Object"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;featuresObject"/>
+                        <owl:onClass rdf:resource="&drammar;Object"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isInPlan"/>
+                        <owl:onClass rdf:resource="&drammar;Plan"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ObjectInUnit -->
+
+    <owl:Class rdf:about="&drammar;ObjectInUnit">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Object"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isInUnit"/>
+                        <owl:onClass rdf:resource="&drammar;Unit"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OrderedListElement -->
+
+    <owl:Class rdf:about="&drammar;OrderedListElement">
+        <rdfs:comment>Class of the elements of the ordered lists, such as timeline, augmented timeline, plan. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Plan -->
+
+    <owl:Class rdf:about="&drammar;Plan">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;DramaList"/>
+                    <owl:Class>
+                        <owl:unionOf rdf:parseType="Collection">
+                            <owl:Restriction>
+                                <owl:onProperty rdf:resource="&drammar;containsOLEPlan"/>
+                                <owl:someValuesFrom rdf:resource="&drammar;OLE_Plan"/>
+                            </owl:Restriction>
+                            <owl:Restriction>
+                                <owl:onProperty rdf:resource="&drammar;containsOLEAction"/>
+                                <owl:onClass rdf:resource="&drammar;OLE_Action"/>
+                                <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                            </owl:Restriction>
+                        </owl:unionOf>
+                    </owl:Class>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>Plan
+
+Plan is an OrderedList intended by an Agent to achieve some Goal. 
+Plan OLE&apos;s can be ActionInPlan or States. Plans are assumed to be instantiated plans, and so are directly mapped onto incidents through the equality relation. 
+Contains sequence of actions, states and plans (recursively). 
+Plans can be Base or Recursive; this type is set through a datatype property.
+Example of a Base plan:
+P_H_007: Bel ActionInPlan Bel
+Example of a Recursive plan
+P_H_01_1: Bel P_H_007 P_O_008_1 Bel</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PlanState -->
+
+    <owl:Class rdf:about="&drammar;PlanState">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;DramaSet"/>
+                    <owl:Class>
+                        <owl:unionOf rdf:parseType="Collection">
+                            <owl:Restriction>
+                                <owl:onProperty rdf:resource="&www;isPlanEffectOf"/>
+                                <owl:onClass rdf:resource="&drammar;Plan"/>
+                                <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                            </owl:Restriction>
+                            <owl:Restriction>
+                                <owl:onProperty rdf:resource="&www;isPlanPreconditionOf"/>
+                                <owl:onClass rdf:resource="&drammar;Plan"/>
+                                <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                            </owl:Restriction>
+                        </owl:unionOf>
+                    </owl:Class>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;hasSetMember"/>
+                        <owl:someValuesFrom rdf:resource="&drammar;State"/>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&drammar;DramaSet"/>
+        <rdfs:comment>PlanState
+
+Set of the states that are preconditions or effects (object properties) of a plan, respectively.</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Process -->
+
+    <owl:Class rdf:about="&drammar;Process">
+        <rdfs:subClassOf rdf:resource="&drammar;DramaPerdurant"/>
+        <owl:disjointWith rdf:resource="&drammar;State"/>
+        <rdfs:comment>Process represents the DYNAMIC class of the Perdurant. 
+Its subclasses will be obtained by the dichotomy FACTUAL / EVENTIVE.
+This dichotomy stems from the philosophical distinction between 
+  EVENTS, that occur &quot;hic et nunc&quot;, so bound to some spatio-temporal structure;
+  FACTS, that are abstraction of EVENTS. 
+In Drammar, these abstract processes and states, called FactualProcess and FactualState, have the following behavior:
+  - ARE propositional content of mental states or fillers of roles
+  - ARE NOT in pre-conditions or effects in plan-states or in unit-states
+  - ARE NOT in unit or in plans
+
+Process IS A BRIDGE CLASS:
+Process is the class that bridges to the concept of Process in upper ontologies, externally to Drammar. 
+Consider that such resources are not of linguistic type. The ProcessSchema, in fact, drives the behavior of the process inside a plan or a unit, and consists of 
+1. Wordnet sense
+2. Frame from Framenet or Verbnet
+3. Roles played by participants in such frame
+
+Process, on the contrary, connects the Process in Drammar to external ontologies concerning the concept itself.
+For example, constraints on the process. In the action of asking, it is assumed that Speaker and Addressee are connected through some communication medium, e.g. co-presence in a room, at the telephone ... . 
+</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ProcessSchema -->
+
+    <owl:Class rdf:about="&drammar;ProcessSchema">
+        <rdfs:subClassOf rdf:resource="&drammar;SituationSchema"/>
+        <rdfs:comment>The linguistic schema for Process.</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Role -->
+
+    <owl:Class rdf:about="&drammar;Role">
+        <rdfs:subClassOf rdf:resource="&drammar;DescriptionTemplate"/>
+        <rdfs:comment>Role provides the pattern for the role fillers in a frame instantiation, that occurs in SituationSchema, for processes and states.</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SOASchema -->
+
+    <owl:Class rdf:about="&drammar;SOASchema">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;StateSchema"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;quale_schemaType"/>
+                        <owl:hasValue>framenet</owl:hasValue>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&www;StateSchema"/>
+        <rdfs:comment>The linguistic schema for State.
+It is guided from the Framenet frame. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Scene -->
+
+    <owl:Class rdf:about="&drammar;Scene">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;DramaSet"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;hasSetMember"/>
+                        <owl:someValuesFrom rdf:resource="&drammar;Plan"/>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&drammar;DramaSet"/>
+        <rdfs:comment>Scene is a super plan structure that provides a scope for drama facts that result from the combination of several plans.
+Motivated originally by the appraisal of emotions that result from the application of multiple plans over the same situation, it can be useful in other occasions. Stay tuned!!!
+
+E.g. Emotion Reproach SWRL 
+IF
+- there exist two agents Xp and Yp (AgentInPlan), 
+   each intending a plan (Px and Py respectively), 
+   which respectively include in the effect states the same value, 
+   NOT balanced by X because Px FAILS (Accomplished FALSE)
+   and PUT at-stake by Y through its plan Py, 
+and
+- there exists a scene,  
+  that features the same two agents (AgentInScene) Xs and Ys,
+  Xs featuring Xp and Ys featuring Yp, 
+  and the agent Xs feels an unset emotion,
+  and the scene has as member the SEPlans SEPx and SEPy,
+  and SEPx hasData Px and SEPy hasData Py
+
+then: 
+- the AgentInScene Xs feels REPROACH towards the AgentInScene Ys
+</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SituationSchema -->
+
+    <owl:Class rdf:about="&drammar;SituationSchema">
+        <rdfs:subClassOf rdf:resource="&drammar;DescriptionTemplate"/>
+        <rdfs:comment>Situation schema provides the pattern for the description of incidents and states. It derives from the Event pattern in DOLCE (for Process schemata and SOA schemata) and from some specific patterns for Mental States and Done states. 
+
+The schema works as a hub for the roles involved and the schema pattern itself.
+
+The informationabout the schema is recorded in the datatype properties.
+In particular, we annotated:
+- the frame ID in Framenet
+- the role ID, for each frame element, in Framenet. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#State -->
+
+    <owl:Class rdf:about="&drammar;State">
+        <rdfs:subClassOf rdf:resource="&drammar;DramaPerdurant"/>
+        <rdfs:comment>State represents the STATIC class of the Perdurant. 
+Its subclasses will be obtained by the dichotomy FACTUAL / EVENTIVE.
+
+State IS A BRIDGE CLASS:
+State is the class that bridges to the concept of State in upper ontologies, externally to Drammar. 
+
+
+A State has the data property of State_status, which is a boolean (true/false) representing the fact that the state really holds or not. 
+</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#StateOfAffairsInPlanState -->
+
+    <owl:Class rdf:about="&drammar;StateOfAffairsInPlanState">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;StateOfAffairs"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;isInPlanState"/>
+                        <owl:onClass rdf:resource="&drammar;PlanState"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#StateOfAffairsInUnitState -->
+
+    <owl:Class rdf:about="&drammar;StateOfAffairsInUnitState">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;StateOfAffairs"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;isInUnitState"/>
+                        <owl:onClass rdf:resource="&drammar;UnitState"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&www;StateOfAffairs"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Timeline -->
+
+    <owl:Class rdf:about="&drammar;Timeline">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;DramaList"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;containsOLEUnit"/>
+                        <owl:someValuesFrom rdf:resource="&drammar;OLE_Unit"/>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>Timeline
+
+This is the class that represent the story incidents grouped in units. It is a subclass of OrderedList. 
+OrderedList is a well known pattern with a published ontology; OrderedListElement OLE are envelopes for units. All the OLE of a Timeline are in precedes/follows relation. 
+</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#UnintentionalIncidentInUnit -->
+
+    <owl:Class rdf:about="&drammar;UnintentionalIncidentInUnit">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;UnintentionalEventiveProcess"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isInUnit"/>
+                        <owl:onClass rdf:resource="&drammar;Unit"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&www;UnintentionalEventiveProcess"/>
+        <rdfs:comment>Specialization of UnintentionalEventiveProcess for unintentional Incidents in a Unit.
+For example: a man that falls asleep. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Unit -->
+
+    <owl:Class rdf:about="&drammar;Unit">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;DramaSet"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;hasSetMember"/>
+                        <owl:someValuesFrom rdf:resource="&drammar;ActionInUnit"/>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&drammar;DramaSet"/>
+        <rdfs:comment>Unit
+
+Class of the segments in which a story is subdivided, as defined by theoreticians.
+Units are the elements of the Timeline.</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#UnitState -->
+
+    <owl:Class rdf:about="&drammar;UnitState">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;DramaSet"/>
+                    <owl:Class>
+                        <owl:unionOf rdf:parseType="Collection">
+                            <owl:Restriction>
+                                <owl:onProperty rdf:resource="&www;isUnitEffectOf"/>
+                                <owl:onClass rdf:resource="&drammar;Unit"/>
+                                <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                            </owl:Restriction>
+                            <owl:Restriction>
+                                <owl:onProperty rdf:resource="&www;isUnitPreconditionOf"/>
+                                <owl:onClass rdf:resource="&drammar;Unit"/>
+                                <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                            </owl:Restriction>
+                        </owl:unionOf>
+                    </owl:Class>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;hasSetMember"/>
+                        <owl:someValuesFrom rdf:resource="&drammar;State"/>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:subClassOf rdf:resource="&drammar;DramaSet"/>
+        <rdfs:comment>UnitState
+
+UniState is the class of set of states that hold immediately before or after a Unit. 
+EventiveState within a UnitState are mapped from PlanStates, once the EventiveProcessInPlan have been mapped to EventiveProcessInUnit. 
+A UnitState results from the accumulation of all the PlanState associated to the plans that span some Unit. </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Value -->
+
+    <owl:Class rdf:about="&drammar;Value">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&www;MentalState"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isDescribedBy"/>
+                        <owl:onClass rdf:resource="&www;ValueSchema"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&drammar;isValueOf"/>
+                        <owl:onClass rdf:resource="&drammar;Agent"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+        <rdfs:comment>VALUE 
+Value is the class of the values that are relevant for some agent in the story. 
+If there is an individual of the Class Value, then the state &apos;such individual is a Value of this Agent&apos; holds.
+e.g. the individual Ophelia_Honesty of the class Value connected to the property HasValue to the Agent Ophelia, means that Honesty is a Value of Ophelia. 
+The rationale behind this is that for modern and contemporary drama values are of an individual, not universal. So, honesty for Hamlet is different from the honesty value for Ophelia, although they share the same External Reference individual. 
+
+VALUE OF AGENT AT STAKE
+The Value can be balanced or AtStake. 
+In Drammar, the subclass ValueOfAgentAtStake represents both balanced and at stake values, with the data property atStake that can be true (Value at stake) or false (Value balanced). 
+The rationale for having the subclass is that the same value of agent can be both at stake and balanced in the same drama.
+</rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ValueAtStake -->
+
+    <owl:Class rdf:about="&drammar;ValueAtStake">
+        <owl:equivalentClass>
+            <owl:Class>
+                <owl:intersectionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="&drammar;Value"/>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;isInPlanState"/>
+                        <owl:onClass rdf:resource="&drammar;PlanState"/>
+                        <owl:qualifiedCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:qualifiedCardinality>
+                    </owl:Restriction>
+                    <owl:Restriction>
+                        <owl:onProperty rdf:resource="&www;atStake"/>
+                        <owl:someValuesFrom rdf:resource="&xsd;boolean"/>
+                    </owl:Restriction>
+                </owl:intersectionOf>
+            </owl:Class>
+        </owl:equivalentClass>
+    </owl:Class>
+    
+
+
+    <!-- http://www.w3.org/2002/07/owl#Thing -->
+
+    <owl:Class rdf:about="&owl;Thing">
+        <rdfs:comment>Thing collects both general classes (DescriptionTemplate and StructureElement) and specific classes (all under DramaEntity). </rdfs:comment>
+    </owl:Class>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Individuals
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#A_recommend_01_in_P_H_AdvisingOpheliaNunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;A_recommend_01_in_P_H_AdvisingOpheliaNunnery">
+        <rdf:type rdf:resource="&drammar;ActionInPlan"/>
+        <drammar:hasMessage rdf:datatype="&xsd;string">Get thee to a nunnery why wouldst thou be a breeder of sinners? I am myself indifferent honest; but yet I could accuse me of such things that it were better my mother had not borne me  I am very proud, revengeful, ambitious; with more offences at my beck than I have thoughts to put them in, imagination to give them shape, or time to act them in. What should such fellows as I do crawling between earth and heaven? We are arrant knaves, all; believe none of us. Go thy ways to a nunnery.</drammar:hasMessage>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet recommend Ophelia to go to the nunnery</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&www;PS_Attempt_suasion_01"/>
+        <drammar:isInPlan rdf:resource="&www;P_H_AdvisingOpheliaNunnery"/>
+        <drammar:featuresProcess rdf:resource="&www;Process_Recommend"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Admiration -->
+
+    <owl:NamedIndividual rdf:about="&www;Admiration">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0009_H -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0009_H">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <drammar:propositionalContent rdf:resource="&drammar;SFCTL_sta_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0011_O -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0011_O">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <drammar:propositionalContent rdf:resource="&drammar;SFCTL_sta_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0012_H -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0012_H">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <rdfs:comment>This schema establishes, through its datatype property
+   freeDescription
+that
+The property that connects an Agent with a Belief state is
+  knows.
+So, it practically works as a guideline. </rdfs:comment>
+        <drammar:propositionalContent rdf:resource="&drammar;SFCTL_sta_04"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0013_O -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0013_O">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <drammar:propositionalContent rdf:resource="&www;F_B_H_Polonius_Home"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0016_H -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0016_H">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <drammar:propositionalContent rdf:resource="&www;F_B_0011_Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0017_H -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0017_H">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <drammar:propositionalContent rdf:resource="&www;SFCTL_honest_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0020_H -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0020_H">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <drammar:propositionalContent rdf:resource="&drammar;PFCTL_kil_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0021_H -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0021_H">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <drammar:propositionalContent rdf:resource="&drammar;PFCTL_kil_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0030_H -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0030_H">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <drammar:propositionalContent rdf:resource="&drammar;SFCTL_rev_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0031_H -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0031_H">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <drammar:propositionalContent rdf:resource="&drammar;SFCTL_rev_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0040_H -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0040_H">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <drammar:propositionalContent rdf:resource="&drammar;SFCTL_dea_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0041_H -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0041_H">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <drammar:propositionalContent rdf:resource="&drammar;SFCTL_dea_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0050_H -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0050_H">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <drammar:propositionalContent rdf:resource="&www;SFCTL_ElsinorCorrupted"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#BS_0060_H -->
+
+    <owl:NamedIndividual rdf:about="&www;BS_0060_H">
+        <rdf:type rdf:resource="&www;BeliefSchema"/>
+        <drammar:propositionalContent rdf:resource="&www;PFCT_Go_to_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#B_H_Elsinor_Corrupted -->
+
+    <owl:NamedIndividual rdf:about="&www;B_H_Elsinor_Corrupted">
+        <rdf:type rdf:resource="&drammar;Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet believes the court of Elsinor is corrupted. </drammar:freeDescription>
+        <rdfs:comment>Hamlet believes the court of Elsinor is corrupted.</rdfs:comment>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0050_H"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#B_H_Opfelia_go_to_Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;B_H_Opfelia_go_to_Nunnery">
+        <rdf:type rdf:resource="&drammar;Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet believes Ophelia go to a nunnery.</drammar:freeDescription>
+        <rdfs:comment>Hamlet believes Ophelia go to a nunnery.</rdfs:comment>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0060_H"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#DS_A_ask_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;DS_A_ask_01">
+        <rdf:type rdf:resource="&www;DoneSchema"/>
+        <drammar:isDoneStateOf rdf:resource="&drammar;A_ask_01_in_P_H_AskR_Asking"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#DS_A_rec_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;DS_A_rec_01">
+        <rdf:type rdf:resource="&www;DoneSchema"/>
+        <drammar:isDoneStateOf rdf:resource="&www;A_recommend_01_in_P_H_AdvisingOpheliaNunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#DS_P_O_Truth -->
+
+    <owl:NamedIndividual rdf:about="&www;DS_P_O_Truth">
+        <rdf:type rdf:resource="&www;DoneSchema"/>
+        <drammar:isDoneStateOf rdf:resource="&drammar;P_O_Truth"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Done_A_recommend_01_in_P_H_AdvisingOpheliaNunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;Done_A_recommend_01_in_P_H_AdvisingOpheliaNunnery">
+        <rdf:type rdf:resource="&www;DoneInPlanState"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">The termination of Hamlet advising Ophelia to go to the Nunnery. </drammar:freeDescription>
+        <drammar:State_status rdf:datatype="&xsd;boolean">true</drammar:State_status>
+        <drammar:isDescribedBy rdf:resource="&www;DS_A_rec_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_adm_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_adm_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&www;Admiration"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_adm_P_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_adm_P_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&www;Admiration"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_ang_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_ang_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Anger"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_ang_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_ang_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_dis_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_dis_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Distress"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_dis_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_dis_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Distress"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_disap_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_disap_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Disappointment"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_disap_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_disap_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Disappointment"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_fearC_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_fearC_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Fear-confirmed"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_fearC_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_fearC_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Fear-confirmed"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_fear_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_fear_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Fear"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_fear_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_fear_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Fear"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_gloat_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_gloat_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Gloating"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_gloat_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_gloat_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Gloating"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_gra_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_gra_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Gratitude"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_gra_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_gra_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Gratitude"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_gratif_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_gratif_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&www;Gratification"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_gratif_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_gratif_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&www;Gratification"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_happyfor_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_happyfor_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Happy-for"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_happyfor_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_happyfor_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Happy-for"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_hate_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_hate_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Hate"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_hate_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_hate_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Hate"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_hope_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_hope_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Hope"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_hope_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_hope_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Hope"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_joy_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_joy_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Joy"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_joy_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_joy_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Joy"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_love_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_love_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Love"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_love_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_love_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Love"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_pity_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_pity_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Pity"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_pity_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_pity_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Pity"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_pri_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_pri_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Pride"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_pri_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_pri_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Pride"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_relief_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_relief_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Relief"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_relief_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_relief_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Relief"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_rem_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_rem_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&www;Remorse"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_rem_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_rem_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&www;Remorse"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_rep_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_rep_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Reproach"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_rep_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_rep_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Reproach"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_resent_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_resent_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Resentment"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_resent_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_resent_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Resentment"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_satisf_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_satisf_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Satisfaction"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_satisf_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_satisf_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Satisfaction"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_sha_H_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_sha_H_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Shame"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ES_sha_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;ES_sha_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Shame"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Elsinor_in_P_H_AdvisingOpheliaNunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;Elsinor_in_P_H_AdvisingOpheliaNunnery">
+        <rdf:type rdf:resource="&drammar;ObjectInPlan"/>
+        <drammar:isInPlan rdf:resource="&www;P_H_AdvisingOpheliaNunnery"/>
+        <drammar:featuresObject rdf:resource="&drammar;Elsinor"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoAdmiration_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoAdmiration_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaAdmiration"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoAdmiration_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoAdmiration_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaAdmiration"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoAnger_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoAnger_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaAnger"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoAnger_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoAnger_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaAnger"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoDisappointment_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoDisappointment_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaDisappointment"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoDisappointment_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoDisappointment_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaDisappointment"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoDistress_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoDistress_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaDistress"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoDistress_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoDistress_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaDistress"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoFearConfirmed_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoFearConfirmed_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaFearConfirmed"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoFearConfirmed_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoFearConfirmed_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaFearConfirmed"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoFear_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoFear_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaFear"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoFear_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoFear_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaFear"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoGloating_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoGloating_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaGloating"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoGloating_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoGloating_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaGloating"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoGratification_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoGratification_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaGratification"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoGratification_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoGratification_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaGratification"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoGratitude_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoGratitude_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaGratitude"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoGratitude_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoGratitude_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaGratitude"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoHappyFor_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoHappyFor_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchema-HappyFor"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoHappyFor_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoHappyFor_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchema-HappyFor"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoHate_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoHate_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaHate"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoHate_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoHate_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaHate"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoHope_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoHope_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaHope"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoHope_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoHope_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaHope"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoJoy_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoJoy_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaJoy"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoJoy_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoJoy_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaJoy"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoLove_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoLove_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaLove"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoLove_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoLove_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaLove"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoPity_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoPity_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaPity"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoPity_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoPity_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaPity"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoPride_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoPride_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaPride"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoPride_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoPride_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaPride"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoRelief_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoRelief_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaRelief"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoRelief_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoRelief_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaRelief"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoRemorse_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoRemorse_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaRemorse"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoRemorse_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoRemorse_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaRemorse"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoReproach_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoReproach_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaReproach"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoReproach_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoReproach_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaReproach"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoResentment_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoResentment_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaResentment"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoResentment_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoResentment_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaResentment"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoSatisfaction_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoSatisfaction_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaSatisfaction"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoSatisfaction_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoSatisfaction_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaSatisfaction"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoShame_Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoShame_Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaShame"/>
+        <isEmotionOf rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmoShame_Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;EmoShame_Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Emotion"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaShame"/>
+        <isEmotionOf rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchema-HappyFor -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchema-HappyFor">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Happy-for"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaAdmiration -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaAdmiration">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&www;Admiration"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaAnger -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaAnger">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Anger"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaDisappointment -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaDisappointment">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Disappointment"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaDistress -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaDistress">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Distress"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaFear -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaFear">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Fear"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaFearConfirmed -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaFearConfirmed">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Fear-confirmed"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaGloating -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaGloating">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Gloating"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaGratification -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaGratification">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&www;Gratification"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaGratitude -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaGratitude">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Gratitude"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaHate -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaHate">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Hate"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaHope -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaHope">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Hope"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaJoy -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaJoy">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Joy"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaLove -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaLove">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Love"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaPity -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaPity">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Pity"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaPride -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaPride">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Pride"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaRelief -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaRelief">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Relief"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaRemorse -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaRemorse">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&www;Remorse"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaReproach -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaReproach">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Reproach"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaResentment -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaResentment">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Resentment"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaSatisfaction -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaSatisfaction">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Satisfaction"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#EmotionSchemaShame -->
+
+    <owl:NamedIndividual rdf:about="&www;EmotionSchemaShame">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&drammar;Shame"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Es_adm_O_SWQ -->
+
+    <owl:NamedIndividual rdf:about="&www;Es_adm_O_SWQ">
+        <rdf:type rdf:resource="&www;EmotionSchema"/>
+        <drammar:hasEmotionType rdf:resource="&www;Admiration"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_Corrupt_MoralityEvaluation -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_Corrupt_MoralityEvaluation">
+        <rdf:type rdf:resource="&drammar;ExternalRefSchema"/>
+        <drammar:quale_frame_URI rdf:datatype="&xsd;anyURI">370</drammar:quale_frame_URI>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Morality_evaluation</drammar:quale_frame_name>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">a#00585544</drammar:quale_WordNetSense>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=a_00585544</drammar:quale>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_FRole_Addressee_Attempt_suasion -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_FRole_Addressee_Attempt_suasion">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">409</drammar:Role_framenetRoleID>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Attempt_suasion</drammar:quale_frame_name>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_FRole_Content_Attempt_suasion -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_FRole_Content_Attempt_suasion">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">408</drammar:Role_framenetRoleID>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Action</drammar:Role_fillerDrammarType>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Attempt_suasion</drammar:quale_frame_name>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_FRole_Evaluee_Morality_evaluation -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_FRole_Evaluee_Morality_evaluation">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">3351</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Morality_evaluation</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_FRole_Goal_Motion -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_FRole_Goal_Motion">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string"> 29</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Motion</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_FRole_Judge_Morality_evaluation -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_FRole_Judge_Morality_evaluation">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">6392</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Morality_evaluation</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_FRole_Medium_Attempt_suasion -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_FRole_Medium_Attempt_suasion">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">664</drammar:Role_framenetRoleID>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Attempt_suasion</drammar:quale_frame_name>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Object</drammar:Role_fillerDrammarType>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_FRole_Speaker_Attempt_suasion -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_FRole_Speaker_Attempt_suasion">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">410</drammar:Role_framenetRoleID>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Attempt_suasion</drammar:quale_frame_name>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_FRole_Theme_Motion -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_FRole_Theme_Motion">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">26</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Motion</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_Go_to_Motion -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_Go_to_Motion">
+        <rdf:type rdf:resource="&drammar;ExternalRefSchema"/>
+        <drammar:quale_frame_URI rdf:datatype="&xsd;anyURI">7</drammar:quale_frame_URI>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Motion</drammar:quale_frame_name>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">andare</drammar:quale_originalTerm>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=v_01253107</drammar:quale>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">v#01253107</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_Honest -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_Honest">
+        <rdf:type rdf:resource="&drammar;ExternalRefSchema"/>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">a#01171323</drammar:quale_WordNetSense>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=a_01171323</drammar:quale>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">onesto</drammar:quale_originalTerm>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_Induce_Attempt_suasion -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_Induce_Attempt_suasion">
+        <rdf:type rdf:resource="&drammar;ExternalRefSchema"/>
+        <drammar:quale_frame_URI rdf:datatype="&xsd;anyURI">87</drammar:quale_frame_URI>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Attempt_suasion</drammar:quale_frame_name>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">consigliare</drammar:quale_originalTerm>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=v_00592685</drammar:quale>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">v#00592685</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_Nunnery">
+        <rdf:type rdf:resource="&drammar;ExternalRefEntity"/>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">Convento</drammar:quale_originalTerm>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=n_02494445</drammar:quale>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">n#02494445</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#ExtRef_VRole_Undergoer_Honest -->
+
+    <owl:NamedIndividual rdf:about="&www;ExtRef_VRole_Undergoer_Honest">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_verbnetRoleType rdf:datatype="&xsd;string">Undergoer</drammar:Role_verbnetRoleType>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Verbnet</drammar:Role_ID_resource>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#F_B_0011_Ophelia -->
+
+    <owl:NamedIndividual rdf:about="&www;F_B_0011_Ophelia">
+        <rdf:type rdf:resource="&www;F_Belief"/>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0011_O"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#F_B_0017_Hamlet -->
+
+    <owl:NamedIndividual rdf:about="&www;F_B_0017_Hamlet">
+        <rdf:type rdf:resource="&www;F_Belief"/>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0017_H"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#F_B_H_Polonius_Home -->
+
+    <owl:NamedIndividual rdf:about="&www;F_B_H_Polonius_Home">
+        <rdf:type rdf:resource="&www;F_Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet believes Polonius is at home. </drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0012_H"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#GS_C_Reign -->
+
+    <owl:NamedIndividual rdf:about="&www;GS_C_Reign">
+        <rdf:type rdf:resource="&www;GoalSchema"/>
+        <drammar:propositionalContent rdf:resource="&www;SFCTL_rei_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#GS_H_Advising_O_Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;GS_H_Advising_O_Nunnery">
+        <rdf:type rdf:resource="&www;GoalSchema"/>
+        <drammar:propositionalContent rdf:resource="&www;PFCT_recommend_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#GS_H_AskingRethorically -->
+
+    <owl:NamedIndividual rdf:about="&www;GS_H_AskingRethorically">
+        <rdf:type rdf:resource="&www;GoalSchema"/>
+        <drammar:propositionalContent rdf:resource="&www;PFCTL_ask_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#GS_H_Discover -->
+
+    <owl:NamedIndividual rdf:about="&www;GS_H_Discover">
+        <rdf:type rdf:resource="&www;GoalSchema"/>
+        <drammar:propositionalContent rdf:resource="&www;PFCTL_awa_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#GS_H_Kill_C -->
+
+    <owl:NamedIndividual rdf:about="&www;GS_H_Kill_C">
+        <rdf:type rdf:resource="&www;GoalSchema"/>
+        <drammar:propositionalContent rdf:resource="&www;PFCTL_kil_09"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#GS_H_LearningHonesty -->
+
+    <owl:NamedIndividual rdf:about="&www;GS_H_LearningHonesty">
+        <rdf:type rdf:resource="&www;GoalSchema"/>
+        <drammar:propositionalContent rdf:resource="&www;F_B_0017_Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#GS_H_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&www;GS_H_Revenge">
+        <rdf:type rdf:resource="&www;GoalSchema"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#GS_O_Lying -->
+
+    <owl:NamedIndividual rdf:about="&www;GS_O_Lying">
+        <rdf:type rdf:resource="&www;GoalSchema"/>
+        <drammar:propositionalContent rdf:resource="&www;PFCTL_men_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Goal_Hamlet_Advising_O_Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;Goal_Hamlet_Advising_O_Nunnery">
+        <rdf:type rdf:resource="&drammar;Goal"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet wants that Ophelia goes to the Nunnery</drammar:freeDescription>
+        <drammar:Goal_type rdf:datatype="&xsd;string">Perform</drammar:Goal_type>
+        <drammar:Goal_achievement rdf:datatype="&xsd;boolean">true</drammar:Goal_achievement>
+        <drammar:isDescribedBy rdf:resource="&www;GS_H_Advising_O_Nunnery"/>
+        <drammar:isAchievedBy rdf:resource="&www;P_H_AdvisingOpheliaNunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Goal_Hamlet_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&www;Goal_Hamlet_Revenge">
+        <rdf:type rdf:resource="&drammar;Goal"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet achieves his revenge for his father&apos;s assassination.</rdfs:label>
+        <drammar:Goal_type rdf:datatype="&xsd;string">Achievement</drammar:Goal_type>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet wants to avenge his father&apos;s death. </drammar:freeDescription>
+        <rdfs:comment rdf:datatype="&xsd;string">Perform Goal of the whole drama. </rdfs:comment>
+        <drammar:Goal_achievement rdf:datatype="&xsd;boolean">true</drammar:Goal_achievement>
+        <drammar:isDescribedBy rdf:resource="&www;GS_H_Revenge"/>
+        <drammar:isAchievedBy rdf:resource="&drammar;P_H_Revenge"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Goal_Hamlet_Unmask -->
+
+    <owl:NamedIndividual rdf:about="&www;Goal_Hamlet_Unmask">
+        <rdf:type rdf:resource="&drammar;Goal"/>
+        <drammar:Goal_type rdf:datatype="&xsd;string">Achievement</drammar:Goal_type>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet wants to unmask Claudius. </drammar:freeDescription>
+        <drammar:Goal_achievement rdf:datatype="&xsd;boolean">true</drammar:Goal_achievement>
+        <drammar:isAchievedBy rdf:resource="&drammar;P_H_Unmask"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Goal_Ophelia_TellTruth -->
+
+    <owl:NamedIndividual rdf:about="&www;Goal_Ophelia_TellTruth">
+        <rdf:type rdf:resource="&drammar;Goal"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Ophelia wants to tell Hamlet the truth.</drammar:freeDescription>
+        <drammar:Goal_type rdf:datatype="&xsd;string">Perform</drammar:Goal_type>
+        <drammar:Goal_achievement rdf:datatype="&xsd;boolean">false</drammar:Goal_achievement>
+        <rdfs:comment>This goal has no schema because it is underspecified. </rdfs:comment>
+        <drammar:isAchievedBy rdf:resource="&drammar;P_O_Truth"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Gratification -->
+
+    <owl:NamedIndividual rdf:about="&www;Gratification">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Hamlet_13-16 -->
+
+    <owl:NamedIndividual rdf:about="&www;Hamlet_13-16">
+        <rdf:type rdf:resource="&drammar;AgentInUnit"/>
+        <drammar:isInUnit rdf:resource="&www;Unit13-16_GoNunnery"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Hamlet_Honesty_AtStake -->
+
+    <owl:NamedIndividual rdf:about="&www;Hamlet_Honesty_AtStake">
+        <rdf:type rdf:resource="&drammar;ValueAtStake"/>
+        <atStake rdf:datatype="&xsd;boolean">true</atStake>
+        <featuresValue rdf:resource="&drammar;Hamlet_Honesty"/>
+        <isInPlanState rdf:resource="&drammar;PState_Eff_P_O_Lie"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Hamlet_P_H_AdvisingOpheliaNunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;Hamlet_P_H_AdvisingOpheliaNunnery">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:isInPlan rdf:resource="&www;P_H_AdvisingOpheliaNunnery"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#I_Recommend -->
+
+    <owl:NamedIndividual rdf:about="&www;I_Recommend">
+        <rdf:type rdf:resource="&drammar;ActionInUnit"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet recommending Ophelia to go to a nunnery. </drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&www;PS_Attempt_suasion_01"/>
+        <drammar:featuresProcess rdf:resource="&www;Process_Recommend"/>
+        <drammar:isInUnit rdf:resource="&www;Unit13-16_GoNunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Message_Hamlet_P_H_AdvisingOpheliaNunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;Message_Hamlet_P_H_AdvisingOpheliaNunnery">
+        <rdf:type rdf:resource="&drammar;ObjectInPlan"/>
+        <drammar:hasMessage rdf:datatype="&xsd;string">Get thee to a nunnery why wouldst thou be a breeder of sinners? I am myself indifferent honest; but yet I could accuse me of such things that it were better my mother had not borne me I am very proud, revengeful, ambitious; with more offences at my beck than I have thoughts to put them in, imagination to give them shape, or time to act them in. What should such fellows as I do crawling between earth and heaven? We are arrant knaves, all; believe none of us. Go thy ways to a nunnery.</drammar:hasMessage>
+        <drammar:isInPlan rdf:resource="&www;P_H_AdvisingOpheliaNunnery"/>
+        <drammar:featuresObject rdf:resource="&drammar;Message_Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;Nunnery">
+        <rdf:type rdf:resource="&drammar;Object"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">The nunnery where Hamlet advice Ophelia to go to</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_Nunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#OLE_A_recommend_01_in_P_H_AdvisingOpheliaNunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;OLE_A_recommend_01_in_P_H_AdvisingOpheliaNunnery">
+        <rdf:type rdf:resource="&drammar;OLE_Action"/>
+        <drammar:hasData_Action rdf:resource="&www;A_recommend_01_in_P_H_AdvisingOpheliaNunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#OLE_P_H_AdvisingOpheliaNunnery_in_P_H_Send_O_Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;OLE_P_H_AdvisingOpheliaNunnery_in_P_H_Send_O_Nunnery">
+        <rdf:type rdf:resource="&drammar;OLE_Plan"/>
+        <drammar:hasData_Plan rdf:resource="&www;P_H_AdvisingOpheliaNunnery"/>
+        <drammar:precedes rdf:resource="&drammar;OLE_P_H_LearningHonesty_in_P_H_Send_O_Nunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#OLE_Unit_13-16 -->
+
+    <owl:NamedIndividual rdf:about="&www;OLE_Unit_13-16">
+        <rdf:type rdf:resource="&drammar;OLE_Unit"/>
+        <drammar:hasData_Unit rdf:resource="&www;Unit13-16_GoNunnery"/>
+        <drammar:precedes rdf:resource="&drammar;OLE_Unit_17"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Ophelia_13-16 -->
+
+    <owl:NamedIndividual rdf:about="&www;Ophelia_13-16">
+        <rdf:type rdf:resource="&drammar;AgentInUnit"/>
+        <drammar:isInUnit rdf:resource="&www;Unit13-16_GoNunnery"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Ophelia_P_H_AdvisingOpheliaNunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;Ophelia_P_H_AdvisingOpheliaNunnery">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:isInPlan rdf:resource="&www;P_H_AdvisingOpheliaNunnery"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#PFCTL_ask_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;PFCTL_ask_01">
+        <rdf:type rdf:resource="&www;FactualProcess"/>
+        <drammar:hasMessage rdf:datatype="&xsd;string">Where is your father?</drammar:hasMessage>
+        <Process_status rdf:datatype="&xsd;boolean">true</Process_status>
+        <drammar:freeDescription>Hamlet asks to Ophelia &apos;Where is your Father?&apos;</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&drammar;PS_questioning_01"/>
+        <drammar:featuresProcess rdf:resource="&drammar;Process_Asking"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#PFCTL_awa_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;PFCTL_awa_01">
+        <rdf:type rdf:resource="&www;FactualProcess"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet discovers that Claudius is guilty</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&drammar;PS_Becoming_aware_01"/>
+        <drammar:featuresProcess rdf:resource="&drammar;Process_Discover"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#PFCTL_kil_09 -->
+
+    <owl:NamedIndividual rdf:about="&www;PFCTL_kil_09">
+        <rdf:type rdf:resource="&www;FactualProcess"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet kills Claudius</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&www;PS_killing_09"/>
+        <drammar:featuresProcess rdf:resource="&drammar;Process_Killing"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#PFCTL_men_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;PFCTL_men_01">
+        <rdf:type rdf:resource="&www;FactualProcess"/>
+        <drammar:hasMessage rdf:datatype="&xsd;string">At home, my lord</drammar:hasMessage>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Ophelia lies about Polonius&apos; location</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&drammar;PS_prevarication_01"/>
+        <drammar:featuresProcess rdf:resource="&drammar;Process_Lying"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#PFCT_Go_to_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;PFCT_Go_to_01">
+        <rdf:type rdf:resource="&www;FactualProcess"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Ophelia goes to a nunnery.</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&www;PS_Motion_01"/>
+        <drammar:featuresProcess rdf:resource="&www;Process_Go_to"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#PFCT_recommend_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;PFCT_recommend_01">
+        <rdf:type rdf:resource="&www;FactualProcess"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet recommends Ophelia to go to a nunnery.</drammar:freeDescription>
+        <Process_status rdf:datatype="&xsd;boolean">true</Process_status>
+        <drammar:isDescribedBy rdf:resource="&www;PS_Attempt_suasion_01"/>
+        <drammar:featuresProcess rdf:resource="&www;Process_Recommend"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#PS_Attempt_suasion_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;PS_Attempt_suasion_01">
+        <rdf:type rdf:resource="&drammar;ProcessSchema"/>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_Induce_Attempt_suasion"/>
+        <drammar:hasRole rdf:resource="&www;R_Addressee_PS_Attempt_suasion_01"/>
+        <drammar:hasRole rdf:resource="&www;R_Content_PS_Attempt_suasion_01"/>
+        <drammar:hasRole rdf:resource="&www;R_Medium_PS_Attempt_suasion_01"/>
+        <drammar:hasRole rdf:resource="&www;R_Speaker_PS_Attempt_suasion_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#PS_Motion_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;PS_Motion_01">
+        <rdf:type rdf:resource="&drammar;ProcessSchema"/>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_Go_to_Motion"/>
+        <drammar:hasRole rdf:resource="&www;R_Goal_PS_Motion_01"/>
+        <drammar:hasRole rdf:resource="&www;R_Theme_PS_Motion_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#PS_killing_09 -->
+
+    <owl:NamedIndividual rdf:about="&www;PS_killing_09">
+        <rdf:type rdf:resource="&drammar;ProcessSchema"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet kills Claudius</drammar:freeDescription>
+        <drammar:hasRole rdf:resource="&www;R_Killer_PS_killing_09"/>
+        <drammar:hasRole rdf:resource="&www;R_Victim_PS_PFCTL_kil_09"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Kill_Killing"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#PState_Eff_P_H_AdvisingOpheliaNunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;PState_Eff_P_H_AdvisingOpheliaNunnery">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&www;Done_A_recommend_01_in_P_H_AdvisingOpheliaNunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#PState_Pre_P_H_AdvisingOpheliaNunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;PState_Pre_P_H_AdvisingOpheliaNunnery">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&www;B_H_Elsinor_Corrupted"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#P_H_AdvisingOpheliaNunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;P_H_AdvisingOpheliaNunnery">
+        <rdf:type rdf:resource="&drammar;Plan"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet advising Ophelia to go to a nunnery. </rdfs:label>
+        <drammar:Plan_type rdf:datatype="&xsd;string">Base</drammar:Plan_type>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet describes the corruption of Elsinore and invites Ophelia to go to a nunnery. </drammar:freeDescription>
+        <drammar:containsOLEAction rdf:resource="&www;OLE_A_recommend_01_in_P_H_AdvisingOpheliaNunnery"/>
+        <drammar:hasPlanEffect rdf:resource="&www;PState_Eff_P_H_AdvisingOpheliaNunnery"/>
+        <drammar:hasPlanPrecondition rdf:resource="&www;PState_Pre_P_H_AdvisingOpheliaNunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Polonius_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&www;Polonius_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;AgentInScene"/>
+        <drammar:featuresAgentInPlan rdf:resource="&drammar;Polonius_P_O_Lie"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Process_Go_to -->
+
+    <owl:NamedIndividual rdf:about="&www;Process_Go_to">
+        <rdf:type rdf:resource="&drammar;Process"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Process_Recommend -->
+
+    <owl:NamedIndividual rdf:about="&www;Process_Recommend">
+        <rdf:type rdf:resource="&drammar;Process"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#R_Addressee_PS_Attempt_suasion_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;R_Addressee_PS_Attempt_suasion_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_FRole_Addressee_Attempt_suasion"/>
+        <drammar:hasFiller rdf:resource="&drammar;Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#R_Content_PS_Attempt_suasion_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;R_Content_PS_Attempt_suasion_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_FRole_Content_Attempt_suasion"/>
+        <drammar:hasFiller rdf:resource="&www;PFCT_Go_to_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#R_Evaluee_SS_morality_evaluation_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;R_Evaluee_SS_morality_evaluation_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_FRole_Evaluee_Morality_evaluation"/>
+        <drammar:hasFiller rdf:resource="&drammar;Elsinor"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#R_Goal_PS_Motion_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;R_Goal_PS_Motion_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Object</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_FRole_Goal_Motion"/>
+        <drammar:hasFiller rdf:resource="&www;Nunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#R_Judge_SS_morality_evaluation_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;R_Judge_SS_morality_evaluation_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_FRole_Judge_Morality_evaluation"/>
+        <drammar:hasFiller rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#R_Killer_PS_killing_09 -->
+
+    <owl:NamedIndividual rdf:about="&www;R_Killer_PS_killing_09">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Killer_Killing"/>
+        <drammar:hasFiller rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#R_Medium_PS_Attempt_suasion_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;R_Medium_PS_Attempt_suasion_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Object</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_FRole_Medium_Attempt_suasion"/>
+        <drammar:hasFiller rdf:resource="&drammar;Message_Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#R_Speaker_PS_Attempt_suasion_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;R_Speaker_PS_Attempt_suasion_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_FRole_Speaker_Attempt_suasion"/>
+        <drammar:hasFiller rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#R_Theme_PS_Motion_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;R_Theme_PS_Motion_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_FRole_Theme_Motion"/>
+        <drammar:hasFiller rdf:resource="&drammar;Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#R_Undergoer_Honest_SS_honest_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;R_Undergoer_Honest_SS_honest_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Undergoer</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_VRole_Undergoer_Honest"/>
+        <drammar:hasFiller rdf:resource="&drammar;Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#R_Victim_PS_PFCTL_kil_09 -->
+
+    <owl:NamedIndividual rdf:about="&www;R_Victim_PS_PFCTL_kil_09">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasFiller rdf:resource="&drammar;Claudius"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Victim_Killing"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Remorse -->
+
+    <owl:NamedIndividual rdf:about="&www;Remorse">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#SFCTL_ElsinorCorrupted -->
+
+    <owl:NamedIndividual rdf:about="&www;SFCTL_ElsinorCorrupted">
+        <rdf:type rdf:resource="&www;F_StateOfAffairs"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">The court of Elsinor is corrupted.</drammar:freeDescription>
+        <drammar:State_status rdf:datatype="&xsd;boolean">true</drammar:State_status>
+        <drammar:isDescribedBy rdf:resource="&www;SS_morality_evaluation_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#SFCTL_honest_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;SFCTL_honest_01">
+        <rdf:type rdf:resource="&www;F_StateOfAffairs"/>
+        <drammar:State_status rdf:datatype="&xsd;boolean">false</drammar:State_status>
+        <rdfs:comment>Ophelia is not honest.</rdfs:comment>
+        <drammar:isDescribedBy rdf:resource="&www;SS_honest_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#SFCTL_rei_02 -->
+
+    <owl:NamedIndividual rdf:about="&www;SFCTL_rei_02">
+        <rdf:type rdf:resource="&www;F_StateOfAffairs"/>
+        <drammar:State_status rdf:datatype="&xsd;boolean">true</drammar:State_status>
+        <drammar:isDescribedBy rdf:resource="&drammar;SS_leadership_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#SS_honest_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;SS_honest_01">
+        <rdf:type rdf:resource="&drammar;SOASchema"/>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_Honest"/>
+        <drammar:hasRole rdf:resource="&www;R_Undergoer_Honest_SS_honest_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#SS_morality_evaluation_01 -->
+
+    <owl:NamedIndividual rdf:about="&www;SS_morality_evaluation_01">
+        <rdf:type rdf:resource="&drammar;SOASchema"/>
+        <drammar:hasExtRef rdf:resource="&www;ExtRef_Corrupt_MoralityEvaluation"/>
+        <drammar:hasRole rdf:resource="&www;R_Evaluee_SS_morality_evaluation_01"/>
+        <drammar:hasRole rdf:resource="&www;R_Judge_SS_morality_evaluation_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#US_I_Recommend_Eff -->
+
+    <owl:NamedIndividual rdf:about="&www;US_I_Recommend_Eff">
+        <rdf:type rdf:resource="&drammar;UnitState"/>
+        <owl:sameAs rdf:resource="&drammar;US_OLI_15"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#US_I_Recommend_Pre -->
+
+    <owl:NamedIndividual rdf:about="&www;US_I_Recommend_Pre">
+        <rdf:type rdf:resource="&drammar;UnitState"/>
+        <owl:sameAs rdf:resource="&drammar;US_I_Discover_Eff"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#Unit13-16_GoNunnery -->
+
+    <owl:NamedIndividual rdf:about="&www;Unit13-16_GoNunnery">
+        <rdf:type rdf:resource="&drammar;Unit"/>
+        <drammar:unitContainsAction rdf:resource="&www;I_Recommend"/>
+        <drammar:hasUnitEffect rdf:resource="&www;US_I_Recommend_Eff"/>
+        <drammar:hasUnitPrecondition rdf:resource="&www;US_I_Recommend_Pre"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#VS_H_Honesty -->
+
+    <owl:NamedIndividual rdf:about="&www;VS_H_Honesty">
+        <rdf:type rdf:resource="&www;ValueSchema"/>
+        <drammar:hasValueType rdf:resource="&drammar;ExtRef_Honesty"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it#VS_O_Honesty -->
+
+    <owl:NamedIndividual rdf:about="&www;VS_O_Honesty">
+        <rdf:type rdf:resource="&www;ValueSchema"/>
+        <drammar:hasValueType rdf:resource="&drammar;ExtRef_Honesty"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#A_ask_01_in_P_H_AskR_Asking -->
+
+    <owl:NamedIndividual rdf:about="&drammar;A_ask_01_in_P_H_AskR_Asking">
+        <rdf:type rdf:resource="&drammar;ActionInPlan"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet asks to Ophelia &quot;Where is your Father?&quot;</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet asks to Ophelia &apos;Where is your Father?&apos;</drammar:freeDescription>
+        <drammar:hasMessage rdf:datatype="&xsd;string">Where is your father?</drammar:hasMessage>
+        <drammar:isDescribedBy rdf:resource="&drammar;PS_questioning_01"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_AskR"/>
+        <drammar:featuresProcess rdf:resource="&drammar;Process_Asking"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#A_awa_01_in_P_H_Understand_Discover -->
+
+    <owl:NamedIndividual rdf:about="&drammar;A_awa_01_in_P_H_Understand_Discover">
+        <rdf:type rdf:resource="&drammar;ActionInPlan"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet discovers that Claudius is guilty</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&drammar;PS_Becoming_aware_01"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Understand"/>
+        <drammar:featuresProcess rdf:resource="&drammar;Process_Discover"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#A_kil_01_in_P_H_Kill_Claudius_Killing -->
+
+    <owl:NamedIndividual rdf:about="&drammar;A_kil_01_in_P_H_Kill_Claudius_Killing">
+        <rdf:type rdf:resource="&drammar;ActionInPlan"/>
+        <rdfs:label rdf:datatype="&xsd;string">Killing action- Hamlet kills Claudius</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet kills Claudius</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&www;PS_killing_09"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Kill_Claudius"/>
+        <drammar:featuresProcess rdf:resource="&drammar;Process_Killing"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#A_men_01_in_P_O_Lie_Lying -->
+
+    <owl:NamedIndividual rdf:about="&drammar;A_men_01_in_P_O_Lie_Lying">
+        <rdf:type rdf:resource="&drammar;ActionInPlan"/>
+        <rdfs:label rdf:datatype="&xsd;string">The action where Ophelia lies about Polonius&apos; location.</rdfs:label>
+        <drammar:hasMessage rdf:datatype="&xsd;string">At home, my lord</drammar:hasMessage>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Ophelia lies about Polonius&apos; location</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&drammar;PS_prevarication_01"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_O_Lie"/>
+        <drammar:featuresProcess rdf:resource="&drammar;Process_Lying"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Anger -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Anger">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#B_H_B_O_Polonius_in_Room -->
+
+    <owl:NamedIndividual rdf:about="&drammar;B_H_B_O_Polonius_in_Room">
+        <rdf:type rdf:resource="&drammar;Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string"> Hamlet believes that Ophelia believes Polonius is in the Room.</drammar:freeDescription>
+        <rdfs:comment> Hamlet believes that Ophelia believes Polonius is in the Room.</rdfs:comment>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0016_H"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#B_H_Claudius_killed_Father -->
+
+    <owl:NamedIndividual rdf:about="&drammar;B_H_Claudius_killed_Father">
+        <rdf:type rdf:resource="&drammar;Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet believes/knows his father was killed by Claudius</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0021_H"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#B_H_Claudius_killed_Father_not -->
+
+    <owl:NamedIndividual rdf:about="&drammar;B_H_Claudius_killed_Father_not">
+        <rdf:type rdf:resource="&drammar;Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet doesn&apos;t believe/know whether his father was killed by Claudius</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0020_H"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#B_H_Gosth_not_soul_Father -->
+
+    <owl:NamedIndividual rdf:about="&drammar;B_H_Gosth_not_soul_Father">
+        <rdf:type rdf:resource="&drammar;Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet believe that the ghost is not the soul of his father.</drammar:freeDescription>
+        <rdfs:comment>Hamlet believe that the ghost is not the soul of his father.</rdfs:comment>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0040_H"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#B_H_Gosth_soul_Father -->
+
+    <owl:NamedIndividual rdf:about="&drammar;B_H_Gosth_soul_Father">
+        <rdf:type rdf:resource="&drammar;Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet believes that the ghost is the soul of his father.</drammar:freeDescription>
+        <rdfs:comment>Hamlet believes that the ghost is the soul of his father.</rdfs:comment>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0041_H"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#B_H_Murder_Father_Avenged -->
+
+    <owl:NamedIndividual rdf:about="&drammar;B_H_Murder_Father_Avenged">
+        <rdf:type rdf:resource="&drammar;Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet believes/knows that The death of Hamlet&apos;s Father is avenged</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0031_H"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#B_H_Murder_Father_Avenged_not -->
+
+    <owl:NamedIndividual rdf:about="&drammar;B_H_Murder_Father_Avenged_not">
+        <rdf:type rdf:resource="&drammar;Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet doesn&apos;t believe/know that the death of Hamlet&apos;s Father is avenged</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0030_H"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Hamlet_P_H_Revenge"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#B_H_O_Honest -->
+
+    <owl:NamedIndividual rdf:about="&drammar;B_H_O_Honest">
+        <rdf:type rdf:resource="&drammar;Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string"> Hamlet believes that Ophelia is honest. </drammar:freeDescription>
+        <rdfs:comment> Hamlet does not believe that Ophelia has the value of Honesty.</rdfs:comment>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0017_H"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#B_H_Polonius_in_Room -->
+
+    <owl:NamedIndividual rdf:about="&drammar;B_H_Polonius_in_Room">
+        <rdf:type rdf:resource="&drammar;Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string"> Hamlet believes/knows that Polonius is in the Room.</drammar:freeDescription>
+        <rdfs:comment>Hamlet believes/knows Polonius is in the Room.</rdfs:comment>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0009_H"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#B_O_B_H_Polonius_Home -->
+
+    <owl:NamedIndividual rdf:about="&drammar;B_O_B_H_Polonius_Home">
+        <rdf:type rdf:resource="&drammar;Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string"> Ophelia believes Hamlet believes Polonius is at home.</drammar:freeDescription>
+        <rdfs:comment> Ophelia believes Hamlet believes Polonius is at home.</rdfs:comment>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0013_O"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#B_O_Polonius_in_Room -->
+
+    <owl:NamedIndividual rdf:about="&drammar;B_O_Polonius_in_Room">
+        <rdf:type rdf:resource="&drammar;Belief"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string"> Ophelia believes/knows Polonius is in the Room.</drammar:freeDescription>
+        <rdfs:comment>Ophelia believes/knows Polonius is in the Room.</rdfs:comment>
+        <drammar:isDescribedBy rdf:resource="&www;BS_0011_O"/>
+        <drammar:isKnownBy rdf:resource="&drammar;Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Claudius -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Claudius">
+        <rdf:type rdf:resource="&drammar;Agent"/>
+        <rdfs:label rdf:datatype="&xsd;string">Claudius, Hamlet&apos;s Uncle</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Claudius, Hamlet&apos;s Uncle</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_king"/>
+        <drammar:hasGoal rdf:resource="&drammar;Goal_Claudius_Reign"/>
+        <drammar:intends rdf:resource="&drammar;P_C_Reign"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Claudius_Discover -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Claudius_Discover">
+        <rdf:type rdf:resource="&drammar;AgentInUnit"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Claudius"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit_Discover"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Claudius_Kill -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Claudius_Kill">
+        <rdf:type rdf:resource="&drammar;AgentInUnit"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Claudius"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit_Kill"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Claudius_P_H_Kill_Claudius -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Claudius_P_H_Kill_Claudius">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Claudius"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Kill_Claudius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Claudius_P_H_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Claudius_P_H_Revenge">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Claudius"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Revenge"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Claudius_P_H_Understand -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Claudius_P_H_Understand">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Claudius"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Understand"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Claudius_in_P_C_Reign -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Claudius_in_P_C_Reign">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Claudius"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_C_Reign"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Claudius_in_P_H_Unmask -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Claudius_in_P_H_Unmask">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Claudius"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Unmask"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Denmark -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Denmark">
+        <rdf:type rdf:resource="&drammar;Object"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Reign of Denmark</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Denmark"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Denmark_P_C_Reign -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Denmark_P_C_Reign">
+        <rdf:type rdf:resource="&drammar;ObjectInPlan"/>
+        <drammar:featuresObject rdf:resource="&drammar;Denmark"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_C_Reign"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Disappointment -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Disappointment">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Dislike -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Dislike">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Distress -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Distress">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaDistress"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Done_A_ask_01_in_P_H_AskR_Asking -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Done_A_ask_01_in_P_H_AskR_Asking">
+        <rdf:type rdf:resource="&www;DoneInPlanState"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet has asked rethorically Ophelia &apos;Where is your father?&apos;.</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">The termination of the action Hamlet asking rhetorically Ophelia about Polonius&apos; location. </drammar:freeDescription>
+        <drammar:State_status rdf:datatype="&xsd;boolean">true</drammar:State_status>
+        <rdfs:comment>This is the state of affairs (actually the subclass Accomplishment) that holds when the plan P_H_007 terminates.
+Actually, its name derives from the incident that is accomplished (in its propositional content - relation accomplishedIncident). </rdfs:comment>
+        <drammar:isDescribedBy rdf:resource="&www;DS_A_ask_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Done_P_O_Truth -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Done_P_O_Truth">
+        <rdf:type rdf:resource="&www;DoneInPlanState"/>
+        <rdfs:label rdf:datatype="&xsd;string">The accomplishement of plan Ophelia tells the truth to Hamlet about Polonius&apos; location</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">The accomplishment of plan Ophelia tells the truth to Hamlet about Polonius&apos; location</drammar:freeDescription>
+        <drammar:State_status rdf:datatype="&xsd;boolean">false</drammar:State_status>
+        <drammar:isDescribedBy rdf:resource="&www;DS_P_O_Truth"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Elsinor -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Elsinor">
+        <rdf:type rdf:resource="&drammar;Object"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">The court of Elsinor</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Elsinor"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Elsinor_in_P_H_Send_O_Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Elsinor_in_P_H_Send_O_Nunnery">
+        <rdf:type rdf:resource="&drammar;ObjectInPlan"/>
+        <drammar:featuresObject rdf:resource="&drammar;Elsinor"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Send_O_Nunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_Alive_Surviving -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_Alive_Surviving">
+        <rdf:type rdf:resource="&drammar;ExternalRefSchema"/>
+        <drammar:quale_frame_URI rdf:datatype="&xsd;anyURI">1792</drammar:quale_frame_URI>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Surviving</drammar:quale_frame_name>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">a#00097799</drammar:quale_WordNetSense>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">vivo</drammar:quale_originalTerm>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_Ask_Questioning -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_Ask_Questioning">
+        <rdf:type rdf:resource="&drammar;ExternalRefSchema"/>
+        <drammar:quale_frame_URI rdf:datatype="&xsd;anyURI">40</drammar:quale_frame_URI>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Questioning</drammar:quale_frame_name>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Schema found at the 1st wordnet sense of &quot;chiedere&quot; in both CADMOS interface and wordnet
+From Framenet entry:
+
+name=&quot;Questioning&quot; 
+
+ID=&quot;40&quot;
+
+&lt;definition&gt;&amp;lt;def-root&amp;gt;The words in this frame have to do with a Speaker asking an Addressee a question which calls for a reply (as opposed to making a request which calls for an action on the part of the Addressee). &amp;lt;/def-root&amp;gt;&lt;/definition&gt;
+
+
+All the Core Frame Elements to be visualized in the CADMOS interface:
+
+&lt;FE bgColor=&quot;FF0000&quot; fgColor=&quot;FFFFFF&quot; coreType=&quot;Core&quot; cBy=&quot;731&quot; cDate=&quot;02/07/2001 04:12:03 PST Wed&quot; abbrev=&quot;Spkr&quot; name=&quot;Speaker&quot; ID=&quot;167&quot;&gt;
+        &lt;definition&gt;&amp;lt;def-root&amp;gt;The person asking a question generally occurs as the External Argument of verb and noun targets: 
+&amp;lt;ex&amp;gt;&amp;lt;fex name=&quot;Speaker&quot;&amp;gt;Pat&amp;lt;/fex&amp;gt; &amp;lt;t&amp;gt;quizzed&amp;lt;/t&amp;gt; me about where I had been.&amp;lt;/ex&amp;gt;
+&amp;lt;ex&amp;gt;&amp;lt;fex name=&quot;Speaker&quot;&amp;gt;Pat&apos;s&amp;lt;/fex&amp;gt; &amp;lt;t&amp;gt;question&amp;lt;/t&amp;gt; surprised me. &amp;lt;/ex&amp;gt;&amp;lt;/def-root&amp;gt;&lt;/definition&gt;
+        &lt;semType name=&quot;Sentient&quot; ID=&quot;5&quot;/&gt;
+    &lt;/FE&gt;
+
+    &lt;FE bgColor=&quot;006400&quot; fgColor=&quot;FFFFFF&quot; coreType=&quot;Core&quot; cBy=&quot;731&quot; cDate=&quot;02/07/2001 04:12:03 PST Wed&quot; abbrev=&quot;Add&quot; name=&quot;Addressee&quot; ID=&quot;168&quot;&gt;
+        &lt;definition&gt;&amp;lt;def-root&amp;gt;The Addressee is most frequently the NP Object of a target verb.  However, with the verb &amp;lt;ment&amp;gt;inquire&amp;lt;/ment&amp;gt;, Addressee can only occur as an &amp;lt;ment&amp;gt;of&amp;lt;/ment&amp;gt;-PP and with a noun target, Addressee occurs in a PP Complement or as a possessive :
+&amp;lt;ex&amp;gt;Pat &amp;lt;t&amp;gt;questioned&amp;lt;/t&amp;gt; &amp;lt;fex name=&quot;Addressee&quot;&amp;gt;me&amp;lt;/fex&amp;gt; about where I had been.&amp;lt;/ex&amp;gt;
+&amp;lt;ex&amp;gt;&quot;Do you often come here?&quot; Kim &amp;lt;t&amp;gt;inquired&amp;lt;/t&amp;gt; &amp;lt;fex name=&quot;Addressee&quot;&amp;gt;of the person sitting next to her&amp;lt;/fex&amp;gt;.&amp;lt;/ex&amp;gt; 
+&amp;lt;ex&amp;gt;My &amp;lt;t&amp;gt;question&amp;lt;/t&amp;gt; &amp;lt;fex name=&quot;Addressee&quot;&amp;gt;to you&amp;lt;/fex&amp;gt; is straightforward.&amp;lt;/ex&amp;gt;
+&amp;lt;ex&amp;gt;&amp;lt;fex name=&quot;Addressee&quot;&amp;gt;Kim&apos;s&amp;lt;/fex&amp;gt; &amp;lt;t&amp;gt;interrogation&amp;lt;/t&amp;gt; by the police was long.&amp;lt;/ex&amp;gt;&amp;lt;/def-root&amp;gt;&lt;/definition&gt;
+        &lt;semType name=&quot;Sentient&quot; ID=&quot;5&quot;/&gt;
+    &lt;/FE&gt;
+
+    &lt;FE bgColor=&quot;0000FF&quot; fgColor=&quot;FFFFFF&quot; coreType=&quot;Core&quot; cBy=&quot;731&quot; cDate=&quot;02/07/2001 04:12:03 PST Wed&quot; abbrev=&quot;Msg&quot; name=&quot;Message&quot; ID=&quot;169&quot;&gt;
+        &lt;definition&gt;&amp;lt;def-root&amp;gt;The Message, or content of the question, usually takes the form of a direct quote or an embedded question with a verb target: 
+&amp;lt;ex&amp;gt;&amp;lt;fex name=&quot;Message&quot;&amp;gt;&quot;What are you doing?&quot;&amp;lt;/fex&amp;gt; Kim &amp;lt;t&amp;gt;inquired&amp;lt;/t&amp;gt;.&amp;lt;/ex&amp;gt;
+&amp;lt;ex&amp;gt;Kim &amp;lt;t&amp;gt;inquired&amp;lt;/t&amp;gt; &amp;lt;fex name=&quot;Message&quot;&amp;gt;what I was doing&amp;lt;/fex&amp;gt;.&amp;lt;/ex&amp;gt;
+With noun targets, Message is not common (as Topic occurs more  frequently).  However, Message does occur in a PP Complement with the noun &amp;lt;ment&amp;gt;question&amp;lt;/ment&amp;gt;: 
+&amp;lt;ex&amp;gt;The answer to your &amp;lt;t&amp;gt;question&amp;lt;/t&amp;gt; &amp;lt;fex name=&quot;Message&quot;&amp;gt;of how the company makes money&amp;lt;/fex&amp;gt; is simply that it doesn&apos;t. &amp;lt;/ex&amp;gt;&amp;lt;/def-root&amp;gt;&lt;/definition&gt;
+        &lt;semType name=&quot;Message&quot; ID=&quot;56&quot;/&gt;
+    &lt;/FE&gt;
+
+    &lt;FE bgColor=&quot;9F79EE&quot; fgColor=&quot;FFFFFF&quot; coreType=&quot;Core&quot; cBy=&quot;731&quot; cDate=&quot;02/07/2001 04:12:03 PST Wed&quot; abbrev=&quot;Top&quot; name=&quot;Topic&quot; ID=&quot;170&quot;&gt;
+        &lt;definition&gt;&amp;lt;def-root&amp;gt;Topic occurs very frequently in this frame with both noun and verb targets. It generally occurs as a PP Complement:
+&amp;lt;ex&amp;gt;Pat &amp;lt;t&amp;gt;inquired&amp;lt;/t&amp;gt; &amp;lt;fex name=&quot;Topic&quot;&amp;gt;about train times&amp;lt;/fex&amp;gt;.&amp;lt;/ex&amp;gt;
+&amp;lt;ex&amp;gt;Pat&apos;s &amp;lt;t&amp;gt;inquiry&amp;lt;/t&amp;gt; &amp;lt;fex name=&quot;Topic&quot;&amp;gt;about train times&amp;lt;/fex&amp;gt; fell on deaf ears.&amp;lt;/ex&amp;gt;&amp;lt;/def-root&amp;gt;&lt;/definition&gt;
+    &lt;/FE&gt;</drammar:freeDescription>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">chiedere</drammar:quale_originalTerm>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=v_00532796</drammar:quale>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">v_00532796</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_Dead -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_Dead">
+        <rdf:type rdf:resource="&drammar;ExternalRefSchema"/>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=n_07203851</drammar:quale>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">morto</drammar:quale_originalTerm>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">n#07203851</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_Denmark -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_Denmark">
+        <rdf:type rdf:resource="&drammar;ExternalRefEntity"/>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=n_10411125</drammar:quale>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">n#10411125</drammar:quale_WordNetSense>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">regno</drammar:quale_originalTerm>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_Discover_Becoming_aware -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_Discover_Becoming_aware">
+        <rdf:type rdf:resource="&drammar;ExternalRefSchema"/>
+        <drammar:quale_frame_URI rdf:datatype="&xsd;anyURI">20</drammar:quale_frame_URI>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Becoming_aware</drammar:quale_frame_name>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=v_00622132</drammar:quale>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">v#00622132</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_Elsinor -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_Elsinor">
+        <rdf:type rdf:resource="&drammar;ExternalRefEntity"/>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">corte</drammar:quale_originalTerm>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=n_06001132</drammar:quale>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">n#06001132</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Addresse_Questioning -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Addresse_Questioning">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">168</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Questioning</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Addressee_Prevarication -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Addressee_Prevarication">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">2491</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Prevarication</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Agent_Posture -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Agent_Posture">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">81</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Posture</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Avenger_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Avenger_Revenge">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">3009</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Revenge</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Cognizer_Becoming_aware -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Cognizer_Becoming_aware">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">87</drammar:Role_framenetRoleID>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Becoming_aware</drammar:quale_frame_name>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Governed_Leadership -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Governed_Leadership">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">6431</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Leadership</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Injured_party_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Injured_party_Revenge">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">3022</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Revenge</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Injury_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Injury_Revenge">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">3018</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Revenge</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Killer_Killing -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Killer_Killing">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">4450</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Killing</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Leader_Leadership -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Leader_Leadership">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">347</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Leadership</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Location_Posture -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Location_Posture">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">82</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Posture</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Means_Killing -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Means_Killing">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">4454</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Killing</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Message_Questioning -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Message_Questioning">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">169</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Questioning</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Offender_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Offender_Revenge">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">3012
+</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Revenge</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Phenomenon_Becoming_aware -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Phenomenon_Becoming_aware">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">88</drammar:Role_framenetRoleID>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Becoming_aware</drammar:quale_frame_name>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Punishement_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Punishement_Revenge">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">3015</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Revenge</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Role_Leadership -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Role_Leadership">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">349</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Leadership</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Speaker_Prevarication -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Speaker_Prevarication">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">2490</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Prevarication</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Speaker_Questioning -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Speaker_Questioning">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">167</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Questioning</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Survivor_Surviving -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Survivor_Surviving">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">10621</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Surviving</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Topic_Prevarication -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Topic_Prevarication">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">2492</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Prevarication</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Topic_Questioning -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Topic_Questioning">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">170</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Questioning</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_FRole_Victim_Killing -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_FRole_Victim_Killing">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_framenetRoleID rdf:datatype="&xsd;string">4451</drammar:Role_framenetRoleID>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Framenet</drammar:Role_ID_resource>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Killing</drammar:quale_frame_name>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_Honesty -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_Honesty">
+        <rdf:type rdf:resource="&drammar;ExternalRefEntity"/>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=n_03816422</drammar:quale>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">n#03816422</drammar:quale_WordNetSense>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">onestà</drammar:quale_originalTerm>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_Kill_Killing -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_Kill_Killing">
+        <rdf:type rdf:resource="&drammar;ExternalRefSchema"/>
+        <drammar:quale_frame_URI rdf:datatype="&xsd;anyURI">590</drammar:quale_frame_URI>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Killing</drammar:quale_frame_name>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">Uccidere</drammar:quale_originalTerm>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">v#00903723</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_Lie_Prevarication -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_Lie_Prevarication">
+        <rdf:type rdf:resource="&drammar;ExternalRefSchema"/>
+        <drammar:quale_frame_URI rdf:datatype="&xsd;anyURI">287</drammar:quale_frame_URI>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Prevarication</drammar:quale_frame_name>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Schema found at the 11th wordnet sense of &quot;mentire&quot; in both CADMOS interface and 2nd sense in multiwordnet
+
+&lt;frame cBy=&quot;664&quot; cDate=&quot;03/19/2002 05:17:13 PST Tue&quot; name=&quot;Prevarication&quot; ID=&quot;287&quot; xsi:schemaLocation=&quot;../schema/frame.xsd&quot; xmlns=&quot;http://framenet.icsi.berkeley.edu&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt;
+
+    &lt;definition&gt;&amp;lt;def-root&amp;gt;A &amp;lt;fen&amp;gt;Speaker&amp;lt;/fen&amp;gt; communicates about a &amp;lt;fen&amp;gt;Topic&amp;lt;/fen&amp;gt; in such a way as to mislead an &amp;lt;fen&amp;gt;Addressee&amp;lt;/fen&amp;gt;, either by telling outright lies or by presenting a message in a misleading form.&amp;lt;/def-root&amp;gt;&lt;/definition&gt;
+
+    &lt;FE bgColor=&quot;FF0000&quot; fgColor=&quot;FFFFFF&quot; coreType=&quot;Core&quot; cBy=&quot;664&quot; cDate=&quot;03/19/2002 05:51:51 PST Tue&quot; abbrev=&quot;Spkr&quot; name=&quot;Speaker&quot; ID=&quot;2490&quot;&gt;
+        &lt;definition&gt;&amp;lt;def-root&amp;gt;The person who uses language in the written or spoken modality to convey a deceptive Message to the Addressee.
+&amp;lt;ex&amp;gt;&amp;lt;fex name=&quot;Speaker&quot;&amp;gt;Politicians&amp;lt;/fex&amp;gt; do nothing but &amp;lt;m&amp;gt;tell&amp;lt;/m&amp;gt; &amp;lt;t&amp;gt;lies&amp;lt;/t&amp;gt; about money.&amp;lt;/ex&amp;gt;&amp;lt;/def-root&amp;gt;&lt;/definition&gt;
+        &lt;semType name=&quot;Sentient&quot; ID=&quot;5&quot;/&gt;
+    &lt;/FE&gt;
+
+    &lt;FE bgColor=&quot;006400&quot; fgColor=&quot;FFFFFF&quot; coreType=&quot;Core&quot; cBy=&quot;664&quot; cDate=&quot;03/19/2002 05:51:53 PST Tue&quot; abbrev=&quot;Add&quot; name=&quot;Addressee&quot; ID=&quot;2491&quot;&gt;
+        &lt;definition&gt;&amp;lt;def-root&amp;gt;The person that receives a Message from the Speaker. 
+&amp;lt;ex&amp;gt;You&apos;re &amp;lt;t&amp;gt;kidding&amp;lt;/t&amp;gt; &amp;lt;fex name=&quot;Addressee&quot;&amp;gt;me&amp;lt;/fex&amp;gt;!&amp;lt;/ex&amp;gt;
+&amp;lt;ex&amp;gt;Satan &amp;lt;t&amp;gt;lies&amp;lt;/t&amp;gt; &amp;lt;fex name=&quot;Addressee&quot;&amp;gt;to everyone, including himself&amp;lt;/fex&amp;gt;.&amp;lt;/ex&amp;gt;&amp;lt;/def-root&amp;gt;&lt;/definition&gt;
+        &lt;semType name=&quot;Sentient&quot; ID=&quot;5&quot;/&gt;
+    &lt;/FE&gt;
+
+    &lt;FE bgColor=&quot;0000FF&quot; fgColor=&quot;FFFFFF&quot; coreType=&quot;Core&quot; cBy=&quot;664&quot; cDate=&quot;03/19/2002 05:51:55 PST Tue&quot; abbrev=&quot;Top&quot; name=&quot;Topic&quot; ID=&quot;2492&quot;&gt;
+        &lt;definition&gt;&amp;lt;def-root&amp;gt;&amp;lt;fen&amp;gt;Topic&amp;lt;/fen&amp;gt; is the entity to which the proposition or propositions  relate, that they are about. 
+&amp;lt;ex&amp;gt;You &amp;lt;t&amp;gt;deceived&amp;lt;/t&amp;gt; me &amp;lt;fex name=&quot;Topic&quot;&amp;gt;about the location of the diamonds&amp;lt;/fex&amp;gt;.&amp;lt;/ex&amp;gt;&amp;lt;/def-root&amp;gt;&lt;/definition&gt;
+    &lt;/FE&gt;</drammar:freeDescription>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=v_00579423</drammar:quale>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">ingannare</drammar:quale_originalTerm>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">v_00579423</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_Reign_Leadership -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_Reign_Leadership">
+        <rdf:type rdf:resource="&drammar;ExternalRefSchema"/>
+        <drammar:quale_frame_URI rdf:datatype="&xsd;anyURI">73</drammar:quale_frame_URI>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Leadership</drammar:quale_frame_name>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">Regnare</drammar:quale_originalTerm>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=v_01763790</drammar:quale>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">v#01763790</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_Revenge_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_Revenge_Revenge">
+        <rdf:type rdf:resource="&drammar;ExternalRefSchema"/>
+        <drammar:quale_frame_URI rdf:datatype="&xsd;anyURI">347</drammar:quale_frame_URI>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Revenge</drammar:quale_frame_name>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=v_00784203</drammar:quale>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">v#00784203</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_Stay_Posture -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_Stay_Posture">
+        <rdf:type rdf:resource="&drammar;ExternalRefSchema"/>
+        <drammar:quale_frame_URI rdf:datatype="&xsd;anyURI">18</drammar:quale_frame_URI>
+        <drammar:quale_frame_name rdf:datatype="&xsd;string">Posture</drammar:quale_frame_name>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Schema found at the 14th wordnet sense of &quot;stare&quot;
+
+&lt;frame cBy=&quot;731&quot; cDate=&quot;02/07/2001 04:11:51 PST Wed&quot; name=&quot;Posture&quot; ID=&quot;18&quot; xsi:schemaLocation=&quot;../schema/frame.xsd&quot; xmlns=&quot;http://framenet.icsi.berkeley.edu&quot; xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&gt;
+    &lt;definition&gt;&amp;lt;def-root&amp;gt;An &amp;lt;fen&amp;gt;Agent&amp;lt;/fen&amp;gt; supports their body in a particular &amp;lt;fen&amp;gt;Location&amp;lt;/fen&amp;gt;.  The LUs of the frame convey which body part is the &amp;lt;fen&amp;gt;Point_of_contact&amp;lt;/fen&amp;gt; where the &amp;lt;fen&amp;gt;Agent&amp;lt;/fen&amp;gt; is supported, what orientation the body is in, and some overall arrangement of the limbs (especially the legs) and the torso.
+
+&amp;lt;ex&amp;gt;&amp;lt;fex name=&quot;Agent&quot;&amp;gt;He&amp;lt;/fex&amp;gt; &amp;lt;t&amp;gt;knelt&amp;lt;/t&amp;gt; down Location , &amp;lt;fex name=&quot;Depictive&quot;&amp;gt;hand on heart&amp;lt;/fex&amp;gt; .&amp;lt;/ex&amp;gt;&amp;lt;/def-root&amp;gt;&lt;/definition&gt;
+    &lt;FE bgColor=&quot;FF0000&quot; fgColor=&quot;FFFFFF&quot; coreType=&quot;Core&quot; cBy=&quot;731&quot; cDate=&quot;02/07/2001 04:11:51 PST Wed&quot; abbrev=&quot;Agt&quot; name=&quot;Agent&quot; ID=&quot;81&quot;&gt;
+        &lt;definition&gt;&amp;lt;def-root&amp;gt;The &amp;lt;fen&amp;gt;Agent&amp;lt;/fen&amp;gt; is the individual whose body is in a particular posture.  The &amp;lt;fen&amp;gt;Agent&amp;lt;/fen&amp;gt; FE is generally expressed as the external argument of verbs: 
+&amp;lt;ex&amp;gt;&amp;lt;fex name=&quot;Agent&quot;&amp;gt;Kim&amp;lt;/fex&amp;gt; was &amp;lt;t&amp;gt;kneeling&amp;lt;/t&amp;gt; by the window.&amp;lt;/ex&amp;gt;&amp;lt;/def-root&amp;gt;&lt;/definition&gt;
+        &lt;semType name=&quot;Sentient&quot; ID=&quot;5&quot;/&gt;
+    &lt;/FE&gt;
+    &lt;FE bgColor=&quot;1E90FF&quot; fgColor=&quot;FFFFFF&quot; coreType=&quot;Core&quot; cBy=&quot;731&quot; cDate=&quot;02/07/2001 04:11:51 PST Wed&quot; abbrev=&quot;Loc&quot; name=&quot;Location&quot; ID=&quot;82&quot;&gt;
+        &lt;definition&gt;&amp;lt;def-root&amp;gt;A description of the position of the &amp;lt;fen&amp;gt;Agent&amp;lt;/fen&amp;gt;.  The &amp;lt;fen&amp;gt;Location&amp;lt;/fen&amp;gt; of the &amp;lt;fen&amp;gt;Agent&amp;lt;/fen&amp;gt; is frequently expressed and generally occurs as a PP Complement: 
+&amp;lt;ex&amp;gt;Kim was &amp;lt;t&amp;gt;kneeling&amp;lt;/t&amp;gt; &amp;lt;fex name=&quot;Location&quot;&amp;gt;by the window&amp;lt;/fex&amp;gt;.&amp;lt;/ex&amp;gt;&amp;lt;/def-root&amp;gt;&lt;/definition&gt;
+        &lt;semType name=&quot;Location&quot; ID=&quot;54&quot;/&gt;
+    &lt;/FE&gt;</drammar:freeDescription>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=v_01836008</drammar:quale>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">stare</drammar:quale_originalTerm>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">v#01836008</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_VRole_Undergoer_Dead -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_VRole_Undergoer_Dead">
+        <rdf:type rdf:resource="&drammar;ExternalRefRole"/>
+        <drammar:Role_verbnetRoleType rdf:datatype="&xsd;string">Undergoer</drammar:Role_verbnetRoleType>
+        <drammar:Role_ID_resource rdf:datatype="&xsd;string">Verbnet</drammar:Role_ID_resource>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_father -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_father">
+        <rdf:type rdf:resource="&drammar;ExternalRefEntity"/>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">Padre</drammar:quale_originalTerm>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=n_07258194</drammar:quale>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">n#07258194 father, male_parent, begetter</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_ghost -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_ghost">
+        <rdf:type rdf:resource="&drammar;ExternalRefEntity"/>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">fantasma</drammar:quale_originalTerm>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=n_04533237</drammar:quale>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">n#04533237</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_girlfriend -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_girlfriend">
+        <rdf:type rdf:resource="&drammar;ExternalRefEntity"/>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=n_07291392</drammar:quale>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">ragazza</drammar:quale_originalTerm>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">{n#07291392} girlfriend, girl, lady friend</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_king -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_king">
+        <rdf:type rdf:resource="&drammar;ExternalRefEntity"/>
+        <rdfs:label xml:lang="en">ExtRef_king</rdfs:label>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">Re</drammar:quale_originalTerm>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=n_07595596</drammar:quale>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">n#07595596</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_message -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_message">
+        <rdf:type rdf:resource="&drammar;ExternalRefEntity"/>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=n_04949838</drammar:quale>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">messaggio</drammar:quale_originalTerm>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">{n#04949838} message, content, subject_matter, substance</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_poison -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_poison">
+        <rdf:type rdf:resource="&drammar;ExternalRefEntity"/>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">veleno</drammar:quale_originalTerm>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_position -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_position">
+        <rdf:type rdf:resource="&drammar;ExternalRefEntity"/>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=n_06352837</drammar:quale>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">posizione</drammar:quale_originalTerm>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">{n#06352837} position, place</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_prince -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_prince">
+        <rdf:type rdf:resource="&drammar;ExternalRefEntity"/>
+        <drammar:quale rdf:datatype="&xsd;anyURI">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=n_07498573</drammar:quale>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">principe</drammar:quale_originalTerm>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">{n#07498573} prince</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#ExtRef_room -->
+
+    <owl:NamedIndividual rdf:about="&drammar;ExtRef_room">
+        <rdf:type rdf:resource="&drammar;ExternalRefEntity"/>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">http://multisemcor.fbk.eu/frameset2.php?language=english&amp;sense_number=n_03250788</drammar:quale_WordNetSense>
+        <drammar:quale_originalTerm rdf:datatype="&xsd;string">stanza</drammar:quale_originalTerm>
+        <drammar:quale_WordNetSense rdf:datatype="&xsd;string">{n#03250788} room</drammar:quale_WordNetSense>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Fear -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Fear">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Fear-confirmed -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Fear-confirmed">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ghost_Of_Father_Discover -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ghost_Of_Father_Discover">
+        <rdf:type rdf:resource="&drammar;AgentInUnit"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Ghost_of_Father"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit_Discover"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ghost_Of_Father_P_H_Understand -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ghost_Of_Father_P_H_Understand">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Ghost_of_Father"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Understand"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ghost_Of_Father__in_P_H_Unmask -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ghost_Of_Father__in_P_H_Unmask">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Ghost_of_Father"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Unmask"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ghost_of_Father -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ghost_of_Father">
+        <rdf:type rdf:resource="&drammar;Agent"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">The Ghost of Hamlet&apos;s Father</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_ghost"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ghost_of_Father_P_H_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ghost_of_Father_P_H_Revenge">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Ghost_of_Father"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Revenge"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Gloating -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Gloating">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Goal_Claudius_Reign -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Goal_Claudius_Reign">
+        <rdf:type rdf:resource="&drammar;Goal"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Claudius wants to maintain his reign. </drammar:freeDescription>
+        <drammar:Goal_type rdf:datatype="&xsd;string">Maintainance</drammar:Goal_type>
+        <drammar:isDescribedBy rdf:resource="&www;GS_C_Reign"/>
+        <drammar:isAchievedBy rdf:resource="&drammar;P_C_Reign"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Goal_Hamlet_AskingRethorically -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Goal_Hamlet_AskingRethorically">
+        <rdf:type rdf:resource="&drammar;Goal"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet wants to ask to Ophelia about Polonius&apos; Location</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet wants to ask to Ophelia about Polonius&apos; Location</drammar:freeDescription>
+        <drammar:Goal_type rdf:datatype="&xsd;string">Perform</drammar:Goal_type>
+        <drammar:Goal_achievement rdf:datatype="&xsd;boolean">true</drammar:Goal_achievement>
+        <drammar:isDescribedBy rdf:resource="&www;GS_H_AskingRethorically"/>
+        <drammar:inConflictWith rdf:resource="&drammar;Goal_Ophelia_Lying"/>
+        <drammar:isAchievedBy rdf:resource="&drammar;P_H_AskR"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Goal_Hamlet_Discover -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Goal_Hamlet_Discover">
+        <rdf:type rdf:resource="&drammar;Goal"/>
+        <drammar:Goal_type rdf:datatype="&xsd;string">Achievement</drammar:Goal_type>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet wants to understand Claudio&apos;s fault</drammar:freeDescription>
+        <drammar:Goal_achievement rdf:datatype="&xsd;boolean">true</drammar:Goal_achievement>
+        <drammar:isDescribedBy rdf:resource="&www;GS_H_Discover"/>
+        <drammar:isAchievedBy rdf:resource="&drammar;P_H_Understand"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Goal_Hamlet_KillClaudius -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Goal_Hamlet_KillClaudius">
+        <rdf:type rdf:resource="&drammar;Goal"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet wants to Kill Claudius</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet wants to kill Claudius</drammar:freeDescription>
+        <drammar:Goal_type rdf:datatype="&xsd;string">Perform</drammar:Goal_type>
+        <drammar:Goal_achievement rdf:datatype="&xsd;boolean">true</drammar:Goal_achievement>
+        <drammar:isDescribedBy rdf:resource="&www;GS_H_Kill_C"/>
+        <drammar:inConflictWith rdf:resource="&drammar;Goal_Claudius_Reign"/>
+        <drammar:isAchievedBy rdf:resource="&drammar;P_H_Kill_Claudius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Goal_Hamlet_LearningHonesty -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Goal_Hamlet_LearningHonesty">
+        <rdf:type rdf:resource="&drammar;Goal"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet wants to learn if Ophelia is truly honest</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet wants to learn if Ophelia is truly honest</drammar:freeDescription>
+        <drammar:Goal_type rdf:datatype="&xsd;string">Query</drammar:Goal_type>
+        <drammar:Goal_achievement rdf:datatype="&xsd;boolean">false</drammar:Goal_achievement>
+        <drammar:isDescribedBy rdf:resource="&www;GS_H_LearningHonesty"/>
+        <drammar:isAchievedBy rdf:resource="&drammar;P_H_LearningHonesty"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Goal_Ophelia_Lying -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Goal_Ophelia_Lying">
+        <rdf:type rdf:resource="&drammar;Goal"/>
+        <rdfs:label rdf:datatype="&xsd;string">Ophelia wants to lie to Hamlet about Polonius&apos; Location</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Ophelia wants to lie to Hamlet about Polonius&apos; location.</drammar:freeDescription>
+        <drammar:Goal_type rdf:datatype="&xsd;string">Perform</drammar:Goal_type>
+        <drammar:Goal_achievement rdf:datatype="&xsd;boolean">true</drammar:Goal_achievement>
+        <drammar:isDescribedBy rdf:resource="&www;GS_O_Lying"/>
+        <drammar:inConflictWith rdf:resource="&drammar;Goal_Hamlet_LearningHonesty"/>
+        <drammar:isAchievedBy rdf:resource="&drammar;P_O_Lie"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Gratitude -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Gratitude">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet">
+        <rdf:type rdf:resource="&drammar;Agent"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet Prince of Denmark</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet Prince of Denmark</drammar:freeDescription>
+        <drammar:intends rdf:resource="&www;P_H_AdvisingOpheliaNunnery"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_prince"/>
+        <drammar:hasGoal rdf:resource="&drammar;Goal_Hamlet_AskingRethorically"/>
+        <drammar:hasGoal rdf:resource="&drammar;Goal_Hamlet_KillClaudius"/>
+        <drammar:hasGoal rdf:resource="&drammar;Goal_Hamlet_LearningHonesty"/>
+        <drammar:intends rdf:resource="&drammar;P_H_AskR"/>
+        <drammar:intends rdf:resource="&drammar;P_H_Kill_Claudius"/>
+        <drammar:intends rdf:resource="&drammar;P_H_LearningHonesty"/>
+        <drammar:intends rdf:resource="&drammar;P_H_Revenge"/>
+        <drammar:intends rdf:resource="&drammar;P_H_Send_O_Nunnery"/>
+        <drammar:intends rdf:resource="&drammar;P_H_Understand"/>
+        <drammar:intends rdf:resource="&drammar;P_H_Unmask"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_17 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_17">
+        <rdf:type rdf:resource="&drammar;AgentInUnit"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit17_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_Discover -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_Discover">
+        <rdf:type rdf:resource="&drammar;AgentInUnit"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit_Discover"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_Honesty -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_Honesty">
+        <rdf:type rdf:resource="&drammar;Value"/>
+        <rdfs:label rdf:datatype="&xsd;string">Honesty Value for Hamlet</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet has the value Honesty. </drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&www;VS_H_Honesty"/>
+        <drammar:isValueOf rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_Kill -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_Kill">
+        <rdf:type rdf:resource="&drammar;AgentInUnit"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit_Kill"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_P_H_AskR -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_P_H_AskR">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_AskR"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_P_H_Kill_Claudius -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_P_H_Kill_Claudius">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Kill_Claudius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_P_H_LearningHonesty -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_P_H_LearningHonesty">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_LearningHonesty"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_P_H_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_P_H_Revenge">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Revenge"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_P_H_Understand -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_P_H_Understand">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Understand"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_P_O_008 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_P_O_008">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_O_Lie"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;AgentInScene"/>
+        <drammar:featuresAgentInPlan rdf:resource="&drammar;Hamlet_P_H_LearningHonesty"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_TL -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_TL">
+        <rdf:type rdf:resource="&drammar;Timeline"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet discovers Claudius&apos; fellony and avenges his Father</drammar:freeDescription>
+        <drammar:containsOLEUnit rdf:resource="&www;OLE_Unit_13-16"/>
+        <drammar:containsOLEUnit rdf:resource="&drammar;OLE_Unit_17"/>
+        <drammar:containsOLEUnit rdf:resource="&drammar;OLE_Unit_Discover"/>
+        <drammar:containsOLEUnit rdf:resource="&drammar;OLE_Unit_Kill"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_in_P_H_Send_O_Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_in_P_H_Send_O_Nunnery">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Send_O_Nunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hamlet_in_P_H_Unmask -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hamlet_in_P_H_Unmask">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Hamlet"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Unmask"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Happy-for -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Happy-for">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hate -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hate">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Hope -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Hope">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#I_Ask_U17 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;I_Ask_U17">
+        <rdf:type rdf:resource="&drammar;ActionInUnit"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet asks to Ophelia &quot;Where is your father?&quot;</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet asks to Ophelia &apos;Where is your father?&apos;</drammar:freeDescription>
+        <drammar:hasMessage rdf:datatype="&xsd;string">Where is your father?</drammar:hasMessage>
+        <drammar:isDescribedBy rdf:resource="&drammar;PS_questioning_01"/>
+        <drammar:featuresProcess rdf:resource="&drammar;Process_Asking"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit17_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#I_Discover -->
+
+    <owl:NamedIndividual rdf:about="&drammar;I_Discover">
+        <rdf:type rdf:resource="&drammar;ActionInUnit"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet discovers that Claudius has killed the King, his father.</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&drammar;PS_Becoming_aware_01"/>
+        <drammar:featuresProcess rdf:resource="&drammar;Process_Discover"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit_Discover"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#I_Kill -->
+
+    <owl:NamedIndividual rdf:about="&drammar;I_Kill">
+        <rdf:type rdf:resource="&drammar;ActionInUnit"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet kills Claudius</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&www;PS_killing_09"/>
+        <drammar:featuresProcess rdf:resource="&drammar;Process_Killing"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit_Kill"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#I_Lie_U17 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;I_Lie_U17">
+        <rdf:type rdf:resource="&drammar;ActionInUnit"/>
+        <rdfs:label rdf:datatype="&xsd;string">Ophelia answers at Hamlet &quot;At Home, my Lord&quot;</rdfs:label>
+        <drammar:hasMessage rdf:datatype="&xsd;string">At home, my Lord</drammar:hasMessage>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Ophelia answers at Hamlet &apos;At Home, my Lord&apos;</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&drammar;PS_prevarication_01"/>
+        <drammar:featuresProcess rdf:resource="&drammar;Process_Lying"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit17_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Joy -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Joy">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#King -->
+
+    <owl:NamedIndividual rdf:about="&drammar;King">
+        <rdf:type rdf:resource="&drammar;Object"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Role of King (abstract object)</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_king"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#King_P_C_Reign -->
+
+    <owl:NamedIndividual rdf:about="&drammar;King_P_C_Reign">
+        <rdf:type rdf:resource="&drammar;ObjectInPlan"/>
+        <drammar:featuresObject rdf:resource="&drammar;King"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_C_Reign"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Like -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Like">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Location_Polonius -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Location_Polonius">
+        <rdf:type rdf:resource="&drammar;Object"/>
+        <rdfs:label rdf:datatype="&xsd;string">The Polonius&apos; Location</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Polonius&apos; Location (abstract object)</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_position"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Location_Polonius_17 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Location_Polonius_17">
+        <rdf:type rdf:resource="&drammar;ObjectInUnit"/>
+        <drammar:featuresObject rdf:resource="&drammar;Location_Polonius"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit17_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Location_Polonius_P_H_AskR -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Location_Polonius_P_H_AskR">
+        <rdf:type rdf:resource="&drammar;ObjectInPlan"/>
+        <drammar:featuresObject rdf:resource="&drammar;Location_Polonius"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_AskR"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Love -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Love">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Message_Hamlet -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Message_Hamlet">
+        <rdf:type rdf:resource="&drammar;Object"/>
+        <rdfs:label rdf:datatype="&xsd;string">&quot;Where is your Father?&quot;</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">The line &apos;Where is your father?&apos; QUESTA DESCRIZIONE E&apos; SBAGLIATA IN TEORIA QUI SI INTENDE L&apos;INSIEME DI TUTTI I MESSAGGI DI AMLETO</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_message"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Message_Hamlet_17 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Message_Hamlet_17">
+        <rdf:type rdf:resource="&drammar;ObjectInUnit"/>
+        <drammar:hasMessage rdf:datatype="&xsd;string">Where is your father?</drammar:hasMessage>
+        <drammar:featuresObject rdf:resource="&drammar;Message_Hamlet"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit17_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Message_Hamlet_P_H_AskR -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Message_Hamlet_P_H_AskR">
+        <rdf:type rdf:resource="&drammar;ObjectInPlan"/>
+        <drammar:hasMessage rdf:datatype="&xsd;string">Where is your father?</drammar:hasMessage>
+        <drammar:featuresObject rdf:resource="&drammar;Message_Hamlet"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_AskR"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Message_Ophelia -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Message_Ophelia">
+        <rdf:type rdf:resource="&drammar;Object"/>
+        <rdfs:label rdf:datatype="&xsd;string">&quot;At Home, my Lord&quot;</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">The line &apos;At home, My Lord&apos;</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_message"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Message_Ophelia_17 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Message_Ophelia_17">
+        <rdf:type rdf:resource="&drammar;ObjectInUnit"/>
+        <drammar:hasMessage rdf:datatype="&xsd;string">At home, my Lord</drammar:hasMessage>
+        <drammar:featuresObject rdf:resource="&drammar;Message_Ophelia"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit17_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_A_ask_01_in_P_H_AskR -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_A_ask_01_in_P_H_AskR">
+        <rdf:type rdf:resource="&drammar;OLE_Action"/>
+        <drammar:hasData_Action rdf:resource="&drammar;A_ask_01_in_P_H_AskR_Asking"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_A_awa_01_in_P_H_Understand -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_A_awa_01_in_P_H_Understand">
+        <rdf:type rdf:resource="&drammar;OLE_Action"/>
+        <drammar:hasData_Action rdf:resource="&drammar;A_awa_01_in_P_H_Understand_Discover"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_A_kil_01_in_P_H_Kill_Claudius -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_A_kil_01_in_P_H_Kill_Claudius">
+        <rdf:type rdf:resource="&drammar;OLE_Action"/>
+        <drammar:hasData_Action rdf:resource="&drammar;A_kil_01_in_P_H_Kill_Claudius_Killing"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_A_men_03_in_P_O_Lie -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_A_men_03_in_P_O_Lie">
+        <rdf:type rdf:resource="&drammar;OLE_Action"/>
+        <drammar:hasData_Action rdf:resource="&drammar;A_men_01_in_P_O_Lie_Lying"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_P_H_AskR_in_P_H_LearningHonesty -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_P_H_AskR_in_P_H_LearningHonesty">
+        <rdf:type rdf:resource="&drammar;OLE_Plan"/>
+        <drammar:precedes rdf:resource="&drammar;OLE_P_O_Truth_in_P_H_LearningHonesty"/>
+        <drammar:hasData_Plan rdf:resource="&drammar;P_H_AskR"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_P_H_Kill_Claudius_in_P_H_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_P_H_Kill_Claudius_in_P_H_Revenge">
+        <rdf:type rdf:resource="&drammar;OLE_Plan"/>
+        <drammar:hasData_Plan rdf:resource="&drammar;P_H_Kill_Claudius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_P_H_LearningHonesty_in_P_H_Send_O_Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_P_H_LearningHonesty_in_P_H_Send_O_Nunnery">
+        <rdf:type rdf:resource="&drammar;OLE_Plan"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">PROBLEMA:
+QUALE PIANO PRECEDE O SEGUE? BISOGNA FARE UN ALTRO PIANO?</drammar:freeDescription>
+        <drammar:hasData_Plan rdf:resource="&drammar;P_H_LearningHonesty"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_P_H_Send_O_Nunnery_in_P_H_Unmask -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_P_H_Send_O_Nunnery_in_P_H_Unmask">
+        <rdf:type rdf:resource="&drammar;OLE_Plan"/>
+        <drammar:hasData_Plan rdf:resource="&drammar;P_H_Send_O_Nunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_P_H_Understand_in_P_H_Unmask -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_P_H_Understand_in_P_H_Unmask">
+        <rdf:type rdf:resource="&drammar;OLE_Plan"/>
+        <drammar:precedes rdf:resource="&drammar;OLE_P_H_Send_O_Nunnery_in_P_H_Unmask"/>
+        <drammar:hasData_Plan rdf:resource="&drammar;P_H_Understand"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_P_H_Unmask_in_P_H_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_P_H_Unmask_in_P_H_Revenge">
+        <rdf:type rdf:resource="&drammar;OLE_Plan"/>
+        <drammar:precedes rdf:resource="&drammar;OLE_P_H_Kill_Claudius_in_P_H_Revenge"/>
+        <drammar:hasData_Plan rdf:resource="&drammar;P_H_Unmask"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_P_O_Truth_in_P_H_LearningHonesty -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_P_O_Truth_in_P_H_LearningHonesty">
+        <rdf:type rdf:resource="&drammar;OLE_Plan"/>
+        <drammar:hasData_Plan rdf:resource="&drammar;P_O_Truth"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_Unit_17 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_Unit_17">
+        <rdf:type rdf:resource="&drammar;OLE_Unit"/>
+        <drammar:precedes rdf:resource="&drammar;OLE_Unit_Kill"/>
+        <drammar:hasData_Unit rdf:resource="&drammar;Unit17_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_Unit_Discover -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_Unit_Discover">
+        <rdf:type rdf:resource="&drammar;OLE_Unit"/>
+        <drammar:precedes rdf:resource="&www;OLE_Unit_13-16"/>
+        <drammar:hasData_Unit rdf:resource="&drammar;Unit_Discover"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#OLE_Unit_Kill -->
+
+    <owl:NamedIndividual rdf:about="&drammar;OLE_Unit_Kill">
+        <rdf:type rdf:resource="&drammar;OLE_Unit"/>
+        <drammar:hasData_Unit rdf:resource="&drammar;Unit_Kill"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ophelia -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ophelia">
+        <rdf:type rdf:resource="&drammar;Agent"/>
+        <rdfs:label rdf:datatype="&xsd;string">Ophelia, Daughter of Polonius</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Ophelia, Daughter of Polonius</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_girlfriend"/>
+        <drammar:hasGoal rdf:resource="&drammar;Goal_Ophelia_Lying"/>
+        <drammar:intends rdf:resource="&drammar;P_O_Lie"/>
+        <drammar:intends rdf:resource="&drammar;P_O_Truth"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ophelia_17 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ophelia_17">
+        <rdf:type rdf:resource="&drammar;AgentInUnit"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit17_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ophelia_Honesty -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ophelia_Honesty">
+        <rdf:type rdf:resource="&drammar;Value"/>
+        <rdfs:label rdf:datatype="&xsd;string">Honesty Value for Ophelia</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Ophelia has the value Honesty.</drammar:freeDescription>
+        <drammar:isDescribedBy rdf:resource="&www;VS_O_Honesty"/>
+        <drammar:isValueOf rdf:resource="&drammar;Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ophelia_Honesty_AtStake -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ophelia_Honesty_AtStake">
+        <rdf:type rdf:resource="&drammar;ValueAtStake"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Ophelia&apos;s Honesty is at Stake.</drammar:freeDescription>
+        <atStake rdf:datatype="&xsd;boolean">true</atStake>
+        <featuresValue rdf:resource="&drammar;Ophelia_Honesty"/>
+        <isInPlanState rdf:resource="&drammar;PState_Eff_P_O_Lie"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ophelia_P_H_AskR -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ophelia_P_H_AskR">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_AskR"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ophelia_P_H_LearningHonesty -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ophelia_P_H_LearningHonesty">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_LearningHonesty"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ophelia_P_O_Lie -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ophelia_P_O_Lie">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_O_Lie"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ophelia_P_O_Truth -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ophelia_P_O_Truth">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_O_Truth"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ophelia_Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ophelia_Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;AgentInScene"/>
+        <drammar:featuresAgentInPlan rdf:resource="&drammar;Ophelia_P_O_Lie"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Ophelia_in_P_H_Send_O_Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Ophelia_in_P_H_Send_O_Nunnery">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Ophelia"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Send_O_Nunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PFCTL_kil_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PFCTL_kil_01">
+        <rdf:type rdf:resource="&www;FactualProcess"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet&apos;s father killed by Claudius in Plan Hamlet&apos;s Revenge
+</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string"> Hamlet&apos;s father killed by Claudius in Plan Hamlet&apos;s Revenge</drammar:freeDescription>
+        <Process_status rdf:datatype="&xsd;boolean">true</Process_status>
+        <drammar:isDescribedBy rdf:resource="&drammar;PS_killing_01"/>
+        <drammar:featuresProcess rdf:resource="&drammar;Process_Killing"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PS_Becoming_aware_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PS_Becoming_aware_01">
+        <rdf:type rdf:resource="&drammar;ProcessSchema"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Discover_Becoming_aware"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Cognizer_PS_becoming_aware_01"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Phenomenon_PS_becoming_aware_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PS_killing_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PS_killing_01">
+        <rdf:type rdf:resource="&drammar;ProcessSchema"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Claudius kills Hamlet&apos;s father</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Kill_Killing"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Killer_PS_killing_01"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Means_PS_killing_01"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Victim_SS_killing_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PS_prevarication_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PS_prevarication_01">
+        <rdf:type rdf:resource="&drammar;ProcessSchema"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Lie_Prevarication"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Addressee_PS_prevarication_01"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Speaker_PS_PFCTL_men_01"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Topic_PS_PFCTL_men_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PS_questioning_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PS_questioning_01">
+        <rdf:type rdf:resource="&drammar;ProcessSchema"/>
+        <rdfs:comment>PS = Process Schema
+A_ask_01 is the Action
+P_H_007 is the Plan of the Action
+Asking is the frame involved</rdfs:comment>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Ask_Questioning"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Addressee_PS_questioning_01"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Message_PS_questioning_01"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Speaker_PS_questioning_01"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Topic_PS_questioning_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Eff_P_C_Reign -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Eff_P_C_Reign">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;SOA_rei_02_in_P_C_Reign"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Eff_P_H_AskR -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Eff_P_H_AskR">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;Done_A_ask_01_in_P_H_AskR_Asking"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Eff_P_H_Kill_Claudius -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Eff_P_H_Kill_Claudius">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;SOA_dea_01_in_P_H_Kill_Claudius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Eff_P_H_LearningHonesty -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Eff_P_H_LearningHonesty">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;B_H_O_Honest"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Eff_P_H_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Eff_P_H_Revenge">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;B_H_Murder_Father_Avenged"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Eff_P_H_Send_O_Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Eff_P_H_Send_O_Nunnery">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&www;B_H_Opfelia_go_to_Nunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Eff_P_H_Understand -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Eff_P_H_Understand">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;B_H_Claudius_killed_Father"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Eff_P_H_Unmask -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Eff_P_H_Unmask">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;B_H_Gosth_soul_Father"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Eff_P_O_Lie -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Eff_P_O_Lie">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;B_O_B_H_Polonius_Home"/>
+        <drammar:hasSetMember rdf:resource="&drammar;Ophelia_Honesty_AtStake"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Eff_P_O_Truth -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Eff_P_O_Truth">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasPlanEffect rdf:resource="&drammar;B_H_O_Honest"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Pre_P_C_Reign -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Pre_P_C_Reign">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;SOA_rei_02_in_P_C_Reign"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Pre_P_H_AskR -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Pre_P_H_AskR">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;B_H_Polonius_in_Room"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Pre_P_H_Kill_Claudius -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Pre_P_H_Kill_Claudius">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;SOA_liv_01_in_P_H_Kill_Claudius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Pre_P_H_LearningHonesty -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Pre_P_H_LearningHonesty">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;B_H_B_O_Polonius_in_Room"/>
+        <drammar:hasSetMember rdf:resource="&drammar;B_H_Polonius_in_Room"/>
+        <drammar:hasSetMember rdf:resource="&drammar;Ophelia_Honesty_AtStake"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Pre_P_H_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Pre_P_H_Revenge">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <rdfs:label xml:lang="en">PState_Pre_P_H_Revenge</rdfs:label>
+        <drammar:hasSetMember rdf:resource="&drammar;B_H_Murder_Father_Avenged_not"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Pre_P_H_Send_O_Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Pre_P_H_Send_O_Nunnery">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;SOA_sta_02_in_P_H_Send_O_Nunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Pre_P_H_Understand -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Pre_P_H_Understand">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;B_H_Claudius_killed_Father_not"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Pre_P_H_Unmask -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Pre_P_H_Unmask">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;B_H_Gosth_not_soul_Father"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Pre_P_O_Lie -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Pre_P_O_Lie">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasSetMember rdf:resource="&drammar;B_O_Polonius_in_Room"/>
+        <drammar:hasPlanPrecondition rdf:resource="&drammar;Done_A_ask_01_in_P_H_AskR_Asking"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#PState_Pre_P_O_Truth -->
+
+    <owl:NamedIndividual rdf:about="&drammar;PState_Pre_P_O_Truth">
+        <rdf:type rdf:resource="&drammar;PlanState"/>
+        <drammar:hasPlanPrecondition rdf:resource="&drammar;Done_A_ask_01_in_P_H_AskR_Asking"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#P_C_Reign -->
+
+    <owl:NamedIndividual rdf:about="&drammar;P_C_Reign">
+        <rdf:type rdf:resource="&drammar;Plan"/>
+        <rdfs:label rdf:datatype="&xsd;string">Claudius intends to maintain his Reign.</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Claudius intends to maintain his Reign. </drammar:freeDescription>
+        <drammar:hasPlanEffect rdf:resource="&drammar;PState_Eff_P_C_Reign"/>
+        <drammar:hasPlanPrecondition rdf:resource="&drammar;PState_Pre_P_C_Reign"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#P_H_AskR -->
+
+    <owl:NamedIndividual rdf:about="&drammar;P_H_AskR">
+        <rdf:type rdf:resource="&drammar;Plan"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet asking rethorically Ophelia about Polonius&apos; location.</rdfs:label>
+        <drammar:Plan_type rdf:datatype="&xsd;string">Base</drammar:Plan_type>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet intend to ask rhetorically Ophelia about Polonius&apos; location</drammar:freeDescription>
+        <drammar:containsOLEAction rdf:resource="&drammar;OLE_A_ask_01_in_P_H_AskR"/>
+        <drammar:hasPlanEffect rdf:resource="&drammar;PState_Eff_P_H_AskR"/>
+        <drammar:hasPlanPrecondition rdf:resource="&drammar;PState_Pre_P_H_AskR"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#P_H_Kill_Claudius -->
+
+    <owl:NamedIndividual rdf:about="&drammar;P_H_Kill_Claudius">
+        <rdf:type rdf:resource="&drammar;Plan"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet intends kill Claudius</rdfs:label>
+        <drammar:Plan_type rdf:datatype="&xsd;string">Base</drammar:Plan_type>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet intends kill Claudius</drammar:freeDescription>
+        <drammar:containsOLEAction rdf:resource="&drammar;OLE_A_kil_01_in_P_H_Kill_Claudius"/>
+        <drammar:hasPlanEffect rdf:resource="&drammar;PState_Eff_P_H_Kill_Claudius"/>
+        <drammar:hasPlanPrecondition rdf:resource="&drammar;PState_Pre_P_H_Kill_Claudius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#P_H_LearningHonesty -->
+
+    <owl:NamedIndividual rdf:about="&drammar;P_H_LearningHonesty">
+        <rdf:type rdf:resource="&drammar;Plan"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet testing Ophelia for honesty.</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet intends to test Ophelia for honesty</drammar:freeDescription>
+        <drammar:Plan_type rdf:datatype="&xsd;string">Recursive</drammar:Plan_type>
+        <drammar:containsOLEPlan rdf:resource="&drammar;OLE_P_H_AskR_in_P_H_LearningHonesty"/>
+        <containsFirstOLEPlan rdf:resource="&drammar;OLE_P_H_AskR_in_P_H_LearningHonesty"/>
+        <containsLastOLEPlan rdf:resource="&drammar;OLE_P_O_Truth_in_P_H_LearningHonesty"/>
+        <drammar:containsOLEPlan rdf:resource="&drammar;OLE_P_O_Truth_in_P_H_LearningHonesty"/>
+        <drammar:hasPlanEffect rdf:resource="&drammar;PState_Eff_P_H_LearningHonesty"/>
+        <drammar:hasPlanPrecondition rdf:resource="&drammar;PState_Pre_P_H_LearningHonesty"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#P_H_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;P_H_Revenge">
+        <rdf:type rdf:resource="&drammar;Plan"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet intends to avenge his Father&apos;s Assassination. </rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet intends to avenge his Father&apos;s Assassination</drammar:freeDescription>
+        <drammar:Plan_type rdf:datatype="&xsd;string">Recursive</drammar:Plan_type>
+        <rdfs:comment rdf:datatype="&xsd;string">This is the overall main plan of Hamlet as stated in Polti situation 4 A1 Revenge</rdfs:comment>
+        <drammar:containsOLEPlan rdf:resource="&drammar;OLE_P_H_Kill_Claudius_in_P_H_Revenge"/>
+        <containsLastOLEPlan rdf:resource="&drammar;OLE_P_H_Kill_Claudius_in_P_H_Revenge"/>
+        <drammar:containsOLEPlan rdf:resource="&drammar;OLE_P_H_Unmask_in_P_H_Revenge"/>
+        <containsFirstOLEPlan rdf:resource="&drammar;OLE_P_H_Unmask_in_P_H_Revenge"/>
+        <drammar:hasPlanEffect rdf:resource="&drammar;PState_Eff_P_H_Revenge"/>
+        <drammar:hasPlanPrecondition rdf:resource="&drammar;PState_Pre_P_H_Revenge"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#P_H_Send_O_Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&drammar;P_H_Send_O_Nunnery">
+        <rdf:type rdf:resource="&drammar;Plan"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet intends to send Ophelia to the nunnery</drammar:freeDescription>
+        <drammar:Plan_type rdf:datatype="&xsd;string">Recursive</drammar:Plan_type>
+        <drammar:containsOLEPlan rdf:resource="&www;OLE_P_H_AdvisingOpheliaNunnery_in_P_H_Send_O_Nunnery"/>
+        <containsFirstOLEPlan rdf:resource="&www;OLE_P_H_AdvisingOpheliaNunnery_in_P_H_Send_O_Nunnery"/>
+        <drammar:containsOLEPlan rdf:resource="&drammar;OLE_P_H_LearningHonesty_in_P_H_Send_O_Nunnery"/>
+        <containsLastOLEPlan rdf:resource="&drammar;OLE_P_H_LearningHonesty_in_P_H_Send_O_Nunnery"/>
+        <drammar:hasPlanEffect rdf:resource="&drammar;PState_Eff_P_H_Send_O_Nunnery"/>
+        <drammar:hasPlanPrecondition rdf:resource="&drammar;PState_Pre_P_H_Send_O_Nunnery"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#P_H_Understand -->
+
+    <owl:NamedIndividual rdf:about="&drammar;P_H_Understand">
+        <rdf:type rdf:resource="&drammar;Plan"/>
+        <drammar:Plan_type rdf:datatype="&xsd;string">Base</drammar:Plan_type>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet want to know if Claudius is his father&apos;s murderer</drammar:freeDescription>
+        <drammar:containsOLEAction rdf:resource="&drammar;OLE_A_awa_01_in_P_H_Understand"/>
+        <drammar:hasPlanEffect rdf:resource="&drammar;PState_Eff_P_H_Understand"/>
+        <drammar:hasPlanPrecondition rdf:resource="&drammar;PState_Pre_P_H_Understand"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#P_H_Unmask -->
+
+    <owl:NamedIndividual rdf:about="&drammar;P_H_Unmask">
+        <rdf:type rdf:resource="&drammar;Plan"/>
+        <rdfs:label rdf:datatype="&xsd;string">Hamlet intends to Unmask Claudio&apos;s fault</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet intends to Unmask the murder of his father</drammar:freeDescription>
+        <drammar:Plan_type rdf:datatype="&xsd;string">Recursive</drammar:Plan_type>
+        <drammar:containsOLEPlan rdf:resource="&drammar;OLE_P_H_Send_O_Nunnery_in_P_H_Unmask"/>
+        <containsLastOLEPlan rdf:resource="&drammar;OLE_P_H_Send_O_Nunnery_in_P_H_Unmask"/>
+        <drammar:containsOLEPlan rdf:resource="&drammar;OLE_P_H_Understand_in_P_H_Unmask"/>
+        <containsFirstOLEPlan rdf:resource="&drammar;OLE_P_H_Understand_in_P_H_Unmask"/>
+        <drammar:hasPlanEffect rdf:resource="&drammar;PState_Eff_P_H_Unmask"/>
+        <drammar:hasPlanPrecondition rdf:resource="&drammar;PState_Pre_P_H_Unmask"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#P_O_Lie -->
+
+    <owl:NamedIndividual rdf:about="&drammar;P_O_Lie">
+        <rdf:type rdf:resource="&drammar;Plan"/>
+        <rdfs:label rdf:datatype="&xsd;string">Ophelia lying about Polonius&apos; location</rdfs:label>
+        <drammar:Plan_type rdf:datatype="&xsd;string">Base</drammar:Plan_type>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Ophelia intends to lie about Polonius&apos; location</drammar:freeDescription>
+        <drammar:containsOLEAction rdf:resource="&drammar;OLE_A_men_03_in_P_O_Lie"/>
+        <drammar:hasPlanEffect rdf:resource="&drammar;PState_Eff_P_O_Lie"/>
+        <drammar:hasPlanPrecondition rdf:resource="&drammar;PState_Pre_P_O_Lie"/>
+        <drammar:isInScene rdf:resource="&drammar;Scene_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#P_O_Truth -->
+
+    <owl:NamedIndividual rdf:about="&drammar;P_O_Truth">
+        <rdf:type rdf:resource="&drammar;Plan"/>
+        <rdfs:label rdf:datatype="&xsd;string">Ophelia tells the truth to Hamlet about Polonius&apos; location</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Ophelia intends to tell the truth to Hamlet about Polonius&apos; location</drammar:freeDescription>
+        <drammar:hasPlanEffect rdf:resource="&drammar;PState_Eff_P_O_Truth"/>
+        <drammar:hasPlanPrecondition rdf:resource="&drammar;PState_Pre_P_O_Truth"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Pity -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Pity">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Poison -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Poison">
+        <rdf:type rdf:resource="&drammar;Object"/>
+        <rdfs:label rdf:datatype="&xsd;string">The Poison that kills Hamlet&apos;s Father</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">The poison that kills Hamlet&apos; Father</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_poison"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Poison_P_H_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Poison_P_H_Revenge">
+        <rdf:type rdf:resource="&drammar;ObjectInPlan"/>
+        <rdfs:comment rdf:datatype="&xsd;string">The pioson that killed Hamlet&apos;s Father
+</rdfs:comment>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Revenge"/>
+        <drammar:featuresObject rdf:resource="&drammar;Poison"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Poison_P_H_Understand -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Poison_P_H_Understand">
+        <rdf:type rdf:resource="&drammar;ObjectInPlan"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_Understand"/>
+        <drammar:featuresObject rdf:resource="&drammar;Poison"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Poison_Unit_Discover -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Poison_Unit_Discover">
+        <rdf:type rdf:resource="&drammar;ObjectInUnit"/>
+        <drammar:featuresObject rdf:resource="&drammar;Poison"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit_Discover"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Polonius -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Polonius">
+        <rdf:type rdf:resource="&drammar;Agent"/>
+        <rdfs:label rdf:datatype="&xsd;string">Polonius, Lord Chamberlain</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Polonius, Lord Chamberlain</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_father"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Polonius_17 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Polonius_17">
+        <rdf:type rdf:resource="&drammar;AgentInUnit"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Polonius"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit17_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Polonius_P_H_AskR -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Polonius_P_H_AskR">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_AskR"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Polonius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Polonius_P_H_LearningHonesty -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Polonius_P_H_LearningHonesty">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_LearningHonesty"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Polonius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Polonius_P_O_Lie -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Polonius_P_O_Lie">
+        <rdf:type rdf:resource="&drammar;AgentInPlan"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_O_Lie"/>
+        <drammar:featuresAgent rdf:resource="&drammar;Polonius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Pride -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Pride">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Process_Asking -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Process_Asking">
+        <rdf:type rdf:resource="&drammar;Process"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Process_Discover -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Process_Discover">
+        <rdf:type rdf:resource="&drammar;Process"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Process_Killing -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Process_Killing">
+        <rdf:type rdf:resource="&drammar;Process"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Process_Lying -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Process_Lying">
+        <rdf:type rdf:resource="&drammar;Process"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Process_Revenge -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Process_Revenge">
+        <rdf:type rdf:resource="&drammar;Process"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Addressee_PS_prevarication_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Addressee_PS_prevarication_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Addressee_Prevarication"/>
+        <drammar:hasFiller rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Addressee_PS_questioning_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Addressee_PS_questioning_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Addresse_Questioning"/>
+        <drammar:hasFiller rdf:resource="&drammar;Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Agent_SS_posture_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Agent_SS_posture_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <rdfs:comment>One of the roles of the Schema for the state of affairs STA_01. 
+The Agent.</rdfs:comment>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Agent_Posture"/>
+        <drammar:hasFiller rdf:resource="&drammar;Polonius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Agent_SS_posture_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Agent_SS_posture_02">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Agent_Posture"/>
+        <drammar:hasFiller rdf:resource="&drammar;Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Agent_SS_posture_04 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Agent_SS_posture_04">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Agent_Posture"/>
+        <drammar:hasFiller rdf:resource="&drammar;Polonius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Avenger_SS_revenge_01_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Avenger_SS_revenge_01_02">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Avenger_Revenge"/>
+        <drammar:hasFiller rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Cognizer_PS_becoming_aware_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Cognizer_PS_becoming_aware_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Cognizer_Becoming_aware"/>
+        <drammar:hasFiller rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Governed_SS_leadership_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Governed_SS_leadership_02">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Environment</drammar:Role_fillerDrammarType>
+        <drammar:hasFiller rdf:resource="&drammar;Denmark"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Governed_Leadership"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Injured_Party_SS_revenge_01_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Injured_Party_SS_revenge_01_02">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Injured_party_Revenge"/>
+        <drammar:hasFiller rdf:resource="&drammar;Ghost_of_Father"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Injury_SS_revenge_01_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Injury_SS_revenge_01_02">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">State Of Affair</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Injury_Revenge"/>
+        <drammar:hasFiller rdf:resource="&drammar;PFCTL_kil_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Killer_PS_killing_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Killer_PS_killing_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <rdfs:comment rdf:datatype="&xsd;string">Claudio nel ruolo dell&apos;assassino nell&apos;avvelenamento di Amleto_Padre</rdfs:comment>
+        <drammar:hasFiller rdf:resource="&drammar;Claudius"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Killer_Killing"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Leader_SS_leadership_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Leader_SS_leadership_02">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:hasFiller rdf:resource="&drammar;Claudius"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Leader_Leadership"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Location_SS_posture_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Location_SS_posture_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Environment</drammar:Role_fillerDrammarType>
+        <rdfs:comment>One of the roles of the Schema for the state of affairs STA_01. 
+The Location.</rdfs:comment>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Location_Posture"/>
+        <drammar:hasFiller rdf:resource="&drammar;Room_NunneryScene"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Location_SS_posture_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Location_SS_posture_02">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Environment</drammar:Role_fillerDrammarType>
+        <drammar:hasFiller rdf:resource="&drammar;Elsinor"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Location_Posture"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Location_SS_posture_04 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Location_SS_posture_04">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Environment</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Location_Posture"/>
+        <drammar:hasFiller rdf:resource="&drammar;Room_Polonius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Means_PS_killing_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Means_PS_killing_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <rdfs:comment rdf:datatype="&xsd;string">Il veleno nel ruolo del mezzo che ha avvelenato il padre di Amleto</rdfs:comment>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Object</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Means_Killing"/>
+        <drammar:hasFiller rdf:resource="&drammar;Poison"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Message_PS_questioning_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Message_PS_questioning_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Object</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Message_Questioning"/>
+        <drammar:hasFiller rdf:resource="&drammar;Message_Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Offender_SS_revenge_01_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Offender_SS_revenge_01_02">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:hasFiller rdf:resource="&drammar;Claudius"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Offender_Revenge"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Phenomenon_PS_becoming_aware_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Phenomenon_PS_becoming_aware_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">State Of Affair</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Phenomenon_Becoming_aware"/>
+        <drammar:hasFiller rdf:resource="&drammar;PFCTL_kil_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Punishment_SS_revenge_01_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Punishment_SS_revenge_01_02">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">State Of Affair</drammar:Role_fillerDrammarType>
+        <drammar:hasFiller rdf:resource="&www;PFCTL_kil_09"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Punishement_Revenge"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Role_SS_leadership_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Role_SS_leadership_02">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Role_Leadership"/>
+        <drammar:hasFiller rdf:resource="&drammar;King"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Speaker_PS_PFCTL_men_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Speaker_PS_PFCTL_men_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Speaker_Prevarication"/>
+        <drammar:hasFiller rdf:resource="&drammar;Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Speaker_PS_questioning_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Speaker_PS_questioning_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Speaker_Questioning"/>
+        <drammar:hasFiller rdf:resource="&drammar;Hamlet"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Survivor_SS_surviving_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Survivor_SS_surviving_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:hasFiller rdf:resource="&drammar;Claudius"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Survivor_Surviving"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Topic_PS_PFCTL_men_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Topic_PS_PFCTL_men_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">State of affairs</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Topic_Prevarication"/>
+        <drammar:hasFiller rdf:resource="&drammar;Message_Ophelia"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Topic_PS_questioning_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Topic_PS_questioning_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Object</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Topic_Questioning"/>
+        <drammar:hasFiller rdf:resource="&drammar;Location_Polonius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Undergoer_Dead_SS_dead_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Undergoer_Dead_SS_dead_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasFiller rdf:resource="&drammar;Claudius"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_VRole_Undergoer_Dead"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Undergoer_Dead_SS_dead_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Undergoer_Dead_SS_dead_02">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_VRole_Undergoer_Dead"/>
+        <drammar:hasFiller rdf:resource="&drammar;Ghost_of_Father"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#R_Victim_SS_killing_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;R_Victim_SS_killing_01">
+        <rdf:type rdf:resource="&drammar;Role"/>
+        <drammar:Role_fillerDrammarType rdf:datatype="&xsd;string">Agent</drammar:Role_fillerDrammarType>
+        <rdfs:comment rdf:datatype="&xsd;string">Il padre di Amleto nel ruolo della vittima avvelenato da Claudio </rdfs:comment>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Victim_Killing"/>
+        <drammar:hasFiller rdf:resource="&drammar;Ghost_of_Father"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Relief -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Relief">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Reproach -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Reproach">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Resentment -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Resentment">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Room_NunneryScene -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Room_NunneryScene">
+        <rdf:type rdf:resource="&drammar;Object"/>
+        <rdfs:label rdf:datatype="&xsd;string">Room in the Elsinore Castle where Hamlet meets Ophelia</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Room in the Elsinore Castle where Hamlet meets Ophelia</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_room"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Room_NunneryScene_17 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Room_NunneryScene_17">
+        <rdf:type rdf:resource="&drammar;ObjectInUnit"/>
+        <drammar:featuresObject rdf:resource="&drammar;Room_NunneryScene"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit17_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Room_NunneryScene_P_H_AskR -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Room_NunneryScene_P_H_AskR">
+        <rdf:type rdf:resource="&drammar;ObjectInPlan"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_AskR"/>
+        <drammar:featuresObject rdf:resource="&drammar;Room_NunneryScene"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Room_NunneryScene_P_H_LearningHonesty -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Room_NunneryScene_P_H_LearningHonesty">
+        <rdf:type rdf:resource="&drammar;ObjectInPlan"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_H_LearningHonesty"/>
+        <drammar:featuresObject rdf:resource="&drammar;Room_NunneryScene"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Room_NunneryScene_P_O_Lie -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Room_NunneryScene_P_O_Lie">
+        <rdf:type rdf:resource="&drammar;ObjectInPlan"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_O_Lie"/>
+        <drammar:featuresObject rdf:resource="&drammar;Room_NunneryScene"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Room_Polonius -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Room_Polonius">
+        <rdf:type rdf:resource="&drammar;Object"/>
+        <rdfs:label rdf:datatype="&xsd;string">Polonius&apos; Home</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Polonius&apos; Home</drammar:freeDescription>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_room"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Room_Polonius_17 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Room_Polonius_17">
+        <rdf:type rdf:resource="&drammar;ObjectInUnit"/>
+        <drammar:featuresObject rdf:resource="&drammar;Room_Polonius"/>
+        <drammar:isInUnit rdf:resource="&drammar;Unit17_WhereQuestion"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Room_Polonius_P_O_Lie -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Room_Polonius_P_O_Lie">
+        <rdf:type rdf:resource="&drammar;ObjectInPlan"/>
+        <drammar:isInPlan rdf:resource="&drammar;P_O_Lie"/>
+        <drammar:featuresObject rdf:resource="&drammar;Room_Polonius"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SFCTL_dea_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SFCTL_dea_02">
+        <rdf:type rdf:resource="&www;F_StateOfAffairs"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">The Father of Hamlet is dead</drammar:freeDescription>
+        <drammar:State_status rdf:datatype="&xsd;boolean">true</drammar:State_status>
+        <drammar:isDescribedBy rdf:resource="&drammar;SS_dead_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SFCTL_rev_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SFCTL_rev_01">
+        <rdf:type rdf:resource="&www;F_StateOfAffairs"/>
+        <rdfs:label rdf:datatype="&xsd;string">The death of Hamlet&apos;s Father is not avenged</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">The death of Hamlet&apos;s Father is not avenged</drammar:freeDescription>
+        <drammar:State_status rdf:datatype="&xsd;boolean">false</drammar:State_status>
+        <drammar:isDescribedBy rdf:resource="&drammar;SS_revenge_01_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SFCTL_rev_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SFCTL_rev_02">
+        <rdf:type rdf:resource="&www;F_StateOfAffairs"/>
+        <rdfs:label rdf:datatype="&xsd;string">The death of Hamlet&apos;s Father is avenged</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">The death of Hamlet&apos;s Father is avenged</drammar:freeDescription>
+        <drammar:State_status rdf:datatype="&xsd;boolean">true</drammar:State_status>
+        <drammar:isDescribedBy rdf:resource="&drammar;SS_revenge_01_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SFCTL_sta_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SFCTL_sta_01">
+        <rdf:type rdf:resource="&www;F_StateOfAffairs"/>
+        <rdfs:label rdf:datatype="&xsd;string">Polonius is in the Room Lurking at the Nunnery Scene</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Polonius is in the Room Lurking at the Nunnery Scene</drammar:freeDescription>
+        <drammar:State_status rdf:datatype="&xsd;boolean">true</drammar:State_status>
+        <rdfs:comment>What currently happens in the CADMOS interface:
+stare/131/posture Agent(Polonius) Location(NunneryRoom)</rdfs:comment>
+        <drammar:isDescribedBy rdf:resource="&drammar;SS_posture_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SFCTL_sta_04 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SFCTL_sta_04">
+        <rdf:type rdf:resource="&www;F_StateOfAffairs"/>
+        <rdfs:label rdf:datatype="&xsd;string">Polonius is at home</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Polonius is at home.</drammar:freeDescription>
+        <drammar:State_status rdf:datatype="&xsd;boolean">true</drammar:State_status>
+        <drammar:isDescribedBy rdf:resource="&drammar;SS_posture_04"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SOA_dea_01_in_P_H_Kill_Claudius -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SOA_dea_01_in_P_H_Kill_Claudius">
+        <rdf:type rdf:resource="&drammar;StateOfAffairsInPlanState"/>
+        <rdfs:label rdf:datatype="&xsd;string">Claudius is dead because of Because Hamlet killed him</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Claudius is dead because of Because Hamlet killed him</drammar:freeDescription>
+        <drammar:State_status rdf:datatype="&xsd;boolean">true</drammar:State_status>
+        <drammar:isDescribedBy rdf:resource="&drammar;SS_dead_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SOA_liv_01_in_P_H_Kill_Claudius -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SOA_liv_01_in_P_H_Kill_Claudius">
+        <rdf:type rdf:resource="&drammar;StateOfAffairsInPlanState"/>
+        <rdfs:label rdf:datatype="&xsd;string">Claudius is alive before Hamlet kills him</rdfs:label>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Claudius is alive before Hamlet kills him</drammar:freeDescription>
+        <drammar:State_status rdf:datatype="&xsd;boolean">true</drammar:State_status>
+        <drammar:isDescribedBy rdf:resource="&drammar;SS_surviving_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SOA_rei_02_in_P_C_Reign -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SOA_rei_02_in_P_C_Reign">
+        <rdf:type rdf:resource="&drammar;StateOfAffairsInPlanState"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Claudius has his reign</drammar:freeDescription>
+        <drammar:State_status rdf:datatype="&xsd;boolean">true</drammar:State_status>
+        <drammar:isDescribedBy rdf:resource="&drammar;SS_leadership_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SOA_sta_02_in_P_H_Send_O_Nunnery -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SOA_sta_02_in_P_H_Send_O_Nunnery">
+        <rdf:type rdf:resource="&drammar;StateOfAffairsInPlanState"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Ophelia is in the court of Elsinor</drammar:freeDescription>
+        <drammar:State_status rdf:datatype="&xsd;boolean">true</drammar:State_status>
+        <drammar:isDescribedBy rdf:resource="&drammar;SS_posture_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SS_dead_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SS_dead_01">
+        <rdf:type rdf:resource="&drammar;SOASchema"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Dead"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Undergoer_Dead_SS_dead_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SS_dead_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SS_dead_02">
+        <rdf:type rdf:resource="&drammar;SOASchema"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Dead"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Undergoer_Dead_SS_dead_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SS_leadership_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SS_leadership_02">
+        <rdf:type rdf:resource="&drammar;SOASchema"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_FRole_Governed_Leadership"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Governed_SS_leadership_02"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Leader_SS_leadership_02"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Role_SS_leadership_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SS_posture_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SS_posture_01">
+        <rdf:type rdf:resource="&drammar;SOASchema"/>
+        <rdfs:comment>This is the State schema for the state SOA_sta_01.
+- the frame ID is 18
+- the role ID, for each frame element: Agent: 81, </rdfs:comment>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Stay_Posture"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Agent_SS_posture_01"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Location_SS_posture_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SS_posture_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SS_posture_02">
+        <rdf:type rdf:resource="&drammar;SOASchema"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Stay_Posture"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Agent_SS_posture_02"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Location_SS_posture_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SS_posture_04 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SS_posture_04">
+        <rdf:type rdf:resource="&drammar;SOASchema"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Stay_Posture"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Agent_SS_posture_04"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Location_SS_posture_04"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SS_revenge_01_02 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SS_revenge_01_02">
+        <rdf:type rdf:resource="&drammar;SOASchema"/>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Revenge_Revenge"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Avenger_SS_revenge_01_02"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Injured_Party_SS_revenge_01_02"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Injury_SS_revenge_01_02"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Offender_SS_revenge_01_02"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Punishment_SS_revenge_01_02"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#SS_surviving_01 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;SS_surviving_01">
+        <rdf:type rdf:resource="&drammar;SOASchema"/>
+        <rdfs:comment rdf:datatype="&xsd;string">Claudius is alive</rdfs:comment>
+        <drammar:hasExtRef rdf:resource="&drammar;ExtRef_Alive_Surviving"/>
+        <drammar:hasRole rdf:resource="&drammar;R_Survivor_SS_surviving_01"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Satisfaction -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Satisfaction">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Scene_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Scene_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Scene"/>
+        <drammar:hasSetMember rdf:resource="&drammar;P_H_LearningHonesty"/>
+        <drammar:hasSetMember rdf:resource="&drammar;P_O_Lie"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Shame -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Shame">
+        <rdf:type rdf:resource="&drammar;ExternalRefEmotionType"/>
+        <drammar:isDescribedBy rdf:resource="&www;EmotionSchemaShame"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#US_I_Discover_Eff -->
+
+    <owl:NamedIndividual rdf:about="&drammar;US_I_Discover_Eff">
+        <rdf:type rdf:resource="&drammar;UnitState"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#US_I_Discover_Pre -->
+
+    <owl:NamedIndividual rdf:about="&drammar;US_I_Discover_Pre">
+        <rdf:type rdf:resource="&drammar;UnitState"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#US_I_Kill_Eff -->
+
+    <owl:NamedIndividual rdf:about="&drammar;US_I_Kill_Eff">
+        <rdf:type rdf:resource="&drammar;UnitState"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#US_I_Kill_Pre -->
+
+    <owl:NamedIndividual rdf:about="&drammar;US_I_Kill_Pre">
+        <rdf:type rdf:resource="&drammar;UnitState"/>
+        <owl:sameAs rdf:resource="&drammar;US_OLI_16"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#US_OLI_15 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;US_OLI_15">
+        <rdf:type rdf:resource="&drammar;UnitState"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#US_OLI_16 -->
+
+    <owl:NamedIndividual rdf:about="&drammar;US_OLI_16">
+        <rdf:type rdf:resource="&drammar;UnitState"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Unit17_WhereQuestion -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Unit17_WhereQuestion">
+        <rdf:type rdf:resource="&drammar;Unit"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet tests Ophelia with the question about her father</drammar:freeDescription>
+        <rdfs:comment>unitHasGoal properties is a shortcut.
+Not to be annotated manually, but inferred through SWRL rules.
+
+unitHasAgent properties is a shortcut, again! VEDI SOPRA!
+</rdfs:comment>
+        <drammar:unitHasEntity rdf:resource="&drammar;Hamlet_17"/>
+        <drammar:unitContainsAction rdf:resource="&drammar;I_Ask_U17"/>
+        <drammar:unitContainsAction rdf:resource="&drammar;I_Lie_U17"/>
+        <drammar:unitHasEntity rdf:resource="&drammar;Ophelia_17"/>
+        <drammar:hasUnitPrecondition rdf:resource="&drammar;US_OLI_15"/>
+        <drammar:hasUnitEffect rdf:resource="&drammar;US_OLI_16"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Unit_Discover -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Unit_Discover">
+        <rdf:type rdf:resource="&drammar;Unit"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet discovers that Claudius is guilty</drammar:freeDescription>
+        <drammar:unitHasEntity rdf:resource="&drammar;Claudius_Discover"/>
+        <drammar:unitHasGoal rdf:resource="&drammar;Goal_Hamlet_Discover"/>
+        <drammar:unitHasEntity rdf:resource="&drammar;Hamlet_Discover"/>
+        <drammar:unitContainsAction rdf:resource="&drammar;I_Discover"/>
+        <drammar:hasUnitEffect rdf:resource="&drammar;US_I_Discover_Eff"/>
+        <drammar:hasUnitPrecondition rdf:resource="&drammar;US_I_Discover_Pre"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.cadmos.cirma.unito.it/drammar/2012/4/drammar.owl#Unit_Kill -->
+
+    <owl:NamedIndividual rdf:about="&drammar;Unit_Kill">
+        <rdf:type rdf:resource="&drammar;Unit"/>
+        <drammar:freeDescription rdf:datatype="&xsd;string">Hamlet kills Claudius</drammar:freeDescription>
+        <drammar:unitHasEntity rdf:resource="&drammar;Claudius_Kill"/>
+        <drammar:unitHasEntity rdf:resource="&drammar;Hamlet_Kill"/>
+        <drammar:unitContainsAction rdf:resource="&drammar;I_Kill"/>
+        <drammar:hasUnitEffect rdf:resource="&drammar;US_I_Kill_Eff"/>
+        <drammar:hasUnitPrecondition rdf:resource="&drammar;US_I_Kill_Pre"/>
+    </owl:NamedIndividual>
+    <rdf:Description>
+        <drammar:freeDescription rdf:datatype="&xsd;string">prova</drammar:freeDescription>
+    </rdf:Description>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Annotations
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    <rdf:Description rdf:about="&dc;rights">
+        <rdfs:label xml:lang="en-us">Rights</rdfs:label>
+        <terms:modified>2008-01-14</terms:modified>
+        <terms:issued>1999-07-02</terms:issued>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <rdfs:comment xml:lang="en-us">Information about rights held in and over the resource.</rdfs:comment>
+        <terms:description xml:lang="en-us">Typically, rights information includes a statement about various property rights associated with the resource, including intellectual property rights.</terms:description>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#rights-006"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="&olo;item">
+        <rdfs:label xml:lang="en">has item</rdfs:label>
+        <rdfs:comment xml:lang="en">An item of a slot in an ordered list.</rdfs:comment>
+        <vs:term_status xml:lang="en">stable</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/ontology/olo/core#"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="&dc;format">
+        <rdfs:label xml:lang="en-us">Format</rdfs:label>
+        <terms:modified>2008-01-14</terms:modified>
+        <terms:issued>1999-07-02</terms:issued>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <terms:description xml:lang="en-us">Examples of dimensions include size and duration. Recommended best practice is to use a controlled vocabulary such as the list of Internet Media Types [MIME].</terms:description>
+        <rdfs:comment xml:lang="en-us">The file format, physical medium, or dimensions of the resource.</rdfs:comment>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#format-007"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="&dc;coverage">
+        <rdfs:label xml:lang="en-us">Coverage</rdfs:label>
+        <terms:modified>2008-01-14</terms:modified>
+        <terms:issued>1999-07-02</terms:issued>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <terms:description xml:lang="en-us">Spatial topic and spatial applicability may be a named place or a location specified by its geographic coordinates. Temporal topic may be a named period, date, or date range. A jurisdiction may be a named administrative entity or a geographic place to which the resource applies. Recommended best practice is to use a controlled vocabulary such as the Thesaurus of Geographic Names [TGN]. Where appropriate, named places or time periods can be used in preference to numeric identifiers such as sets of coordinates or date ranges.</terms:description>
+        <rdfs:comment xml:lang="en-us">The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant.</rdfs:comment>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#coverage-006"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="&dc;subject">
+        <rdfs:label xml:lang="en-us">Subject</rdfs:label>
+        <terms:modified>2008-01-14</terms:modified>
+        <terms:issued>1999-07-02</terms:issued>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <rdfs:comment xml:lang="en-us">The topic of the resource.</rdfs:comment>
+        <terms:description xml:lang="en-us">Typically, the subject will be represented using keywords, key phrases, or classification codes. Recommended best practice is to use a controlled vocabulary. To describe the spatial or temporal topic of the resource, use the Coverage element.</terms:description>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#subject-006"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="&dc;contributor">
+        <rdfs:label xml:lang="en-us">Contributor</rdfs:label>
+        <terms:issued>1999-07-02</terms:issued>
+        <terms:modified>2008-01-14</terms:modified>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <rdfs:comment xml:lang="en-us">An entity responsible for making contributions to the resource.</rdfs:comment>
+        <terms:description xml:lang="en-us">Examples of a Contributor include a person, an organization, or a service. Typically, the name of a Contributor should be used to indicate the entity.</terms:description>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#contributor-006"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="&dc;language">
+        <rdfs:label xml:lang="en-us">Language</rdfs:label>
+        <terms:issued>1999-07-02</terms:issued>
+        <terms:modified>2008-01-14</terms:modified>
+        <rdfs:comment xml:lang="en-us">A language of the resource.</rdfs:comment>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <terms:description xml:lang="en-us">Recommended best practice is to use a controlled vocabulary such as RFC 4646 [RFC4646].</terms:description>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#language-007"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+        <rdfs:seeAlso rdf:resource="http://www.ietf.org/rfc/rfc4646.txt"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="&dc;identifier">
+        <rdfs:label xml:lang="en-us">Identifier</rdfs:label>
+        <terms:modified>2008-01-14</terms:modified>
+        <terms:issued>1999-07-02</terms:issued>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <rdfs:comment xml:lang="en-us">An unambiguous reference to the resource within a given context.</rdfs:comment>
+        <terms:description xml:lang="en-us">Recommended best practice is to identify the resource by means of a string conforming to a formal identification system. </terms:description>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#identifier-006"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="&dc;type">
+        <rdfs:label xml:lang="en-us">Type</rdfs:label>
+        <terms:modified>2008-01-14</terms:modified>
+        <terms:issued>1999-07-02</terms:issued>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <terms:description xml:lang="en-us">Recommended best practice is to use a controlled vocabulary such as the DCMI Type Vocabulary [DCMITYPE]. To describe the file format, physical medium, or dimensions of the resource, use the Format element.</terms:description>
+        <rdfs:comment xml:lang="en-us">The nature or genre of the resource.</rdfs:comment>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#type-006"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="http://purl.org/dc/elements/1.1/">
+        <terms:modified>2010-10-11</terms:modified>
+        <terms:title xml:lang="en-us">Dublin Core Metadata Element Set, Version 1.1</terms:title>
+        <terms:publisher rdf:resource="http://purl.org/dc/aboutdcmi#DCMI"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="&dc;relation">
+        <rdfs:label xml:lang="en-us">Relation</rdfs:label>
+        <terms:modified>2008-01-14</terms:modified>
+        <terms:issued>1999-07-02</terms:issued>
+        <rdfs:comment xml:lang="en-us">A related resource.</rdfs:comment>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <terms:description xml:lang="en-us">Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system. </terms:description>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#relation-006"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="&dc;publisher">
+        <rdfs:label xml:lang="en-us">Publisher</rdfs:label>
+        <terms:issued>1999-07-02</terms:issued>
+        <terms:modified>2008-01-14</terms:modified>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <rdfs:comment xml:lang="en-us">An entity responsible for making the resource available.</rdfs:comment>
+        <terms:description xml:lang="en-us">Examples of a Publisher include a person, an organization, or a service. Typically, the name of a Publisher should be used to indicate the entity.</terms:description>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#publisher-006"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="&dc;source">
+        <rdfs:label xml:lang="en-us">Source</rdfs:label>
+        <terms:issued>1999-07-02</terms:issued>
+        <terms:modified>2008-01-14</terms:modified>
+        <rdfs:comment xml:lang="en-us">A related resource from which the described resource is derived.</rdfs:comment>
+        <skos:note xml:lang="en-us">A second property with the same name as this property has been declared in the dcterms: namespace (http://purl.org/dc/terms/).  See the Introduction to the document &quot;DCMI Metadata Terms&quot; (http://dublincore.org/documents/dcmi-terms/) for an explanation.</skos:note>
+        <terms:description xml:lang="en-us">The described resource may be derived from the related resource in whole or in part. Recommended best practice is to identify the related resource by means of a string conforming to a formal identification system.</terms:description>
+        <terms:hasVersion rdf:resource="http://dublincore.org/usage/terms/history/#source-006"/>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    </rdf:Description>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // General axioms
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    <rdf:Description>
+        <rdf:type rdf:resource="&owl;AllDifferent"/>
+        <owl:distinctMembers rdf:parseType="Collection">
+            <rdf:Description rdf:about="&drammar;Hamlet"/>
+            <rdf:Description rdf:about="&drammar;Ophelia"/>
+        </owl:distinctMembers>
+    </rdf:Description>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Rules
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    <rdf:Description rdf:about="urn:swrl#oa">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#sa">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#e">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#eAdmiration">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#eJoy">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#g_sa">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#s">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#eHope">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#esHope">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#es">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#g">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#p">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#p_sa">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#v">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#vas">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#pStateEffect">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#eLove">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#g_oa">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#aip">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#aiu">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#ole_action_el">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#ps_eff">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#ps_pre">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#u">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#us_eff">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#us_pre">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#ole_unit_el">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#s_eff">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#s_pre">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#ps_aip">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#p_rec">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#olePlanEl">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#eHate">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#eDistress">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#eShame">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#eFear">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#eReproach">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#ePride">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#eRelief">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="urn:swrl#esRelief">
+        <rdf:type rdf:resource="&swrl;Variable"/>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#eAdmiration"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#eJoy"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaGratitude"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaJoy"/>
+                                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eJoy"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eAdmiration"/>
+                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eJoy"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#eJoy"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="&www;Admiration"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaAdmiration"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaGratitude"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="&drammar;Gratitude"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaGratitude"/>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eAdmiration"/>
+                                                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eJoy"/>
+                                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaJoy"/>
+                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eJoy"/>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaAdmiration"/>
+                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eAdmiration"/>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaJoy"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Joy"/>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#eAdmiration"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eAdmiration"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eJoy"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eAdmiration"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaAdmiration"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:body>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&drammar;hasSetMember"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#s_pre"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#us_pre"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;hasSpanEnd"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#ole_unit_el"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                        <swrl:propertyPredicate rdf:resource="&drammar;unitHasGoal"/>
+                                                                        <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#u"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                <swrl:propertyPredicate rdf:resource="&drammar;spans"/>
+                                                                <swrl:argument2 rdf:resource="urn:swrl#ole_unit_el"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                        <swrl:propertyPredicate rdf:resource="&drammar;mapping"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#aip"/>
+                                                        <swrl:argument2 rdf:resource="urn:swrl#aiu"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                <swrl:propertyPredicate rdf:resource="&drammar;hasSpanInit"/>
+                                                <swrl:argument2 rdf:resource="urn:swrl#ole_unit_el"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&drammar;hasSetMember"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#s_eff"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#us_eff"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;PlanState"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#ps_eff"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                        <swrl:classPredicate rdf:resource="&drammar;UnitState"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#us_eff"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                                <swrl:classPredicate rdf:resource="&drammar;UnitState"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#us_pre"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;containsOLEAction"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#ole_action_el"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasData"/>
+                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#aip"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#ole_action_el"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasPlanEffect"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#ps_eff"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasSetMember"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#ps_eff"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s_eff"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasUnitEffect"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#u"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#us_eff"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasUnitPrecondition"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#u"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#us_pre"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#aip"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#ps_aip"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#aiu"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#ps_aip"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;unitContainsAction"/>
+                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#aiu"/>
+                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#u"/>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasSetMember"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#ps_pre"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s_pre"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasPlanPrecondition"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#ps_pre"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasData"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#ole_unit_el"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#u"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;Unit"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#u"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;PlanState"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#ps_pre"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;OLE_Action"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#ole_action_el"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;ActionInUnit"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#aiu"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;ActionInPlan"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#aip"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:body>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                        <swrl:propertyPredicate rdf:resource="&www;coherentWith"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#p_sa"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasGoal"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;intends"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#p_sa"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                                        <swrl:argument2>Achievement</swrl:argument2>
+                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;Goal_type"/>
+                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p_sa"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaHope"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaHope"/>
+                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Hope"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaHope"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#p_sa"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:body>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#eFear"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaRelief"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#eFear"/>
+                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#eFear"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaFear"/>
+                                                                                                        <swrl:argument2 rdf:resource="&drammar;Fear"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaFear"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eFear"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eFear"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                        <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaRelief"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasGoal"/>
+                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaRelief"/>
+                                                                                                                <swrl:argument2 rdf:resource="&drammar;Relief"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                        <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eFear"/>
+                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#eFear"/>
+                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaFear"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:body>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchema-HappyFor"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;coherentWith"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_oa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchema-HappyFor"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaLove"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eLove"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eLove"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;DifferentIndividualsAtom"/>
+                                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g_oa"/>
+                                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasGoal"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_oa"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaLove"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Love"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchema-HappyFor"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="&drammar;Happy-for"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#eLove"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eLove"/>
+                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#oa"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eLove"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaLove"/>
+                                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#eLove"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:body>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#g_oa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#eShame"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaRemorse"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eDistress"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eShame"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eDistress"/>
+                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eShame"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#eShame"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaDistress"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Distress"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaShame"/>
+                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eShame"/>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eShame"/>
+                                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eDistress"/>
+                                                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaDistress"/>
+                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eDistress"/>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaRemorse"/>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaShame"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Shame"/>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaRemorse"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="&www;Remorse"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#eDistress"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eShame"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eDistress"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaShame"/>
+                                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaDistress"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#eDistress"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:body>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#oa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#es"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#es"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:head>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#ePride"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaGratification"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#ePride"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#ePride"/>
+                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#ePride"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#ePride"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaPride"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="&drammar;Pride"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaJoy"/>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eJoy"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                        <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#ePride"/>
+                                                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eJoy"/>
+                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaPride"/>
+                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#ePride"/>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaGratification"/>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaJoy"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Joy"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaGratification"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="&www;Gratification"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#eJoy"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eJoy"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eJoy"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eJoy"/>
+                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaPride"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaJoy"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#eJoy"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:body>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaHope"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaSatisfaction"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eHope"/>
+                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#eHope"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaHope"/>
+                                                                                                                <swrl:argument2 rdf:resource="&drammar;Hope"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasGoal"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaSatisfaction"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaHope"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eHope"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eHope"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaSatisfaction"/>
+                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Hope"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eHope"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#eHope"/>
+                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#eHope"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:body>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#eHate"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaResentment"/>
+                                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eHate"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eHate"/>
+                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#oa"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaHate"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="&drammar;Hate"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaResentment"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Resentment"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasGoal"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_oa"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaResentment"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaHate"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eHate"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eHate"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;DifferentIndividualsAtom"/>
+                                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g_oa"/>
+                                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#eHate"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;coherentWith"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_oa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaHate"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:body>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#g_oa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:head>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#eHope"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaHope"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#esHope"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#eHope"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:argument2 rdf:resource="&drammar;Disappointment"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#es"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasGoal"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaHope"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eHope"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eHope"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">false</swrl:argument2>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaDisappointment"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaHope"/>
+                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Hope"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eHope"/>
+                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#esHope"/>
+                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaDisappointment"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:body>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#oa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eReproach"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eDistress"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eReproach"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#eReproach"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaDistress"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="&drammar;Distress"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaDistress"/>
+                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eDistress"/>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaReproach"/>
+                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eReproach"/>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eReproach"/>
+                                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eDistress"/>
+                                                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaAnger"/>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaReproach"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Reproach"/>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaAnger"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Anger"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#eDistress"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eReproach"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eDistress"/>
+                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eDistress"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaReproach"/>
+                                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaDistress"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaAnger"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#eReproach"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#eDistress"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:body>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#eFear"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaFear"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#eFear"/>
+                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#eFear"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaFear"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eFear"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eFear"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">false</swrl:argument2>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaFearConfirmed"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasGoal"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaFearConfirmed"/>
+                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Fear-confirmed"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaFear"/>
+                                                                                                                <swrl:argument2 rdf:resource="&drammar;Fear"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eFear"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eFear"/>
+                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaFearConfirmed"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:body>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;spans"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#ole_unit_el"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest rdf:resource="&rdf;nil"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                <swrl:propertyPredicate rdf:resource="&drammar;unitHasGoal"/>
+                                                <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#u"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&drammar;hasSpanEnd"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#ole_unit_el"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&drammar;hasSetMember"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#s_eff"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#us_eff"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Unit"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#u"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                        <swrl:propertyPredicate rdf:resource="&www;containsLastOLEPlan"/>
+                                                        <swrl:argument2 rdf:resource="urn:swrl#olePlanEl"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasData"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#olePlanEl"/>
+                                                                        <swrl:argument2 rdf:resource="urn:swrl#p"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasData"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#ole_unit_el"/>
+                                                                                <swrl:argument2 rdf:resource="urn:swrl#u"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasPlanEffect"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                                                                                        <swrl:argument2 rdf:resource="urn:swrl#ps_eff"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasUnitEffect"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#u"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#us_eff"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                        <swrl:argument2>Recursive</swrl:argument2>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;Plan_type"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasSpanEnd"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#ole_unit_el"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasSetMember"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#ps_eff"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s_eff"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:body>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#g_oa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:head>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#eHate"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaGloating"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaHate"/>
+                                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eHate"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eHate"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#oa"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaGloating"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Gloating"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaHate"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eHate"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eHate"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g_oa"/>
+                                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;DifferentIndividualsAtom"/>
+                                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaGloating"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;inConflictWith"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_oa"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasGoal"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g_oa"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaHate"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="&drammar;Hate"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#eHate"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:body>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaDistress"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasGoal"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                        <swrl:argument2 rdf:datatype="&xsd;boolean">false</swrl:argument2>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaDistress"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;inConflictWith"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaDistress"/>
+                                                                                                <swrl:argument2 rdf:resource="&drammar;Distress"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:body>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#oa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaAdmiration"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;Value"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#v"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&www;isInPlanState"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#pStateEffect"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasPlanEffect"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#pStateEffect"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasValue"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#v"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaAdmiration"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">false</swrl:argument2>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&www;atStake"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                                        <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                        <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DifferentIndividualsAtom"/>
+                                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;intends"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:argument2 rdf:resource="&www;Admiration"/>
+                                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaAdmiration"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;featuresValue"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#v"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                        <swrl:classPredicate rdf:resource="&drammar;ValueAtStake"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:body>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaJoy"/>
+                                                                                                        <swrl:argument2 rdf:resource="&drammar;Joy"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasGoal"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                        <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g_sa"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaJoy"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                <swrl:propertyPredicate rdf:resource="&www;coherentWith"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaJoy"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:body>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:head>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;Value"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#v"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;ValueAtStake"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                        <swrl:propertyPredicate rdf:resource="&www;featuresValue"/>
+                                                                                        <swrl:argument2 rdf:resource="urn:swrl#v"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&www;isInPlanState"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#pStateEffect"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaPride"/>
+                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Pride"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasValue"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#v"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaPride"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:datatype="&xsd;boolean">false</swrl:argument2>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&www;atStake"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;intends"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasPlanEffect"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#pStateEffect"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaPride"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:body>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaReproach"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;featuresValue"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#v"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaReproach"/>
+                                                                                                                                <swrl:argument2 rdf:resource="&drammar;Reproach"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasPlanEffect"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#pStateEffect"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasValue"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#v"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;intends"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaReproach"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&www;atStake"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                        <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DifferentIndividualsAtom"/>
+                                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                                        <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&www;isInPlanState"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#pStateEffect"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                        <swrl:classPredicate rdf:resource="&drammar;ValueAtStake"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;Value"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#v"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:body>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#oa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:head>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaLove"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaPity"/>
+                                                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaLove"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Love"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;inConflictWith"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_oa"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaPity"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eLove"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g_oa"/>
+                                                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;DifferentIndividualsAtom"/>
+                                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="&www;EmotionSchemaLove"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eLove"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasGoal"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g_oa"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#oa"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaPity"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="&drammar;Pity"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#eLove"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eLove"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#oa"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eLove"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#eLove"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:body>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#g_oa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                                <swrl:classPredicate rdf:resource="&drammar;ValueAtStake"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&www;isInPlanState"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#pStateEffect"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:argument1 rdf:resource="&www;EmotionSchemaShame"/>
+                                                                                                                        <swrl:argument2 rdf:resource="&drammar;Shame"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasPlanEffect"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#pStateEffect"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasValue"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#v"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;intends"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                        <rdf:rest>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                <rdf:first>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaShame"/>
+                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:first>
+                                                                                                                                                <rdf:rest>
+                                                                                                                                                    <rdf:Description>
+                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                        <rdf:first>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:first>
+                                                                                                                                                        <rdf:rest>
+                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                        <rdf:rest>
+                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                <rdf:first>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                        <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&www;atStake"/>
+                                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:first>
+                                                                                                                                                                                <rdf:rest>
+                                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                                                                        <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                                                                        <rdf:first>
+                                                                                                                                                                                            <rdf:Description>
+                                                                                                                                                                                                <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                                                                                                <swrl:argument2 rdf:datatype="&xsd;boolean">true</swrl:argument2>
+                                                                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;Goal_achievement"/>
+                                                                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                                        </rdf:first>
+                                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                            </rdf:Description>
+                                                                                                                                                                        </rdf:rest>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:rest>
+                                                                                                                                                                <rdf:first>
+                                                                                                                                                                    <rdf:Description>
+                                                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                                                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                                                    </rdf:Description>
+                                                                                                                                                                </rdf:first>
+                                                                                                                                                            </rdf:Description>
+                                                                                                                                                        </rdf:rest>
+                                                                                                                                                    </rdf:Description>
+                                                                                                                                                </rdf:rest>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:rest>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                        <swrl:propertyPredicate rdf:resource="&www;featuresValue"/>
+                                                                                        <swrl:argument2 rdf:resource="urn:swrl#v"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#vas"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                        <swrl:classPredicate rdf:resource="&drammar;Value"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#v"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaShame"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                            </rdf:Description>
+                        </rdf:first>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:body>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Agent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaJoy"/>
+                                                                <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#esRelief"/>
+                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#esRelief"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:argument2 rdf:resource="&drammar;Relief"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#esRelief"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:rest>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                        <rdf:first>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eRelief"/>
+                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#esRelief"/>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:first>
+                                                                                                                        <rdf:rest>
+                                                                                                                            <rdf:Description>
+                                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                <rdf:first>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:first>
+                                                                                                                                <rdf:rest>
+                                                                                                                                    <rdf:Description>
+                                                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                                        <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                                        <rdf:first>
+                                                                                                                                            <rdf:Description>
+                                                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;isInScene"/>
+                                                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#eRelief"/>
+                                                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s"/>
+                                                                                                                                            </rdf:Description>
+                                                                                                                                        </rdf:first>
+                                                                                                                                    </rdf:Description>
+                                                                                                                                </rdf:rest>
+                                                                                                                            </rdf:Description>
+                                                                                                                        </rdf:rest>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:rest>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                        <swrl:argument2 rdf:resource="&www;EmotionSchemaJoy"/>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;isDescribedBy"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:argument1 rdf:resource="&www;EmotionSchemaJoy"/>
+                                                                                                                <swrl:argument2 rdf:resource="&drammar;Joy"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasEmotionType"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                        <swrl:propertyPredicate rdf:resource="&www;isEmotionOf"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#eRelief"/>
+                                                                                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                        <swrl:classPredicate rdf:resource="&drammar;SituationSchema"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#esRelief"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Scene"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#s"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Emotion"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#eRelief"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:body>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&www;appraisingAgent"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#sa"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&www;target"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#e"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#g_sa"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;feels"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#e"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#sa"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:head>
+    </rdf:Description>
+    <rdf:Description>
+        <rdf:type rdf:resource="&swrl;Imp"/>
+        <swrl:head>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                <swrl:propertyPredicate rdf:resource="&drammar;hasSpanInit"/>
+                                <swrl:argument2 rdf:resource="urn:swrl#ole_unit_el"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:rest rdf:resource="&rdf;nil"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                <swrl:propertyPredicate rdf:resource="&drammar;unitHasGoal"/>
+                                                <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#u"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                    </rdf:Description>
+                                </rdf:rest>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                        <swrl:propertyPredicate rdf:resource="&drammar;spans"/>
+                                        <swrl:argument2 rdf:resource="urn:swrl#ole_unit_el"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                        <swrl:propertyPredicate rdf:resource="&drammar;hasSetMember"/>
+                        <swrl:argument2 rdf:resource="urn:swrl#s_pre"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#us_pre"/>
+                    </rdf:Description>
+                </rdf:first>
+            </rdf:Description>
+        </swrl:head>
+        <swrl:body>
+            <rdf:Description>
+                <rdf:type rdf:resource="&swrl;AtomList"/>
+                <rdf:first>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                        <swrl:classPredicate rdf:resource="&drammar;Goal"/>
+                        <swrl:argument1 rdf:resource="urn:swrl#g"/>
+                    </rdf:Description>
+                </rdf:first>
+                <rdf:rest>
+                    <rdf:Description>
+                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                        <rdf:first>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                            </rdf:Description>
+                        </rdf:first>
+                        <rdf:rest>
+                            <rdf:Description>
+                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                <rdf:first>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                        <swrl:classPredicate rdf:resource="&drammar;Plan"/>
+                                        <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                                    </rdf:Description>
+                                </rdf:first>
+                                <rdf:rest>
+                                    <rdf:Description>
+                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                        <rdf:first>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;ClassAtom"/>
+                                                <swrl:classPredicate rdf:resource="&drammar;Unit"/>
+                                                <swrl:argument1 rdf:resource="urn:swrl#u"/>
+                                            </rdf:Description>
+                                        </rdf:first>
+                                        <rdf:rest>
+                                            <rdf:Description>
+                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                <rdf:first>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                        <swrl:propertyPredicate rdf:resource="&www;containsFirstOLEPlan"/>
+                                                        <swrl:argument2 rdf:resource="urn:swrl#olePlanEl"/>
+                                                        <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                                                    </rdf:Description>
+                                                </rdf:first>
+                                                <rdf:rest>
+                                                    <rdf:Description>
+                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                        <rdf:first>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                <swrl:propertyPredicate rdf:resource="&drammar;achieves"/>
+                                                                <swrl:argument2 rdf:resource="urn:swrl#g"/>
+                                                                <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                                                            </rdf:Description>
+                                                        </rdf:first>
+                                                        <rdf:rest>
+                                                            <rdf:Description>
+                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                <rdf:rest>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                        <rdf:first>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasData"/>
+                                                                                <swrl:argument1 rdf:resource="urn:swrl#ole_unit_el"/>
+                                                                                <swrl:argument2 rdf:resource="urn:swrl#u"/>
+                                                                            </rdf:Description>
+                                                                        </rdf:first>
+                                                                        <rdf:rest>
+                                                                            <rdf:Description>
+                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                <rdf:rest>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                        <rdf:first>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasSetMember"/>
+                                                                                                <swrl:argument1 rdf:resource="urn:swrl#ps_pre"/>
+                                                                                                <swrl:argument2 rdf:resource="urn:swrl#s_pre"/>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:first>
+                                                                                        <rdf:rest>
+                                                                                            <rdf:Description>
+                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                <rdf:first>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasSpanInit"/>
+                                                                                                        <swrl:argument2 rdf:resource="urn:swrl#ole_unit_el"/>
+                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p"/>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:first>
+                                                                                                <rdf:rest>
+                                                                                                    <rdf:Description>
+                                                                                                        <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                        <rdf:rest>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;AtomList"/>
+                                                                                                                <rdf:rest rdf:resource="&rdf;nil"/>
+                                                                                                                <rdf:first>
+                                                                                                                    <rdf:Description>
+                                                                                                                        <rdf:type rdf:resource="&swrl;DatavaluedPropertyAtom"/>
+                                                                                                                        <swrl:argument2>Recursive</swrl:argument2>
+                                                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;Plan_type"/>
+                                                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                                                                                                                    </rdf:Description>
+                                                                                                                </rdf:first>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:rest>
+                                                                                                        <rdf:first>
+                                                                                                            <rdf:Description>
+                                                                                                                <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                                                <swrl:propertyPredicate rdf:resource="&drammar;hasUnitPrecondition"/>
+                                                                                                                <swrl:argument1 rdf:resource="urn:swrl#u"/>
+                                                                                                                <swrl:argument2 rdf:resource="urn:swrl#us_pre"/>
+                                                                                                            </rdf:Description>
+                                                                                                        </rdf:first>
+                                                                                                    </rdf:Description>
+                                                                                                </rdf:rest>
+                                                                                            </rdf:Description>
+                                                                                        </rdf:rest>
+                                                                                    </rdf:Description>
+                                                                                </rdf:rest>
+                                                                                <rdf:first>
+                                                                                    <rdf:Description>
+                                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasPlanPrecondition"/>
+                                                                                        <swrl:argument1 rdf:resource="urn:swrl#p_rec"/>
+                                                                                        <swrl:argument2 rdf:resource="urn:swrl#ps_pre"/>
+                                                                                    </rdf:Description>
+                                                                                </rdf:first>
+                                                                            </rdf:Description>
+                                                                        </rdf:rest>
+                                                                    </rdf:Description>
+                                                                </rdf:rest>
+                                                                <rdf:first>
+                                                                    <rdf:Description>
+                                                                        <rdf:type rdf:resource="&swrl;IndividualPropertyAtom"/>
+                                                                        <swrl:propertyPredicate rdf:resource="&drammar;hasData"/>
+                                                                        <swrl:argument1 rdf:resource="urn:swrl#olePlanEl"/>
+                                                                        <swrl:argument2 rdf:resource="urn:swrl#p"/>
+                                                                    </rdf:Description>
+                                                                </rdf:first>
+                                                            </rdf:Description>
+                                                        </rdf:rest>
+                                                    </rdf:Description>
+                                                </rdf:rest>
+                                            </rdf:Description>
+                                        </rdf:rest>
+                                    </rdf:Description>
+                                </rdf:rest>
+                            </rdf:Description>
+                        </rdf:rest>
+                    </rdf:Description>
+                </rdf:rest>
+            </rdf:Description>
+        </swrl:body>
+    </rdf:Description>
+</rdf:RDF>
+
+
+
+<!-- Generated by the OWL API (version 3.4.2) http://owlapi.sourceforge.net -->
+

ontologies/foaf.rdf 609(+609 -0)

diff --git a/ontologies/foaf.rdf b/ontologies/foaf.rdf
new file mode 100644
index 0000000..68d0700
--- /dev/null
+++ b/ontologies/foaf.rdf
@@ -0,0 +1,609 @@
+<!-- This is the FOAF formal vocabulary description, expressed using W3C RDFS and OWL markup. foaf/spec version -->
+<!-- For more information about FOAF:                                            -->
+<!--   see the FOAF project homepage, http://www.foaf-project.org/               -->
+<!--   FOAF specification, http://xmlns.com/foaf/spec/                             -->
+<!--                                                                             -->
+<!-- first we introduce a number of RDF namespaces we will be using... -->
+<rdf:RDF 
+	xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
+	xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" 
+	xmlns:owl="http://www.w3.org/2002/07/owl#" 
+	xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#" 
+	xmlns:foaf="http://xmlns.com/foaf/0.1/" 
+	xmlns:wot="http://xmlns.com/wot/0.1/" 
+	xmlns:dc="http://purl.org/dc/elements/1.1/">
+<!-- Here we describe general characteristics of the FOAF vocabulary ('ontology'). -->
+  <owl:Ontology rdf:about="http://xmlns.com/foaf/0.1/" dc:title="Friend of a Friend (FOAF) vocabulary" dc:description="The Friend of a Friend (FOAF) RDF vocabulary, described using W3C RDF Schema and the Web Ontology Language." >
+  </owl:Ontology>
+
+
+  <!-- OWL/RDF interop section - geeks only -->
+  <!--  most folk can ignore this lot. the game here is to make FOAF
+  	work with vanilla RDF/RDFS tools, and with the stricter OWL DL 
+	profile of OWL. At the moment we're in the OWL Full flavour of OWL. 
+	The following are tricks to try have the spec live in both worlds
+	at once. See
+		http://phoebus.cs.man.ac.uk:9999/OWL/Validator
+		http://www.mindswap.org/2003/pellet/demo.shtml
+	...for some tools that help. 					-->
+  <owl:AnnotationProperty rdf:about="http://xmlns.com/wot/0.1/assurance"/>
+  <owl:AnnotationProperty rdf:about="http://xmlns.com/wot/0.1/src_assurance"/>
+  <owl:AnnotationProperty rdf:about="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
+  <!--  DC terms are NOT annotation properties in general, so we consider the following 
+	claims scoped to this document. They may be removed in future revisions if
+	OWL tools become more flexible. -->
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/date"/>
+  <owl:Class rdf:about="http://www.w3.org/2000/01/rdf-schema#Class"/>
+
+<!--  <owl:Class rdf:about="http://www.w3.org/2000/01/rdf-schema#Resource"/>
+  <owl:Class rdf:about="http://www.w3.org/2000/01/rdf-schema#Literal"/> -->
+  <!-- end of OWL/RDF interop voodoo. mostly. -->
+
+  <!-- utility class, a candidate for replacing the pattern of subproperty-ing rdfs:label -->
+  <rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/LabelProperty" vs:term_status="unstable">
+    <rdfs:label>Label Property</rdfs:label>
+    <rdfs:comment>A foaf:LabelProperty is any RDF property with texual values that serve as labels.</rdfs:comment>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdfs:Class>
+
+<!-- FOAF classes (types) are listed first. -->
+
+  <rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/Person" rdfs:label="Person" rdfs:comment="A person." vs:term_status="stable">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class" />
+    <owl:equivalentClass rdf:resource="http://schema.org/Person" />
+    <owl:equivalentClass rdf:resource="http://www.w3.org/2000/10/swap/pim/contact#Person" />
+<!--    <rdfs:subClassOf><owl:Class rdf:about="http://xmlns.com/wordnet/1.6/Person"/></rdfs:subClassOf> -->
+    <rdfs:subClassOf><owl:Class rdf:about="http://xmlns.com/foaf/0.1/Agent"/></rdfs:subClassOf>
+<!--    <rdfs:subClassOf><owl:Class rdf:about="http://xmlns.com/wordnet/1.6/Agent"/></rdfs:subClassOf> -->
+    <rdfs:subClassOf><owl:Class rdf:about="http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing" rdfs:label="Spatial Thing"/></rdfs:subClassOf>
+    <!-- aside: 
+	are spatial things always spatially located? 
+	Person includes imaginary people... discuss... -->
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+
+<!--    <owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Document"/> this was a mistake; tattoo'd people, for example. -->
+
+    <owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
+    <owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Project"/>
+  </rdfs:Class>
+  <rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/Document" rdfs:label="Document" rdfs:comment="A document." vs:term_status="stable">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+    <owl:equivalentClass rdf:resource="http://schema.org/CreativeWork" />
+<!--    <rdfs:subClassOf rdf:resource="http://xmlns.com/wordnet/1.6/Document"/> -->
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
+    <owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Project"/>
+  </rdfs:Class>
+  <rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/Organization" rdfs:label="Organization" rdfs:comment="An organization." vs:term_status="stable">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+<!--    <rdfs:subClassOf><owl:Class rdf:about="http://xmlns.com/wordnet/1.6/Organization"/></rdfs:subClassOf> -->
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+  </rdfs:Class>
+  <rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/Group" vs:term_status="stable" rdfs:label="Group" rdfs:comment="A class of Agents.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+  </rdfs:Class>
+  <rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/Agent" vs:term_status="stable" rdfs:label="Agent" rdfs:comment="An agent (eg. person, group, software or physical artifact).">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+    <owl:equivalentClass rdf:resource="http://purl.org/dc/terms/Agent"/>
+<!--    <rdfs:subClassOf><owl:Class rdf:about="http://xmlns.com/wordnet/1.6/Agent-3"/></rdfs:subClassOf> -->
+  </rdfs:Class>
+  <rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/Project" vs:term_status="testing" rdfs:label="Project" rdfs:comment="A project (a collective endeavour of some kind).">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+<!--    <rdfs:subClassOf><owl:Class rdf:about="http://xmlns.com/wordnet/1.6/Project"/></rdfs:subClassOf> -->
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <owl:disjointWith rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+<!-- arguably a subclass of Agent; to be discussed -->
+  </rdfs:Class>
+  <rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/Image" vs:term_status="stable" rdfs:label="Image" rdfs:comment="An image.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+    <owl:equivalentClass rdf:resource="http://schema.org/ImageObject" />
+<!--    <rdfs:subClassOf><owl:Class rdf:about="http://xmlns.com/wordnet/1.6/Document"/></rdfs:subClassOf> -->
+    <rdfs:subClassOf><owl:Class rdf:about="http://xmlns.com/foaf/0.1/Document"/></rdfs:subClassOf>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdfs:Class>
+
+  <rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/PersonalProfileDocument" rdfs:label="PersonalProfileDocument" rdfs:comment="A personal profile RDF document." vs:term_status="testing">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+  </rdfs:Class>
+	
+  <rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/OnlineAccount" vs:term_status="testing" rdfs:label="Online Account" rdfs:comment="An online account.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing" rdfs:label="Thing"/>
+  </rdfs:Class>
+  <rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/OnlineGamingAccount" vs:term_status="unstable" rdfs:label="Online Gaming Account" rdfs:comment="An online gaming account.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdfs:Class>
+  <rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/OnlineEcommerceAccount" vs:term_status="unstable" rdfs:label="Online E-commerce Account" rdfs:comment="An online e-commerce account.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdfs:Class>
+  <rdfs:Class rdf:about="http://xmlns.com/foaf/0.1/OnlineChatAccount" vs:term_status="unstable" rdfs:label="Online Chat Account" rdfs:comment="An online chat account.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdfs:Class>
+<!-- FOAF properties (ie. relationships). -->
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/mbox" vs:term_status="stable" rdfs:label="personal mailbox" rdfs:comment="A 
+personal mailbox, ie. an Internet mailbox associated with exactly one owner, the first owner of this mailbox. This is a 'static inverse functional property', in that  there is (across time and change) at most one individual that ever has any particular value for foaf:mbox.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/mbox_sha1sum" vs:term_status="testing" rdfs:label="sha1sum of a personal mailbox URI name" rdfs:comment="The sha1sum of the URI of an Internet mailbox associated with exactly one owner, the  first owner of the mailbox.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
+
+<!--
+put it back in again 2006-01-29 - see 
+http://chatlogs.planetrdf.com/swig/2006-01-29.html#T21-12-35
+I have mailed rdfweb-dev@vapours.rdfweb.org for discussion.
+Libby
+
+Commenting out as a kindness to OWL DL users. The semantics didn't quite cover
+our usage anyway, since (a) we want static-across-time, which is so beyond OWL as 
+to be from another planet (b) we want identity reasoning invariant across xml:lang 
+tagging. FOAF code will know what to do. OWL folks note, this assertion might return. 
+
+danbri
+-->
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/gender" vs:term_status="testing" 
+rdfs:label="gender" 
+rdfs:comment="The gender of this Agent (typically but not necessarily 'male' or 'female').">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <!-- whatever one's gender is, and we are liberal in leaving room for more options 
+    than 'male' and 'female', we model this so that an agent has only one gender. -->
+  </rdf:Property>
+
+
+
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/geekcode" vs:term_status="archaic" rdfs:label="geekcode" rdfs:comment="A textual geekcode for this person, see http://www.geekcode.com/geek.html">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/dnaChecksum" vs:term_status="archaic" rdfs:label="DNA checksum" rdfs:comment="A checksum for the DNA of some thing. Joke.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/sha1" vs:term_status="unstable" rdfs:label="sha1sum (hex)" rdfs:comment="A sha1sum hash, in hex.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+<!-- rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty" -->
+<!-- IFP under discussion -->
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/based_near" vs:term_status="testing" rdfs:label="based near" rdfs:comment="A location that something is based near, for some broadly human notion of near.">
+<!-- see http://esw.w3.org/topic/GeoOnion for extension  ideas -->
+<!-- this was ranged as Agent... hmm -->
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+<!-- FOAF naming properties -->
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/title" vs:term_status="testing" rdfs:label="title" rdfs:comment="Title (Mr, Mrs, Ms, Dr. etc)">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/nick" vs:term_status="testing" rdfs:label="nickname" rdfs:comment="A short informal nickname characterising an agent (includes login identifiers, IRC and other chat nicknames).">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+<!-- ......................... chat IDs ........................... -->
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/jabberID" vs:term_status="testing" rdfs:label="jabber ID" rdfs:comment="A jabber ID for something.">
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+<!--
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/nick"/>
+...different to the other IM IDs, as Jabber has wider usage, so 
+we don't want the implied rdfs:domain here.
+
+-->
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <!-- there is a case for using resources/URIs here, ... -->
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/aimChatID" vs:term_status="testing" rdfs:label="AIM chat ID" rdfs:comment="An AIM chat ID">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/nick"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
+  </rdf:Property>
+
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/skypeID" vs:term_status="testing" rdfs:label="Skype ID" rdfs:comment="A Skype ID">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/nick"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <!-- todo: OWL2 easy key definition -->
+  </rdf:Property>
+
+<!-- http://www.stud.uni-karlsruhe.de/~uck4/ICQ/Packet-112.html -->
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/icqChatID" vs:term_status="testing" rdfs:label="ICQ chat ID" rdfs:comment="An ICQ chat ID">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/nick"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/yahooChatID" vs:term_status="testing" rdfs:label="Yahoo chat ID" rdfs:comment="A Yahoo chat ID">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/nick"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/msnChatID" vs:term_status="testing" rdfs:label="MSN chat ID" rdfs:comment="An MSN chat ID">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/nick"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
+  </rdf:Property>
+<!-- ....................................................... -->
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/name" vs:term_status="testing" rdfs:label="name" rdfs:comment="A name for some thing.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#label"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/firstName" vs:term_status="testing" rdfs:label="firstName" rdfs:comment="The first name of a person.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/lastName" vs:term_status="testing" rdfs:label="lastName" rdfs:comment="The last name of a person.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/givenName" vs:term_status="testing" rdfs:label="Given name" rdfs:comment="The given name of some person.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/givenname" vs:term_status="archaic" rdfs:label="Given name" rdfs:comment="The given name of some person.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/surname" vs:term_status="archaic" rdfs:label="Surname" rdfs:comment="The surname of some person.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/family_name" vs:term_status="archaic" rdfs:label="family_name" rdfs:comment="The family name of some person.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/familyName" vs:term_status="testing" rdfs:label="familyName" rdfs:comment="The family name of some person.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+<!-- end of naming properties. See http://rdfweb.org/issues/show_bug.cgi?id=7
+	   for open issue / re-design discussions.
+	-->
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/phone" vs:term_status="testing" rdfs:label="phone" rdfs:comment="A phone,  specified using fully qualified tel: URI scheme (refs: http://www.w3.org/Addressing/schemes.html#tel).">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/homepage" vs:term_status="stable" rdfs:label="homepage" rdfs:comment="A homepage for some thing.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/page"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
+    <!--  previously: rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent" -->
+    <rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/weblog" vs:term_status="stable" rdfs:label="weblog" rdfs:comment="A weblog of some thing (whether person, group, company etc.).">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/page"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/openid" vs:term_status="testing" rdfs:label="openid" rdfs:comment="An OpenID for an Agent.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/tipjar" vs:term_status="testing" rdfs:label="tipjar" rdfs:comment="A tipjar document for this agent, describing means for payment and reward.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/page"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/plan" vs:term_status="testing" rdfs:label="plan" rdfs:comment="A .plan comment, in the tradition of finger and '.plan' files.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/made" vs:term_status="stable" rdfs:label="made" rdfs:comment="Something that was made by this agent.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <owl:inverseOf rdf:resource="http://xmlns.com/foaf/0.1/maker"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/maker"  vs:term_status="stable" rdfs:label="maker" rdfs:comment="An agent that 
+made this thing.">
+    <owl:equivalentProperty rdf:resource="http://purl.org/dc/terms/creator"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <owl:inverseOf rdf:resource="http://xmlns.com/foaf/0.1/made"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/img" vs:term_status="testing" rdfs:label="image" rdfs:comment="An image that can be used to represent some thing (ie. those depictions which are particularly representative of something, eg. one's photo on a homepage).">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Image"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/depiction"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/depiction" vs:term_status="testing" rdfs:label="depiction" rdfs:comment="A depiction of some thing.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Image"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <owl:inverseOf rdf:resource="http://xmlns.com/foaf/0.1/depicts"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/depicts" vs:term_status="testing" rdfs:label="depicts" rdfs:comment="A thing depicted in this representation.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Image"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <owl:inverseOf rdf:resource="http://xmlns.com/foaf/0.1/depiction"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/thumbnail" vs:term_status="testing" rdfs:label="thumbnail" rdfs:comment="A derived thumbnail image.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Image"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Image"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/myersBriggs" vs:term_status="testing" rdfs:label="myersBriggs" rdfs:comment="A Myers Briggs (MBTI) personality classification.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/workplaceHomepage" vs:term_status="testing" rdfs:label="workplace homepage" rdfs:comment="A workplace homepage of some person; the homepage of an organization they work for.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/workInfoHomepage" vs:term_status="testing" rdfs:label="work info homepage" rdfs:comment="A work info homepage of some person; a page about their work for some organization.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/schoolHomepage" vs:term_status="testing" rdfs:label="schoolHomepage" rdfs:comment="A homepage of a school attended by the person.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/knows" vs:term_status="stable" rdfs:label="knows" rdfs:comment="A person known by this person (indicating some level of reciprocated interaction between the parties).">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/interest" vs:term_status="testing" rdfs:label="interest" rdfs:comment="A page about a topic of interest to this person.">
+<!-- we should distinguish the page from the topic more carefully. danbri 2002-07-08 -->
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/topic_interest" vs:term_status="testing" rdfs:label="topic_interest" rdfs:comment="A thing of interest to this person.">
+<!-- we should distinguish the page from the topic more carefully. danbri 2002-07-08 -->
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/publications" vs:term_status="testing" rdfs:label="publications" rdfs:comment="A link to the publications of this person.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+<!-- by libby for ILRT mappings 2001-10-31 -->
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/currentProject" vs:term_status="testing" rdfs:label="current project" rdfs:comment="A current project this person works on.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/pastProject" vs:term_status="testing" rdfs:label="past project" rdfs:comment="A project this person has previously worked on.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/fundedBy" vs:term_status="archaic" rdfs:label="funded by" rdfs:comment="An organization funding a project or person.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/logo" vs:term_status="testing" rdfs:label="logo" rdfs:comment="A logo representing some thing.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/topic" vs:term_status="testing" rdfs:label="topic" rdfs:comment="A topic of some page or document.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <owl:inverseOf rdf:resource="http://xmlns.com/foaf/0.1/page"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/primaryTopic"
+ vs:term_status="stable" rdfs:label="primary topic" rdfs:comment="The primary topic of some page or document.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <owl:inverseOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/focus"  vs:term_status="testing" rdfs:label="focus" rdfs:comment="The underlying or 'focal' entity associated with some SKOS-described concept.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://www.w3.org/2004/02/skos/core#Concept" rdfs:label="Concept"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"
+ vs:term_status="stable" rdfs:label="is primary topic of" rdfs:comment="A document that this thing is the primary topic of.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/page"/>
+    <owl:inverseOf rdf:resource="http://xmlns.com/foaf/0.1/primaryTopic"/>
+    <rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/page" vs:term_status="stable" rdfs:label="page" rdfs:comment="A page or document about this thing.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <owl:inverseOf rdf:resource="http://xmlns.com/foaf/0.1/topic"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/theme" vs:term_status="archaic" rdfs:label="theme" rdfs:comment="A theme.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/account" vs:term_status="testing" rdfs:label="account" rdfs:comment="Indicates an account held by this agent.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/holdsAccount" vs:term_status="archaic" rdfs:label="account" rdfs:comment="Indicates an account held by this agent.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/accountServiceHomepage" vs:term_status="testing" rdfs:label="account service homepage" rdfs:comment="Indicates a homepage of the service provide for this online account.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/accountName" vs:term_status="testing" rdfs:label="account name" rdfs:comment="Indicates the name (identifier) associated with this online account.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/member" vs:term_status="stable" rdfs:label="member" rdfs:comment="Indicates a member of a Group">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Group"/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/membershipClass" vs:term_status="unstable" rdfs:label="membershipClass" rdfs:comment="Indicates the class of individuals that are a member of a Group">
+    <!-- maybe we should just use SPARQL or Rules, instead of trying to use OWL here -->
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#AnnotationProperty"/>
+    <!-- Added to keep OWL DL from bluescreening. DON'T CROSS THE STREAMERS, etc. -->
+    <!-- This may get dropped if it means non-DL tools don't expose it as a real property.
+	 Should be fine though; I think only OWL stuff cares about AnnotationProperty.
+	 Dan									 -->
+
+<!--    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Group"/> prose only for now...-->
+<!--    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/> -->
+<!--    <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Class"/> -->
+
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+
+
+  <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/birthday" vs:term_status="unstable" rdfs:label="birthday" rdfs:comment="The birthday of this Agent, represented in mm-dd string form, eg. '12-31'.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+  </rdf:Property>
+
+   <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/age" vs:term_status="unstable" rdfs:label="age" rdfs:comment="The age in years of some agent.">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+     <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+     <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+     <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+     <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+   </rdf:Property>
+
+   <rdf:Property rdf:about="http://xmlns.com/foaf/0.1/status" vs:term_status="unstable" rdfs:label="status" rdfs:comment="A string expressing what the user is happy for the general public (normally) to know about their current activity.">
+     <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+     <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+     <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+     <rdfs:isDefinedBy rdf:resource="http://xmlns.com/foaf/0.1/"/>
+   </rdf:Property>
+
+</rdf:RDF>
+
diff --git a/ontologies/full_ontobench_test.ttl b/ontologies/full_ontobench_test.ttl
new file mode 100644
index 0000000..faecc84
--- /dev/null
+++ b/ontologies/full_ontobench_test.ttl
@@ -0,0 +1,10595 @@
+@prefix : <http://webvowl.steffen-lohmann.de/ontology/1/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix xml: <http://www.w3.org/XML/1998/namespace> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@base <http://webvowl.steffen-lohmann.de/ontology/1/> .
+
+<http://webvowl.steffen-lohmann.de/ontology/1/> rdf:type owl:Ontology ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/title> "Benchmark Ontology"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/terms/date> "2016-05-01"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/terms/title> "Benchmark Ontology"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/date> "2016-05-01"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/identifier> "http://webvowl.steffen-lohmann.de/ontology/1/"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/creator> "Ontology Visualization Benchmark Generator"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/terms/description> "Benchmark ontology created with the Ontology Visualization Benchmark Generator"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/publisher> "Ontology Visualization Benchmark Generator"^^xsd:string ;
+                                                
+                                                rdfs:label "Benchmark Ontology"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/contributor> "Vincent Link"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/description> "Benchmark ontology created with the Ontology Visualization Benchmark Generator"^^xsd:string ;
+                                                
+                                                owl:versionInfo "1.0"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/terms/identifier> "http://webvowl.steffen-lohmann.de/ontology/1/"^^xsd:string ;
+                                                
+                                                rdfs:comment "Benchmark ontology created with the Ontology Visualization Benchmark Generator"^^xsd:string .
+
+
+#################################################################
+#
+#    Annotation properties
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/customAnnotationProperty
+
+:customAnnotationProperty rdf:type owl:AnnotationProperty .
+
+
+
+
+
+#################################################################
+#
+#    Datatypes
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataOneOf
+
+:DataOneOf rdf:type rdfs:Datatype ;
+           
+           owl:equivalentClass [ rdf:type rdfs:Datatype ;
+                                 owl:oneOf [ rdf:type rdf:List ;
+                                             rdf:first "DataOneOf_Literal1"^^xsd:string ;
+                                             rdf:rest [ rdf:type rdf:List ;
+                                                        rdf:first "DataOneOf_Literal2"^^xsd:string ;
+                                                        rdf:rest [ rdf:type rdf:List ;
+                                                                   rdf:first "DataOneOf_Literal3"^^xsd:string ;
+                                                                   rdf:rest rdf:nil
+                                                                 ]
+                                                      ]
+                                           ]
+                               ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataOneOf_EL
+
+:DataOneOf_EL rdf:type rdfs:Datatype ;
+              
+              owl:equivalentClass [ rdf:type rdfs:Datatype ;
+                                    owl:oneOf [ rdf:type rdf:List ;
+                                                rdf:first "DataOneOf_EL_Literal1"^^xsd:string ;
+                                                rdf:rest rdf:nil
+                                              ]
+                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataUnionOf_Datatype1
+
+:DataUnionOf_Datatype1 rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataUnionOf_Datatype2
+
+:DataUnionOf_Datatype2 rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DatatypeIntersectionOf_Datatype1
+
+:DatatypeIntersectionOf_Datatype1 rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DatatypeIntersectionOf_Datatype2
+
+:DatatypeIntersectionOf_Datatype2 rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DatatypeRestrictionDatatype
+
+:DatatypeRestrictionDatatype rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/RdfsDatatype
+
+:RdfsDatatype rdf:type rdfs:Datatype .
+
+
+
+
+
+#################################################################
+#
+#    Object Properties
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DeprecatedProperty
+
+:DeprecatedProperty rdf:type owl:ObjectProperty ;
+                    
+                    rdfs:domain :Class18 ;
+                    
+                    rdfs:range :DeprecatedPropertyRange ;
+                    
+                    owl:deprecated "true"^^xsd:boolean .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_1
+
+:EightParallelProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_2
+
+:EightParallelProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_3
+
+:EightParallelProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_4
+
+:EightParallelProperties_4 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_5
+
+:EightParallelProperties_5 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_6
+
+:EightParallelProperties_6 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_7
+
+:EightParallelProperties_7 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_8
+
+:EightParallelProperties_8 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveParallelProperties_1
+
+:FiveParallelProperties_1 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveParallelProperties_2
+
+:FiveParallelProperties_2 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveParallelProperties_3
+
+:FiveParallelProperties_3 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveParallelProperties_4
+
+:FiveParallelProperties_4 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveParallelProperties_5
+
+:FiveParallelProperties_5 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FourParallelProperties_1
+
+:FourParallelProperties_1 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FourParallelPropertiesDomain ;
+                          
+                          rdfs:range :FiveParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FourParallelProperties_2
+
+:FourParallelProperties_2 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FourParallelPropertiesDomain ;
+                          
+                          rdfs:range :FiveParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FourParallelProperties_3
+
+:FourParallelProperties_3 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FourParallelPropertiesDomain ;
+                          
+                          rdfs:range :FiveParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FourParallelProperties_4
+
+:FourParallelProperties_4 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FourParallelPropertiesDomain ;
+                          
+                          rdfs:range :FiveParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_1
+
+:SevenParallelProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_2
+
+:SevenParallelProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_3
+
+:SevenParallelProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_4
+
+:SevenParallelProperties_4 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_5
+
+:SevenParallelProperties_5 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_6
+
+:SevenParallelProperties_6 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_7
+
+:SevenParallelProperties_7 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelProperties_1
+
+:SixParallelProperties_1 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelProperties_2
+
+:SixParallelProperties_2 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelProperties_3
+
+:SixParallelProperties_3 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelProperties_4
+
+:SixParallelProperties_4 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelProperties_5
+
+:SixParallelProperties_5 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelProperties_6
+
+:SixParallelProperties_6 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThreeParallelProperties_1
+
+:ThreeParallelProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :ThreeParallelPropertiesDomain ;
+                           
+                           rdfs:range :FourParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThreeParallelProperties_2
+
+:ThreeParallelProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :ThreeParallelPropertiesDomain ;
+                           
+                           rdfs:range :FourParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThreeParallelProperties_3
+
+:ThreeParallelProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :ThreeParallelPropertiesDomain ;
+                           
+                           rdfs:range :FourParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TwoParallelProperties_1
+
+:TwoParallelProperties_1 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :TwoParallelPropertiesDomain ;
+                         
+                         rdfs:range :ThreeParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TwoParallelProperties_2
+
+:TwoParallelProperties_2 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :TwoParallelPropertiesDomain ;
+                         
+                         rdfs:range :ThreeParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/allDisjointObjectProperties_Property1
+
+:allDisjointObjectProperties_Property1 rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class1 ;
+                                       
+                                       rdfs:range :DisjointObjectProperty_Range1 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/allDisjointObjectProperties_Property2
+
+:allDisjointObjectProperties_Property2 rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class1 ;
+                                       
+                                       rdfs:range :DisjointObjectProperty_Range2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/allDisjointObjectProperties_Property3
+
+:allDisjointObjectProperties_Property3 rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class1 ;
+                                       
+                                       rdfs:range :DisjointObjectProperty_Range3 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/asymmetricProperty
+
+:asymmetricProperty rdf:type owl:ObjectProperty ,
+                             owl:AsymmetricProperty ;
+                    
+                    rdfs:domain :Class1 ;
+                    
+                    rdfs:range :AsymmetricObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_1
+
+:eightSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_2
+
+:eightSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_3
+
+:eightSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_4
+
+:eightSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_5
+
+:eightSymmetricProperties_5 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_6
+
+:eightSymmetricProperties_6 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_7
+
+:eightSymmetricProperties_7 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_8
+
+:eightSymmetricProperties_8 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/equivalentObjectProperty_1
+
+:equivalentObjectProperty_1 rdf:type owl:ObjectProperty ;
+                            
+                            owl:equivalentProperty :equivalentObjectProperty_2 ;
+                            
+                            rdfs:domain :Class23 ;
+                            
+                            rdfs:range :EquivalentObjectProperty_Range1 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/equivalentObjectProperty_2
+
+:equivalentObjectProperty_2 rdf:type owl:ObjectProperty ;
+                            
+                            owl:equivalentProperty :equivalentObjectProperty_3 ;
+                            
+                            rdfs:domain :Class23 ;
+                            
+                            rdfs:range :EquivalentObjectProperty_Range2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/equivalentObjectProperty_3
+
+:equivalentObjectProperty_3 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :Class23 ;
+                            
+                            rdfs:range :EquivalentObjectProperty_Range3 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fiveSymmetricProperties_1
+
+:fiveSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fiveSymmetricProperties_2
+
+:fiveSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fiveSymmetricProperties_3
+
+:fiveSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fiveSymmetricProperties_4
+
+:fiveSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fiveSymmetricProperties_5
+
+:fiveSymmetricProperties_5 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fourSymmetricProperties_1
+
+:fourSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FourSymmetricProperties ;
+                           
+                           rdfs:range :FourSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fourSymmetricProperties_2
+
+:fourSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FourSymmetricProperties ;
+                           
+                           rdfs:range :FourSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fourSymmetricProperties_3
+
+:fourSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FourSymmetricProperties ;
+                           
+                           rdfs:range :FourSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fourSymmetricProperties_4
+
+:fourSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FourSymmetricProperties ;
+                           
+                           rdfs:range :FourSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/functionalObjectProperty
+
+:functionalObjectProperty rdf:type owl:ObjectProperty ,
+                                   owl:FunctionalProperty ;
+                          
+                          rdfs:domain :Class23 ;
+                          
+                          rdfs:range :FunctionalObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/hasKeyProperty_2
+
+:hasKeyProperty_2 rdf:type owl:ObjectProperty ;
+                  
+                  rdfs:domain :HasKeyClass ;
+                  
+                  rdfs:range :HasKeyPropertyRange_2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/hasSelfProperty
+
+:hasSelfProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/inverseFunctionalObjectProperty
+
+:inverseFunctionalObjectProperty rdf:type owl:ObjectProperty ,
+                                          owl:InverseFunctionalProperty ;
+                                 
+                                 rdfs:domain :Class23 ;
+                                 
+                                 rdfs:range :InverseFunctionalObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/inverseProperty
+
+:inverseProperty rdf:type owl:ObjectProperty ;
+                 
+                 owl:inverseOf :nonInverseProperty ;
+                 
+                 rdfs:domain :InverseOfPropertyRange ;
+                 
+                 rdfs:range :Class23 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/irreflexiveObjectProperty
+
+:irreflexiveObjectProperty rdf:type owl:ObjectProperty ,
+                                    owl:IrreflexiveProperty ;
+                           
+                           rdfs:domain :Class23 ;
+                           
+                           rdfs:range :IrreflexiveObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/negativeObjectPropertyAssertionProperty
+
+:negativeObjectPropertyAssertionProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/noDomainAndRangeObjectProperty
+
+:noDomainAndRangeObjectProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/noDomainObjectProperty
+
+:noDomainObjectProperty rdf:type owl:ObjectProperty ;
+                        
+                        rdfs:range :Range .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/noRangeObjectProperty
+
+:noRangeObjectProperty rdf:type owl:ObjectProperty ;
+                       
+                       rdfs:domain :Domain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/nonInverseProperty
+
+:nonInverseProperty rdf:type owl:ObjectProperty ;
+                    
+                    rdfs:domain :Class23 ;
+                    
+                    rdfs:range :InverseOfPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectAllValuesFromProperty
+
+:objectAllValuesFromProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectExactCardinalityProperty
+
+:objectExactCardinalityProperty rdf:type owl:ObjectProperty ;
+                                
+                                rdfs:domain :Class1 ;
+                                
+                                rdfs:range :ObjectExactCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectExactCardinalityProperty_Lite
+
+:objectExactCardinalityProperty_Lite rdf:type owl:ObjectProperty ;
+                                     
+                                     rdfs:domain :Class18 ;
+                                     
+                                     rdfs:range :ObjectExactCardinalityRange_Lite .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectExactQualifiedCardinalityProperty
+
+:objectExactQualifiedCardinalityProperty rdf:type owl:ObjectProperty ;
+                                         
+                                         rdfs:domain :Class40 ;
+                                         
+                                         rdfs:range :ObjectExactQualifiedCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectHasValueProperty
+
+:objectHasValueProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMaxCardinalityProperty
+
+:objectMaxCardinalityProperty rdf:type owl:ObjectProperty ;
+                              
+                              rdfs:domain :Class23 ;
+                              
+                              rdfs:range :ObjectMaxCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMaxCardinalityProperty_LiteRL
+
+:objectMaxCardinalityProperty_LiteRL rdf:type owl:ObjectProperty ;
+                                     
+                                     rdfs:domain :Class23 ;
+                                     
+                                     rdfs:range :ObjectMaxCardinalityRange_LiteRL .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMaxQualifiedCardinalityProperty
+
+:objectMaxQualifiedCardinalityProperty rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class40 ;
+                                       
+                                       rdfs:range :ObjectMaxQualifiedCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMaxQualifiedCardinalityProperty_RL
+
+:objectMaxQualifiedCardinalityProperty_RL rdf:type owl:ObjectProperty ;
+                                          
+                                          rdfs:domain :Class40 ;
+                                          
+                                          rdfs:range :ObjectMaxQualifiedCardinalityRange_RL .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMinCardinalityProperty
+
+:objectMinCardinalityProperty rdf:type owl:ObjectProperty ;
+                              
+                              rdfs:domain :Class40 ;
+                              
+                              rdfs:range :ObjectMinCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMinCardinalityProperty_Lite
+
+:objectMinCardinalityProperty_Lite rdf:type owl:ObjectProperty ;
+                                   
+                                   rdfs:domain :Class40 ;
+                                   
+                                   rdfs:range :ObjectMinCardinalityRange_Lite .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMinQualifiedCardinalityProperty
+
+:objectMinQualifiedCardinalityProperty rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class40 ;
+                                       
+                                       rdfs:range :ObjectMinQualifiedCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectProperty
+
+:objectProperty rdf:type owl:ObjectProperty ;
+                
+                rdfs:domain :Class1 ;
+                
+                rdfs:range :ObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectPropertyDisjointWith_Property1
+
+:objectPropertyDisjointWith_Property1 rdf:type owl:ObjectProperty ;
+                                      
+                                      rdfs:domain :Class40 ;
+                                      
+                                      rdfs:range :ObjectPropertyDisjointWith_Range1 ;
+                                      
+                                      owl:propertyDisjointWith :objectPropertyDisjointWith_Property2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectPropertyDisjointWith_Property2
+
+:objectPropertyDisjointWith_Property2 rdf:type owl:ObjectProperty ;
+                                      
+                                      rdfs:domain :Class40 ;
+                                      
+                                      rdfs:range :ObjectPropertyDisjointWith_Range2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectSomeValuesFromProperty
+
+:objectSomeValuesFromProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectSomeValuesFromProperty_RL
+
+:objectSomeValuesFromProperty_RL rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/oneSymmetricProperty_1
+
+:oneSymmetricProperty_1 rdf:type owl:ObjectProperty ;
+                        
+                        rdfs:domain :OneSymmetricProperty ;
+                        
+                        rdfs:range :OneSymmetricProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/propertyChainProperty_DoubleStep
+
+:propertyChainProperty_DoubleStep rdf:type owl:ObjectProperty ;
+                                  
+                                  rdfs:domain :PropertyChainEnd ;
+                                  
+                                  rdfs:range :Class40 ;
+                                  
+                                  owl:propertyChainAxiom ( :propertyChainProperty_SingleStep
+                                                           :propertyChainProperty_SingleStep
+                                                         ) .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/propertyChainProperty_SingleStep
+
+:propertyChainProperty_SingleStep rdf:type owl:ObjectProperty ;
+                                  
+                                  rdfs:domain :PropertyChainEnd ,
+                                              :PropertyChainMiddle ;
+                                  
+                                  rdfs:range :Class40 ,
+                                             :PropertyChainMiddle .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/propertyWithInfos
+
+:propertyWithInfos rdf:type owl:ObjectProperty ;
+                   
+                   rdfs:domain :Class57 ;
+                   
+                   rdfs:range :ClassWithInfos ;
+                   
+                   rdfs:comment "Comment of a property"@en ,
+                                "Comment of a property (undefined language)"^^xsd:string ,
+                                "Kommentar einer Property"@de ,
+                                "プロパティのコメント"@ja ;
+                   
+                   rdfs:label "Bezeichnung einer Property"@de ,
+                              "Label of a property"@en ,
+                              "Label of a property (undefined language)"^^xsd:string ,
+                              "プロパティの指定"@ja .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/reflexiveObjectProperty
+
+:reflexiveObjectProperty rdf:type owl:ObjectProperty ,
+                                  owl:ReflexiveProperty ;
+                         
+                         rdfs:domain :Class57 ;
+                         
+                         rdfs:range :ReflexiveObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_1
+
+:sevenSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_2
+
+:sevenSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_3
+
+:sevenSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_4
+
+:sevenSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_5
+
+:sevenSymmetricProperties_5 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_6
+
+:sevenSymmetricProperties_6 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_7
+
+:sevenSymmetricProperties_7 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sixSymmetricProperties_1
+
+:sixSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sixSymmetricProperties_2
+
+:sixSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sixSymmetricProperties_3
+
+:sixSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sixSymmetricProperties_4
+
+:sixSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sixSymmetricProperties_5
+
+:sixSymmetricProperties_5 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sixSymmetricProperties_6
+
+:sixSymmetricProperties_6 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/subObjectProperty
+
+:subObjectProperty rdf:type owl:ObjectProperty ;
+                   
+                   rdfs:subPropertyOf :superObjectProperty ;
+                   
+                   rdfs:domain :Class57 ;
+                   
+                   rdfs:range :Class66 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/superObjectProperty
+
+:superObjectProperty rdf:type owl:ObjectProperty ;
+                     
+                     rdfs:domain :Class66 ;
+                     
+                     rdfs:range :Class67 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/symmetricObjectProperty
+
+:symmetricObjectProperty rdf:type owl:ObjectProperty ,
+                                  owl:SymmetricProperty ;
+                         
+                         rdfs:domain :Class57 ;
+                         
+                         rdfs:range :SymmetricObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/threeSymmetricProperties_1
+
+:threeSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :ThreeSymmetricProperties ;
+                            
+                            rdfs:range :ThreeSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/threeSymmetricProperties_2
+
+:threeSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :ThreeSymmetricProperties ;
+                            
+                            rdfs:range :ThreeSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/threeSymmetricProperties_3
+
+:threeSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :ThreeSymmetricProperties ;
+                            
+                            rdfs:range :ThreeSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/transitiveObjectProperty
+
+:transitiveObjectProperty rdf:type owl:ObjectProperty ,
+                                   owl:TransitiveProperty ;
+                          
+                          rdfs:domain :Class57 ;
+                          
+                          rdfs:range :TransitiveObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/twoSymmetricProperties_1
+
+:twoSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :TwoSymmetricProperties ;
+                          
+                          rdfs:range :TwoSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/twoSymmetricProperties_2
+
+:twoSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :TwoSymmetricProperties ;
+                          
+                          rdfs:range :TwoSymmetricProperties .
+
+
+
+###  http://www.w3.org/2002/07/owl#bottomObjectProperty
+
+owl:bottomObjectProperty rdfs:domain :Class1 ;
+                         
+                         rdfs:range :BottomObjectPropertyRange .
+
+
+
+###  http://www.w3.org/2002/07/owl#topObjectProperty
+
+owl:topObjectProperty rdfs:domain :Class1 ;
+                      
+                      rdfs:range :TopObjectPropertyRange .
+
+
+
+
+
+#################################################################
+#
+#    Data properties
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataUnionOf
+
+:DataUnionOf rdf:type owl:DatatypeProperty ;
+             
+             rdfs:domain :Class57 ;
+             
+             rdfs:range [ rdf:type rdfs:Datatype ;
+                          owl:unionOf ( :DataUnionOf_Datatype1
+                                        :DataUnionOf_Datatype2
+                                      )
+                        ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/allDisjointDataProperties_Property1
+
+:allDisjointDataProperties_Property1 rdf:type owl:DatatypeProperty ;
+                                     
+                                     rdfs:domain :Class1 ;
+                                     
+                                     rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/allDisjointDataProperties_Property2
+
+:allDisjointDataProperties_Property2 rdf:type owl:DatatypeProperty ;
+                                     
+                                     rdfs:domain :Class1 ;
+                                     
+                                     rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/allDisjointDataProperties_Property3
+
+:allDisjointDataProperties_Property3 rdf:type owl:DatatypeProperty ;
+                                     
+                                     rdfs:domain :Class1 ;
+                                     
+                                     rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataAllValuesFromProperty
+
+:dataAllValuesFromProperty rdf:type owl:DatatypeProperty ;
+                           
+                           rdfs:domain :Class1 ;
+                           
+                           rdfs:range xsd:integer .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataComplementOfProperty
+
+:dataComplementOfProperty rdf:type owl:DatatypeProperty ;
+                          
+                          rdfs:domain :Class18 ;
+                          
+                          rdfs:range [ rdf:type rdfs:Datatype ;
+                                       owl:datatypeComplementOf xsd:string
+                                     ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataExactCardinality
+
+:dataExactCardinality rdf:type owl:DatatypeProperty ;
+                      
+                      rdfs:domain :Class1 ;
+                      
+                      rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataExactQualifiedCardinality
+
+:dataExactQualifiedCardinality rdf:type owl:DatatypeProperty ;
+                               
+                               rdfs:domain :Class57 ;
+                               
+                               rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataHasValueProperty
+
+:dataHasValueProperty rdf:type owl:DatatypeProperty ;
+                      
+                      rdfs:domain :Class23 ;
+                      
+                      rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataMaxCardinality
+
+:dataMaxCardinality rdf:type owl:DatatypeProperty ;
+                    
+                    rdfs:domain :Class23 ;
+                    
+                    rdfs:range xsd:float .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataMaxCardinality_RL
+
+:dataMaxCardinality_RL rdf:type owl:DatatypeProperty ;
+                       
+                       rdfs:domain :Class40 ;
+                       
+                       rdfs:range xsd:float .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataMaxQualifiedCardinality
+
+:dataMaxQualifiedCardinality rdf:type owl:DatatypeProperty ;
+                             
+                             rdfs:domain :Class40 ;
+                             
+                             rdfs:range rdfs:Literal .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataMaxQualifiedCardinality_RL
+
+:dataMaxQualifiedCardinality_RL rdf:type owl:DatatypeProperty ;
+                                
+                                rdfs:domain :Class40 ;
+                                
+                                rdfs:range rdfs:Literal .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataMinCardinality
+
+:dataMinCardinality rdf:type owl:DatatypeProperty ;
+                    
+                    rdfs:domain :Class40 ;
+                    
+                    rdfs:range xsd:boolean .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataMinQualifiedCardinality
+
+:dataMinQualifiedCardinality rdf:type owl:DatatypeProperty ;
+                             
+                             rdfs:domain :Class40 ;
+                             
+                             rdfs:range xsd:float .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataPropertyDisjointWith_Property1
+
+:dataPropertyDisjointWith_Property1 rdf:type owl:DatatypeProperty ;
+                                    
+                                    rdfs:domain :Class40 ;
+                                    
+                                    rdfs:range xsd:integer ;
+                                    
+                                    owl:propertyDisjointWith :dataPropertyDisjointWith_Property2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataPropertyDisjointWith_Property2
+
+:dataPropertyDisjointWith_Property2 rdf:type owl:DatatypeProperty ;
+                                    
+                                    rdfs:domain :Class40 ;
+                                    
+                                    rdfs:range xsd:decimal .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataSomeValuesFromProperty
+
+:dataSomeValuesFromProperty rdf:type owl:DatatypeProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataSomeValuesFromProperty_RL
+
+:dataSomeValuesFromProperty_RL rdf:type owl:DatatypeProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/datatypeIntersectionOfProperty
+
+:datatypeIntersectionOfProperty rdf:type owl:DatatypeProperty ;
+                                
+                                rdfs:domain :Class23 ;
+                                
+                                rdfs:range [ rdf:type rdfs:Datatype ;
+                                             owl:intersectionOf ( :DatatypeIntersectionOf_Datatype1
+                                                                  :DatatypeIntersectionOf_Datatype2
+                                                                )
+                                           ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/datatypeIntersectionOfProperty_OWL2
+
+:datatypeIntersectionOfProperty_OWL2 rdf:type owl:DatatypeProperty ;
+                                     
+                                     rdfs:domain :Class23 ;
+                                     
+                                     rdfs:range [ rdf:type rdfs:Datatype ;
+                                                  owl:intersectionOf ( xsd:dateTime
+                                                                       xsd:string
+                                                                     )
+                                                ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/datatypeProperty
+
+:datatypeProperty rdf:type owl:DatatypeProperty ;
+                  
+                  rdfs:domain :Class18 ;
+                  
+                  rdfs:range xsd:integer .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/datatypeRestrictionProperty
+
+:datatypeRestrictionProperty rdf:type owl:DatatypeProperty ;
+                             
+                             rdfs:domain :Class57 ;
+                             
+                             rdfs:range [ rdf:type rdfs:Datatype ;
+                                          owl:onDatatype :DatatypeRestrictionDatatype ;
+                                          owl:withRestrictions ( [ xsd:minLength 10
+                                                                 ]
+                                                                 [ xsd:pattern "DatatypeRestrictionLiteral"^^xsd:string
+                                                                 ]
+                                                               )
+                                        ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/equivalentDataProperty_1
+
+:equivalentDataProperty_1 rdf:type owl:DatatypeProperty ;
+                          
+                          owl:equivalentProperty :equivalentDataProperty_2 ;
+                          
+                          rdfs:domain :Class23 ;
+                          
+                          rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/equivalentDataProperty_2
+
+:equivalentDataProperty_2 rdf:type owl:DatatypeProperty ;
+                          
+                          owl:equivalentProperty :equivalentDataProperty_3 ;
+                          
+                          rdfs:domain :Class23 ;
+                          
+                          rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/equivalentDataProperty_3
+
+:equivalentDataProperty_3 rdf:type owl:DatatypeProperty ;
+                          
+                          rdfs:domain :Class23 ;
+                          
+                          rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/functionalDataProperty
+
+:functionalDataProperty rdf:type owl:DatatypeProperty ,
+                                 owl:FunctionalProperty ;
+                        
+                        rdfs:domain :Class23 ;
+                        
+                        rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/hasKeyProperty_1
+
+:hasKeyProperty_1 rdf:type owl:DatatypeProperty ;
+                  
+                  rdfs:domain :HasKeyClass ;
+                  
+                  rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/negativeDataPropertyAssertionProperty
+
+:negativeDataPropertyAssertionProperty rdf:type owl:DatatypeProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/noDomainAndRangeDataProperty
+
+:noDomainAndRangeDataProperty rdf:type owl:DatatypeProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/noDomainDataProperty
+
+:noDomainDataProperty rdf:type owl:DatatypeProperty ;
+                      
+                      rdfs:range rdfs:Literal .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/noRangeDataProperty
+
+:noRangeDataProperty rdf:type owl:DatatypeProperty ;
+                     
+                     rdfs:domain :Domain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/subDataProperty
+
+:subDataProperty rdf:type owl:DatatypeProperty ;
+                 
+                 rdfs:subPropertyOf :superDataProperty ;
+                 
+                 rdfs:domain :Class57 ;
+                 
+                 rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/superDataProperty
+
+:superDataProperty rdf:type owl:DatatypeProperty ;
+                   
+                   rdfs:domain :Class57 ;
+                   
+                   rdfs:range xsd:string .
+
+
+
+###  http://www.w3.org/2002/07/owl#bottomDataProperty
+
+owl:bottomDataProperty rdfs:domain :Class1 ;
+                       
+                       rdfs:range xsd:integer .
+
+
+
+###  http://www.w3.org/2002/07/owl#topDataProperty
+
+owl:topDataProperty rdfs:domain :Class57 ;
+                    
+                    rdfs:range xsd:integer .
+
+
+
+
+
+#################################################################
+#
+#    Classes
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDisjointClasses_Class1
+
+:AllDisjointClasses_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDisjointClasses_Class2
+
+:AllDisjointClasses_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDisjointClasses_Class3
+
+:AllDisjointClasses_Class3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AsymmetricObjectPropertyRange
+
+:AsymmetricObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/BottomObjectPropertyRange
+
+:BottomObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class1
+
+:Class1 rdf:type owl:Class ;
+        
+        :customAnnotationProperty "Custom Annotation Value"^^xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class18
+
+:Class18 rdf:type owl:Class ;
+         
+         owl:equivalentClass :EquivalentClass_1 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class23
+
+:Class23 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class40
+
+:Class40 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class57
+
+:Class57 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class66
+
+:Class66 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class67
+
+:Class67 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ClassWithInfos
+
+:ClassWithInfos rdfs:comment "Comment of a class"@en ,
+                             "Comment of a class (undefined language)"^^xsd:string ,
+                             "Kommentar einer Klasse"@de ,
+                             "どうもありがとうミスターロボット"@ja ;
+                
+                rdfs:label "Bezeichnung einer Klasse"@de ,
+                           "Label of a class"@en ,
+                           "Label of a class (undefined language)"^^xsd:string ,
+                           "どうもありがとうミスターロボット"@ja .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataAllValuesFrom
+
+:DataAllValuesFrom rdf:type owl:Class ;
+                   
+                   rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                     owl:onProperty :dataAllValuesFromProperty ;
+                                     owl:allValuesFrom xsd:integer
+                                   ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataExactCardinalityRange
+
+:DataExactCardinalityRange rdf:type owl:Class ;
+                           
+                           rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                             owl:onProperty :dataExactCardinality ;
+                                             owl:cardinality "11"^^xsd:nonNegativeInteger
+                                           ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataExactQualifiedCardinalityRange
+
+:DataExactQualifiedCardinalityRange rdf:type owl:Class ;
+                                    
+                                    rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                      owl:onProperty :dataExactQualifiedCardinality ;
+                                                      owl:qualifiedCardinality "12"^^xsd:nonNegativeInteger ;
+                                                      owl:onDataRange xsd:dateTime
+                                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataHasValue
+
+:DataHasValue rdf:type owl:Class ;
+              
+              rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                owl:onProperty :dataHasValueProperty ;
+                                owl:hasValue 6
+                              ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataMaxCardinalityRange
+
+:DataMaxCardinalityRange rdf:type owl:Class ;
+                         
+                         rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                           owl:onProperty :dataMaxCardinality ;
+                                           owl:maxCardinality "19"^^xsd:nonNegativeInteger
+                                         ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataMaxCardinalityRange_RL
+
+:DataMaxCardinalityRange_RL rdf:type owl:Class ;
+                            
+                            rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                              owl:onProperty :dataMaxCardinality_RL ;
+                                              owl:maxCardinality "1"^^xsd:nonNegativeInteger
+                                            ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataMaxQualifiedCardinalityRange
+
+:DataMaxQualifiedCardinalityRange rdf:type owl:Class ;
+                                  
+                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                    owl:onProperty :dataMaxQualifiedCardinality ;
+                                                    owl:maxQualifiedCardinality "18"^^xsd:nonNegativeInteger ;
+                                                    owl:onDataRange xsd:byte
+                                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataMaxQualifiedCardinalityRange_RL
+
+:DataMaxQualifiedCardinalityRange_RL rdf:type owl:Class ;
+                                     
+                                     rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                       owl:onProperty :dataMaxQualifiedCardinality_RL ;
+                                                       owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
+                                                       owl:onDataRange xsd:byte
+                                                     ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataMinCardinalityRange
+
+:DataMinCardinalityRange rdf:type owl:Class ;
+                         
+                         rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                           owl:onProperty :dataMinCardinality ;
+                                           owl:minCardinality "3"^^xsd:nonNegativeInteger
+                                         ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataMinQualifiedCardinalityRange
+
+:DataMinQualifiedCardinalityRange rdf:type owl:Class ;
+                                  
+                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                    owl:onProperty :dataMinQualifiedCardinality ;
+                                                    owl:minQualifiedCardinality "9"^^xsd:nonNegativeInteger ;
+                                                    owl:onDataRange xsd:dateTime
+                                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataSomeValuesFrom
+
+:DataSomeValuesFrom rdf:type owl:Class ;
+                    
+                    rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                      owl:onProperty :dataSomeValuesFromProperty ;
+                                      owl:someValuesFrom xsd:dateTime
+                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataSomeValuesFrom_RL
+
+:DataSomeValuesFrom_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DeprecatedClass
+
+:DeprecatedClass rdf:type owl:Class ;
+                 
+                 owl:deprecated "true"^^xsd:boolean .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DeprecatedPropertyRange
+
+:DeprecatedPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointObjectProperty_Range1
+
+:DisjointObjectProperty_Range1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointObjectProperty_Range2
+
+:DisjointObjectProperty_Range2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointObjectProperty_Range3
+
+:DisjointObjectProperty_Range3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointUnion
+
+:DisjointUnion rdf:type owl:Class ;
+               
+               owl:disjointUnionOf ( :DisjointUnion_Class1
+                                     :DisjointUnion_Class2
+                                   ) .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointUnion_Class1
+
+:DisjointUnion_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointUnion_Class2
+
+:DisjointUnion_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointWith_Class1
+
+:DisjointWith_Class1 rdf:type owl:Class ;
+                     
+                     owl:disjointWith :DisjointWith_Class2 ,
+                                      :DisjointWith_Class3 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointWith_Class2
+
+:DisjointWith_Class2 rdf:type owl:Class ;
+                     
+                     owl:disjointWith :DisjointWith_Class3 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointWith_Class3
+
+:DisjointWith_Class3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Domain
+
+:Domain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelPropertiesDomain
+
+:EightParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelPropertiesRange
+
+:EightParallelPropertiesRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightSymmetricProperties
+
+:EightSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EquivalentClass_1
+
+:EquivalentClass_1 rdf:type owl:Class ;
+                   
+                   owl:equivalentClass :EquivalentClass_2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EquivalentClass_2
+
+:EquivalentClass_2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EquivalentObjectProperty_Range1
+
+:EquivalentObjectProperty_Range1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EquivalentObjectProperty_Range2
+
+:EquivalentObjectProperty_Range2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EquivalentObjectProperty_Range3
+
+:EquivalentObjectProperty_Range3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveParallelPropertiesDomain
+
+:FiveParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveSymmetricProperties
+
+:FiveSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FourParallelPropertiesDomain
+
+:FourParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FourSymmetricProperties
+
+:FourSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FunctionalObjectPropertyRange
+
+:FunctionalObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HasKeyClass
+
+:HasKeyClass rdf:type owl:Class ;
+             
+             owl:hasKey ( :hasKeyProperty_2
+                          :hasKeyProperty_1
+                        ) .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HasKeyPropertyRange_2
+
+:HasKeyPropertyRange_2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HasSelfClass
+
+:HasSelfClass rdf:type owl:Class ;
+              
+              owl:equivalentClass [ rdf:type owl:Restriction ;
+                                    owl:onProperty :hasSelfProperty ;
+                                    owl:hasSelf "true"^^xsd:boolean
+                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals
+
+:HundredIndividuals rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/InverseFunctionalObjectPropertyRange
+
+:InverseFunctionalObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/InverseOfPropertyRange
+
+:InverseOfPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/IrreflexiveObjectPropertyRange
+
+:IrreflexiveObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/NoObjectComplementOf
+
+:NoObjectComplementOf rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectAllValuesFrom
+
+:ObjectAllValuesFrom rdf:type owl:Class ;
+                     
+                     rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                       owl:onProperty :objectAllValuesFromProperty ;
+                                       owl:allValuesFrom :ObjectAllValuesFromRange
+                                     ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectAllValuesFromRange
+
+:ObjectAllValuesFromRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectComplementOf
+
+:ObjectComplementOf rdf:type owl:Class ;
+                    
+                    rdfs:subClassOf [ rdf:type owl:Class ;
+                                      owl:complementOf :NoObjectComplementOf
+                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectExactCardinalityRange
+
+:ObjectExactCardinalityRange rdf:type owl:Class ;
+                             
+                             rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                               owl:onProperty :objectExactCardinalityProperty ;
+                                               owl:cardinality "4"^^xsd:nonNegativeInteger
+                                             ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectExactCardinalityRange_Lite
+
+:ObjectExactCardinalityRange_Lite rdf:type owl:Class ;
+                                  
+                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                    owl:onProperty :objectExactCardinalityProperty_Lite ;
+                                                    owl:cardinality "1"^^xsd:nonNegativeInteger
+                                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectExactQualifiedCardinalityRange
+
+:ObjectExactQualifiedCardinalityRange rdf:type owl:Class ;
+                                      
+                                      rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                        owl:onProperty :objectExactQualifiedCardinalityProperty ;
+                                                        owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
+                                                        owl:onClass :ObjectExactQualifiedCardinality_Qualifier
+                                                      ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectExactQualifiedCardinality_Qualifier
+
+:ObjectExactQualifiedCardinality_Qualifier rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectHasValue
+
+:ObjectHasValue rdf:type owl:Class ;
+                
+                rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                  owl:onProperty :objectHasValueProperty ;
+                                  owl:hasValue :ObjectHasValue_Individual
+                                ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectIntersectionOf
+
+:ObjectIntersectionOf rdf:type owl:Class ;
+                      
+                      owl:equivalentClass [ owl:intersectionOf ( :ObjectIntersectionOf_Class1
+                                                                 :ObjectIntersectionOf_Class2
+                                                               ) ;
+                                            rdf:type owl:Class
+                                          ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectIntersectionOf_Class1
+
+:ObjectIntersectionOf_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectIntersectionOf_Class2
+
+:ObjectIntersectionOf_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectIntersectionOf_QL
+
+:ObjectIntersectionOf_QL rdf:type owl:Class ;
+                         
+                         rdfs:subClassOf [ owl:intersectionOf ( :ObjectIntersectionOf_QL_Class1
+                                                                :ObjectIntersectionOf_QL_Class2
+                                                              ) ;
+                                           rdf:type owl:Class
+                                         ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectIntersectionOf_QL_Class1
+
+:ObjectIntersectionOf_QL_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectIntersectionOf_QL_Class2
+
+:ObjectIntersectionOf_QL_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMaxCardinalityRange
+
+:ObjectMaxCardinalityRange rdf:type owl:Class ;
+                           
+                           rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                             owl:onProperty :objectMaxCardinalityProperty ;
+                                             owl:maxCardinality "8"^^xsd:nonNegativeInteger
+                                           ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMaxCardinalityRange_LiteRL
+
+:ObjectMaxCardinalityRange_LiteRL rdf:type owl:Class ;
+                                  
+                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                    owl:onProperty :objectMaxCardinalityProperty_LiteRL ;
+                                                    owl:maxCardinality "1"^^xsd:nonNegativeInteger
+                                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMaxQualifiedCardinalityRange
+
+:ObjectMaxQualifiedCardinalityRange rdf:type owl:Class ;
+                                    
+                                    rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                      owl:onProperty :objectMaxQualifiedCardinalityProperty ;
+                                                      owl:maxQualifiedCardinality "3"^^xsd:nonNegativeInteger ;
+                                                      owl:onClass :ObjectMaxQualifiedCardinality_Qualifier
+                                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMaxQualifiedCardinalityRange_RL
+
+:ObjectMaxQualifiedCardinalityRange_RL rdf:type owl:Class ;
+                                       
+                                       rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                         owl:onProperty :objectMaxQualifiedCardinalityProperty_RL ;
+                                                         owl:maxQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
+                                                         owl:onClass :ObjectMaxQualifiedCardinality_RL_Qualifier
+                                                       ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMaxQualifiedCardinality_Qualifier
+
+:ObjectMaxQualifiedCardinality_Qualifier rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMaxQualifiedCardinality_RL_Qualifier
+
+:ObjectMaxQualifiedCardinality_RL_Qualifier rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMinCardinalityRange
+
+:ObjectMinCardinalityRange rdf:type owl:Class ;
+                           
+                           rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                             owl:onProperty :objectMinCardinalityProperty ;
+                                             owl:minCardinality "2"^^xsd:nonNegativeInteger
+                                           ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMinCardinalityRange_Lite
+
+:ObjectMinCardinalityRange_Lite rdf:type owl:Class ;
+                                
+                                rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                  owl:onProperty :objectMinCardinalityProperty_Lite ;
+                                                  owl:minCardinality "0"^^xsd:nonNegativeInteger
+                                                ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMinQualifiedCardinalityRange
+
+:ObjectMinQualifiedCardinalityRange rdf:type owl:Class ;
+                                    
+                                    rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                      owl:onProperty :objectMinQualifiedCardinalityProperty ;
+                                                      owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
+                                                      owl:onClass :ObjectMinQualifiedCardinality_Qualifier
+                                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMinQualifiedCardinality_Qualifier
+
+:ObjectMinQualifiedCardinality_Qualifier rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf
+
+:ObjectOneOf rdf:type owl:Class ;
+             
+             owl:equivalentClass [ rdf:type owl:Class ;
+                                   owl:oneOf ( :ObjectOneOf_Individual1
+                                               :ObjectOneOf_Individual2
+                                             )
+                                 ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_EL
+
+:ObjectOneOf_EL rdf:type owl:Class ;
+                
+                rdfs:subClassOf [ rdf:type owl:Class ;
+                                  owl:oneOf ( :ObjectOneOf_EL_Individual
+                                            )
+                                ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_RL
+
+:ObjectOneOf_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectPropertyDisjointWith_Range1
+
+:ObjectPropertyDisjointWith_Range1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectPropertyDisjointWith_Range2
+
+:ObjectPropertyDisjointWith_Range2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectPropertyRange
+
+:ObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectSomeValuesFrom
+
+:ObjectSomeValuesFrom rdf:type owl:Class ;
+                      
+                      rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                        owl:onProperty :objectSomeValuesFromProperty ;
+                                        owl:someValuesFrom :ObjectSomeValuesFromRange
+                                      ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectSomeValuesFromRange
+
+:ObjectSomeValuesFromRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectSomeValuesFromRange_RL
+
+:ObjectSomeValuesFromRange_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectSomeValuesFrom_RL
+
+:ObjectSomeValuesFrom_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf
+
+:ObjectUnionOf rdf:type owl:Class ;
+               
+               rdfs:subClassOf [ rdf:type owl:Class ;
+                                 owl:unionOf ( :ObjectUnionOf_Class1
+                                               :ObjectUnionOf_Class2
+                                               :ObjectUnionOf_Class3
+                                             )
+                               ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_Class1
+
+:ObjectUnionOf_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_Class2
+
+:ObjectUnionOf_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_Class3
+
+:ObjectUnionOf_Class3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_RL
+
+:ObjectUnionOf_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_RL_Class1
+
+:ObjectUnionOf_RL_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_RL_Class2
+
+:ObjectUnionOf_RL_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_RL_Class3
+
+:ObjectUnionOf_RL_Class3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/OneSymmetricProperty
+
+:OneSymmetricProperty rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/PropertyChainEnd
+
+:PropertyChainEnd rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/PropertyChainMiddle
+
+:PropertyChainMiddle rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Range
+
+:Range rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ReflexiveObjectPropertyRange
+
+:ReflexiveObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelPropertiesDomain
+
+:SevenParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenSymmetricProperties
+
+:SevenSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelPropertiesDomain
+
+:SixParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixSymmetricProperties
+
+:SixSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SubClass
+
+:SubClass rdf:type owl:Class ;
+          
+          rdfs:subClassOf :SuperClass .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SuperClass
+
+:SuperClass rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SymmetricObjectPropertyRange
+
+:SymmetricObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals
+
+:TenIndividuals rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals
+
+:ThousandIndividuals rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThreeParallelPropertiesDomain
+
+:ThreeParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThreeSymmetricProperties
+
+:ThreeSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TopObjectPropertyRange
+
+:TopObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TransitiveObjectPropertyRange
+
+:TransitiveObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TwoParallelPropertiesDomain
+
+:TwoParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TwoSymmetricProperties
+
+:TwoSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://www.w3.org/2002/07/owl#Nothing
+
+owl:Nothing rdf:type owl:Class .
+
+
+
+###  http://www.w3.org/2002/07/owl#Thing
+
+owl:Thing rdf:type owl:Class .
+
+
+
+
+
+#################################################################
+#
+#    Individuals
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDifferent_Individual1
+
+:AllDifferent_Individual1 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDifferent_Individual2
+
+:AllDifferent_Individual2 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDifferent_Individual3
+
+:AllDifferent_Individual3 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDifferent_Individual4
+
+:AllDifferent_Individual4 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_1
+
+:HundredIndividuals_1 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_10
+
+:HundredIndividuals_10 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_100
+
+:HundredIndividuals_100 rdf:type owl:NamedIndividual ,
+                                 :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_11
+
+:HundredIndividuals_11 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_12
+
+:HundredIndividuals_12 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_13
+
+:HundredIndividuals_13 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_14
+
+:HundredIndividuals_14 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_15
+
+:HundredIndividuals_15 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_16
+
+:HundredIndividuals_16 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_17
+
+:HundredIndividuals_17 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_18
+
+:HundredIndividuals_18 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_19
+
+:HundredIndividuals_19 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_2
+
+:HundredIndividuals_2 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_20
+
+:HundredIndividuals_20 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_21
+
+:HundredIndividuals_21 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_22
+
+:HundredIndividuals_22 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_23
+
+:HundredIndividuals_23 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_24
+
+:HundredIndividuals_24 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_25
+
+:HundredIndividuals_25 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_26
+
+:HundredIndividuals_26 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_27
+
+:HundredIndividuals_27 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_28
+
+:HundredIndividuals_28 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_29
+
+:HundredIndividuals_29 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_3
+
+:HundredIndividuals_3 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_30
+
+:HundredIndividuals_30 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_31
+
+:HundredIndividuals_31 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_32
+
+:HundredIndividuals_32 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_33
+
+:HundredIndividuals_33 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_34
+
+:HundredIndividuals_34 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_35
+
+:HundredIndividuals_35 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_36
+
+:HundredIndividuals_36 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_37
+
+:HundredIndividuals_37 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_38
+
+:HundredIndividuals_38 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_39
+
+:HundredIndividuals_39 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_4
+
+:HundredIndividuals_4 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_40
+
+:HundredIndividuals_40 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_41
+
+:HundredIndividuals_41 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_42
+
+:HundredIndividuals_42 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_43
+
+:HundredIndividuals_43 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_44
+
+:HundredIndividuals_44 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_45
+
+:HundredIndividuals_45 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_46
+
+:HundredIndividuals_46 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_47
+
+:HundredIndividuals_47 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_48
+
+:HundredIndividuals_48 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_49
+
+:HundredIndividuals_49 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_5
+
+:HundredIndividuals_5 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_50
+
+:HundredIndividuals_50 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_51
+
+:HundredIndividuals_51 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_52
+
+:HundredIndividuals_52 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_53
+
+:HundredIndividuals_53 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_54
+
+:HundredIndividuals_54 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_55
+
+:HundredIndividuals_55 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_56
+
+:HundredIndividuals_56 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_57
+
+:HundredIndividuals_57 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_58
+
+:HundredIndividuals_58 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_59
+
+:HundredIndividuals_59 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_6
+
+:HundredIndividuals_6 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_60
+
+:HundredIndividuals_60 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_61
+
+:HundredIndividuals_61 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_62
+
+:HundredIndividuals_62 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_63
+
+:HundredIndividuals_63 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_64
+
+:HundredIndividuals_64 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_65
+
+:HundredIndividuals_65 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_66
+
+:HundredIndividuals_66 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_67
+
+:HundredIndividuals_67 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_68
+
+:HundredIndividuals_68 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_69
+
+:HundredIndividuals_69 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_7
+
+:HundredIndividuals_7 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_70
+
+:HundredIndividuals_70 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_71
+
+:HundredIndividuals_71 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_72
+
+:HundredIndividuals_72 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_73
+
+:HundredIndividuals_73 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_74
+
+:HundredIndividuals_74 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_75
+
+:HundredIndividuals_75 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_76
+
+:HundredIndividuals_76 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_77
+
+:HundredIndividuals_77 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_78
+
+:HundredIndividuals_78 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_79
+
+:HundredIndividuals_79 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_8
+
+:HundredIndividuals_8 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_80
+
+:HundredIndividuals_80 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_81
+
+:HundredIndividuals_81 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_82
+
+:HundredIndividuals_82 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_83
+
+:HundredIndividuals_83 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_84
+
+:HundredIndividuals_84 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_85
+
+:HundredIndividuals_85 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_86
+
+:HundredIndividuals_86 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_87
+
+:HundredIndividuals_87 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_88
+
+:HundredIndividuals_88 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_89
+
+:HundredIndividuals_89 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_9
+
+:HundredIndividuals_9 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_90
+
+:HundredIndividuals_90 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_91
+
+:HundredIndividuals_91 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_92
+
+:HundredIndividuals_92 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_93
+
+:HundredIndividuals_93 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_94
+
+:HundredIndividuals_94 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_95
+
+:HundredIndividuals_95 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_96
+
+:HundredIndividuals_96 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_97
+
+:HundredIndividuals_97 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_98
+
+:HundredIndividuals_98 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_99
+
+:HundredIndividuals_99 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/NamedIndividual
+
+:NamedIndividual rdf:type owl:NamedIndividual ,
+                          :Class40 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/NegativeDataPropertyAssertion_SourceIndividual
+
+:NegativeDataPropertyAssertion_SourceIndividual rdf:type owl:NamedIndividual .
+[ rdf:type owl:NegativePropertyAssertion ;
+  owl:sourceIndividual :NegativeDataPropertyAssertion_SourceIndividual ;
+  owl:assertionProperty :negativeDataPropertyAssertionProperty ;
+  owl:targetValue "NegativeDataPropertyAssertion_TargetValue"^^xsd:string
+] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/NegativeObjectPropertyAssertion_SourceIndividual
+
+:NegativeObjectPropertyAssertion_SourceIndividual rdf:type owl:NamedIndividual .
+[ rdf:type owl:NegativePropertyAssertion ;
+  owl:sourceIndividual :NegativeObjectPropertyAssertion_SourceIndividual ;
+  owl:assertionProperty :negativeObjectPropertyAssertionProperty ;
+  owl:targetIndividual :NegativeObjectPropertyAssertion_TargetIndividual
+] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/NegativeObjectPropertyAssertion_TargetIndividual
+
+:NegativeObjectPropertyAssertion_TargetIndividual rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectHasValue_Individual
+
+:ObjectHasValue_Individual rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_EL_Individual
+
+:ObjectOneOf_EL_Individual rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_Individual1
+
+:ObjectOneOf_Individual1 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_Individual2
+
+:ObjectOneOf_Individual2 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_RL_Individual1
+
+:ObjectOneOf_RL_Individual1 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_RL_Individual2
+
+:ObjectOneOf_RL_Individual2 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SameAs_Individual1
+
+:SameAs_Individual1 rdf:type owl:NamedIndividual ;
+                    
+                    owl:sameAs :SameAs_Individual2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SameAs_Individual2
+
+:SameAs_Individual2 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_1
+
+:TenIndividuals_1 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_10
+
+:TenIndividuals_10 rdf:type owl:NamedIndividual ,
+                            :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_2
+
+:TenIndividuals_2 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_3
+
+:TenIndividuals_3 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_4
+
+:TenIndividuals_4 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_5
+
+:TenIndividuals_5 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_6
+
+:TenIndividuals_6 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_7
+
+:TenIndividuals_7 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_8
+
+:TenIndividuals_8 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_9
+
+:TenIndividuals_9 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_1
+
+:ThousandIndividuals_1 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_10
+
+:ThousandIndividuals_10 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_100
+
+:ThousandIndividuals_100 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_1000
+
+:ThousandIndividuals_1000 rdf:type owl:NamedIndividual ,
+                                   :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_101
+
+:ThousandIndividuals_101 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_102
+
+:ThousandIndividuals_102 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_103
+
+:ThousandIndividuals_103 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_104
+
+:ThousandIndividuals_104 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_105
+
+:ThousandIndividuals_105 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_106
+
+:ThousandIndividuals_106 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_107
+
+:ThousandIndividuals_107 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_108
+
+:ThousandIndividuals_108 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_109
+
+:ThousandIndividuals_109 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_11
+
+:ThousandIndividuals_11 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_110
+
+:ThousandIndividuals_110 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_111
+
+:ThousandIndividuals_111 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_112
+
+:ThousandIndividuals_112 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_113
+
+:ThousandIndividuals_113 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_114
+
+:ThousandIndividuals_114 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_115
+
+:ThousandIndividuals_115 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_116
+
+:ThousandIndividuals_116 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_117
+
+:ThousandIndividuals_117 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_118
+
+:ThousandIndividuals_118 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_119
+
+:ThousandIndividuals_119 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_12
+
+:ThousandIndividuals_12 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_120
+
+:ThousandIndividuals_120 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_121
+
+:ThousandIndividuals_121 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_122
+
+:ThousandIndividuals_122 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_123
+
+:ThousandIndividuals_123 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_124
+
+:ThousandIndividuals_124 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_125
+
+:ThousandIndividuals_125 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_126
+
+:ThousandIndividuals_126 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_127
+
+:ThousandIndividuals_127 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_128
+
+:ThousandIndividuals_128 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_129
+
+:ThousandIndividuals_129 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_13
+
+:ThousandIndividuals_13 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_130
+
+:ThousandIndividuals_130 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_131
+
+:ThousandIndividuals_131 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_132
+
+:ThousandIndividuals_132 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_133
+
+:ThousandIndividuals_133 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_134
+
+:ThousandIndividuals_134 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_135
+
+:ThousandIndividuals_135 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_136
+
+:ThousandIndividuals_136 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_137
+
+:ThousandIndividuals_137 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_138
+
+:ThousandIndividuals_138 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_139
+
+:ThousandIndividuals_139 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_14
+
+:ThousandIndividuals_14 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_140
+
+:ThousandIndividuals_140 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_141
+
+:ThousandIndividuals_141 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_142
+
+:ThousandIndividuals_142 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_143
+
+:ThousandIndividuals_143 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_144
+
+:ThousandIndividuals_144 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_145
+
+:ThousandIndividuals_145 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_146
+
+:ThousandIndividuals_146 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_147
+
+:ThousandIndividuals_147 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_148
+
+:ThousandIndividuals_148 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_149
+
+:ThousandIndividuals_149 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_15
+
+:ThousandIndividuals_15 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_150
+
+:ThousandIndividuals_150 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_151
+
+:ThousandIndividuals_151 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_152
+
+:ThousandIndividuals_152 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_153
+
+:ThousandIndividuals_153 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_154
+
+:ThousandIndividuals_154 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_155
+
+:ThousandIndividuals_155 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_156
+
+:ThousandIndividuals_156 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_157
+
+:ThousandIndividuals_157 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_158
+
+:ThousandIndividuals_158 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_159
+
+:ThousandIndividuals_159 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_16
+
+:ThousandIndividuals_16 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_160
+
+:ThousandIndividuals_160 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_161
+
+:ThousandIndividuals_161 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_162
+
+:ThousandIndividuals_162 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_163
+
+:ThousandIndividuals_163 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_164
+
+:ThousandIndividuals_164 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_165
+
+:ThousandIndividuals_165 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_166
+
+:ThousandIndividuals_166 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_167
+
+:ThousandIndividuals_167 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_168
+
+:ThousandIndividuals_168 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_169
+
+:ThousandIndividuals_169 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_17
+
+:ThousandIndividuals_17 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_170
+
+:ThousandIndividuals_170 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_171
+
+:ThousandIndividuals_171 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_172
+
+:ThousandIndividuals_172 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_173
+
+:ThousandIndividuals_173 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_174
+
+:ThousandIndividuals_174 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_175
+
+:ThousandIndividuals_175 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_176
+
+:ThousandIndividuals_176 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_177
+
+:ThousandIndividuals_177 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_178
+
+:ThousandIndividuals_178 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_179
+
+:ThousandIndividuals_179 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_18
+
+:ThousandIndividuals_18 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_180
+
+:ThousandIndividuals_180 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_181
+
+:ThousandIndividuals_181 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_182
+
+:ThousandIndividuals_182 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_183
+
+:ThousandIndividuals_183 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_184
+
+:ThousandIndividuals_184 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_185
+
+:ThousandIndividuals_185 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_186
+
+:ThousandIndividuals_186 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_187
+
+:ThousandIndividuals_187 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_188
+
+:ThousandIndividuals_188 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_189
+
+:ThousandIndividuals_189 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_19
+
+:ThousandIndividuals_19 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_190
+
+:ThousandIndividuals_190 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_191
+
+:ThousandIndividuals_191 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_192
+
+:ThousandIndividuals_192 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_193
+
+:ThousandIndividuals_193 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_194
+
+:ThousandIndividuals_194 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_195
+
+:ThousandIndividuals_195 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_196
+
+:ThousandIndividuals_196 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_197
+
+:ThousandIndividuals_197 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_198
+
+:ThousandIndividuals_198 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_199
+
+:ThousandIndividuals_199 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_2
+
+:ThousandIndividuals_2 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_20
+
+:ThousandIndividuals_20 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_200
+
+:ThousandIndividuals_200 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_201
+
+:ThousandIndividuals_201 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_202
+
+:ThousandIndividuals_202 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_203
+
+:ThousandIndividuals_203 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_204
+
+:ThousandIndividuals_204 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_205
+
+:ThousandIndividuals_205 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_206
+
+:ThousandIndividuals_206 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_207
+
+:ThousandIndividuals_207 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_208
+
+:ThousandIndividuals_208 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_209
+
+:ThousandIndividuals_209 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_21
+
+:ThousandIndividuals_21 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_210
+
+:ThousandIndividuals_210 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_211
+
+:ThousandIndividuals_211 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_212
+
+:ThousandIndividuals_212 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_213
+
+:ThousandIndividuals_213 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_214
+
+:ThousandIndividuals_214 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_215
+
+:ThousandIndividuals_215 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_216
+
+:ThousandIndividuals_216 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_217
+
+:ThousandIndividuals_217 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_218
+
+:ThousandIndividuals_218 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_219
+
+:ThousandIndividuals_219 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_22
+
+:ThousandIndividuals_22 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_220
+
+:ThousandIndividuals_220 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_221
+
+:ThousandIndividuals_221 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_222
+
+:ThousandIndividuals_222 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_223
+
+:ThousandIndividuals_223 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_224
+
+:ThousandIndividuals_224 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_225
+
+:ThousandIndividuals_225 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_226
+
+:ThousandIndividuals_226 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_227
+
+:ThousandIndividuals_227 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_228
+
+:ThousandIndividuals_228 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_229
+
+:ThousandIndividuals_229 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_23
+
+:ThousandIndividuals_23 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_230
+
+:ThousandIndividuals_230 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_231
+
+:ThousandIndividuals_231 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_232
+
+:ThousandIndividuals_232 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_233
+
+:ThousandIndividuals_233 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_234
+
+:ThousandIndividuals_234 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_235
+
+:ThousandIndividuals_235 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_236
+
+:ThousandIndividuals_236 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_237
+
+:ThousandIndividuals_237 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_238
+
+:ThousandIndividuals_238 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_239
+
+:ThousandIndividuals_239 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_24
+
+:ThousandIndividuals_24 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_240
+
+:ThousandIndividuals_240 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_241
+
+:ThousandIndividuals_241 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_242
+
+:ThousandIndividuals_242 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_243
+
+:ThousandIndividuals_243 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_244
+
+:ThousandIndividuals_244 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_245
+
+:ThousandIndividuals_245 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_246
+
+:ThousandIndividuals_246 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_247
+
+:ThousandIndividuals_247 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_248
+
+:ThousandIndividuals_248 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_249
+
+:ThousandIndividuals_249 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_25
+
+:ThousandIndividuals_25 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_250
+
+:ThousandIndividuals_250 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_251
+
+:ThousandIndividuals_251 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_252
+
+:ThousandIndividuals_252 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_253
+
+:ThousandIndividuals_253 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_254
+
+:ThousandIndividuals_254 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_255
+
+:ThousandIndividuals_255 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_256
+
+:ThousandIndividuals_256 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_257
+
+:ThousandIndividuals_257 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_258
+
+:ThousandIndividuals_258 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_259
+
+:ThousandIndividuals_259 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_26
+
+:ThousandIndividuals_26 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_260
+
+:ThousandIndividuals_260 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_261
+
+:ThousandIndividuals_261 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_262
+
+:ThousandIndividuals_262 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_263
+
+:ThousandIndividuals_263 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_264
+
+:ThousandIndividuals_264 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_265
+
+:ThousandIndividuals_265 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_266
+
+:ThousandIndividuals_266 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_267
+
+:ThousandIndividuals_267 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_268
+
+:ThousandIndividuals_268 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_269
+
+:ThousandIndividuals_269 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_27
+
+:ThousandIndividuals_27 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_270
+
+:ThousandIndividuals_270 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_271
+
+:ThousandIndividuals_271 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_272
+
+:ThousandIndividuals_272 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_273
+
+:ThousandIndividuals_273 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_274
+
+:ThousandIndividuals_274 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_275
+
+:ThousandIndividuals_275 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_276
+
+:ThousandIndividuals_276 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_277
+
+:ThousandIndividuals_277 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_278
+
+:ThousandIndividuals_278 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_279
+
+:ThousandIndividuals_279 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_28
+
+:ThousandIndividuals_28 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_280
+
+:ThousandIndividuals_280 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_281
+
+:ThousandIndividuals_281 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_282
+
+:ThousandIndividuals_282 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_283
+
+:ThousandIndividuals_283 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_284
+
+:ThousandIndividuals_284 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_285
+
+:ThousandIndividuals_285 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_286
+
+:ThousandIndividuals_286 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_287
+
+:ThousandIndividuals_287 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_288
+
+:ThousandIndividuals_288 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_289
+
+:ThousandIndividuals_289 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_29
+
+:ThousandIndividuals_29 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_290
+
+:ThousandIndividuals_290 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_291
+
+:ThousandIndividuals_291 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_292
+
+:ThousandIndividuals_292 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_293
+
+:ThousandIndividuals_293 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_294
+
+:ThousandIndividuals_294 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_295
+
+:ThousandIndividuals_295 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_296
+
+:ThousandIndividuals_296 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_297
+
+:ThousandIndividuals_297 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_298
+
+:ThousandIndividuals_298 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_299
+
+:ThousandIndividuals_299 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_3
+
+:ThousandIndividuals_3 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_30
+
+:ThousandIndividuals_30 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_300
+
+:ThousandIndividuals_300 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_301
+
+:ThousandIndividuals_301 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_302
+
+:ThousandIndividuals_302 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_303
+
+:ThousandIndividuals_303 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_304
+
+:ThousandIndividuals_304 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_305
+
+:ThousandIndividuals_305 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_306
+
+:ThousandIndividuals_306 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_307
+
+:ThousandIndividuals_307 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_308
+
+:ThousandIndividuals_308 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_309
+
+:ThousandIndividuals_309 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_31
+
+:ThousandIndividuals_31 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_310
+
+:ThousandIndividuals_310 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_311
+
+:ThousandIndividuals_311 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_312
+
+:ThousandIndividuals_312 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_313
+
+:ThousandIndividuals_313 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_314
+
+:ThousandIndividuals_314 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_315
+
+:ThousandIndividuals_315 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_316
+
+:ThousandIndividuals_316 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_317
+
+:ThousandIndividuals_317 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_318
+
+:ThousandIndividuals_318 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_319
+
+:ThousandIndividuals_319 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_32
+
+:ThousandIndividuals_32 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_320
+
+:ThousandIndividuals_320 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_321
+
+:ThousandIndividuals_321 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_322
+
+:ThousandIndividuals_322 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_323
+
+:ThousandIndividuals_323 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_324
+
+:ThousandIndividuals_324 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_325
+
+:ThousandIndividuals_325 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_326
+
+:ThousandIndividuals_326 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_327
+
+:ThousandIndividuals_327 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_328
+
+:ThousandIndividuals_328 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_329
+
+:ThousandIndividuals_329 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_33
+
+:ThousandIndividuals_33 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_330
+
+:ThousandIndividuals_330 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_331
+
+:ThousandIndividuals_331 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_332
+
+:ThousandIndividuals_332 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_333
+
+:ThousandIndividuals_333 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_334
+
+:ThousandIndividuals_334 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_335
+
+:ThousandIndividuals_335 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_336
+
+:ThousandIndividuals_336 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_337
+
+:ThousandIndividuals_337 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_338
+
+:ThousandIndividuals_338 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_339
+
+:ThousandIndividuals_339 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_34
+
+:ThousandIndividuals_34 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_340
+
+:ThousandIndividuals_340 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_341
+
+:ThousandIndividuals_341 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_342
+
+:ThousandIndividuals_342 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_343
+
+:ThousandIndividuals_343 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_344
+
+:ThousandIndividuals_344 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_345
+
+:ThousandIndividuals_345 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_346
+
+:ThousandIndividuals_346 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_347
+
+:ThousandIndividuals_347 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_348
+
+:ThousandIndividuals_348 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_349
+
+:ThousandIndividuals_349 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_35
+
+:ThousandIndividuals_35 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_350
+
+:ThousandIndividuals_350 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_351
+
+:ThousandIndividuals_351 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_352
+
+:ThousandIndividuals_352 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_353
+
+:ThousandIndividuals_353 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_354
+
+:ThousandIndividuals_354 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_355
+
+:ThousandIndividuals_355 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_356
+
+:ThousandIndividuals_356 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_357
+
+:ThousandIndividuals_357 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_358
+
+:ThousandIndividuals_358 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_359
+
+:ThousandIndividuals_359 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_36
+
+:ThousandIndividuals_36 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_360
+
+:ThousandIndividuals_360 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_361
+
+:ThousandIndividuals_361 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_362
+
+:ThousandIndividuals_362 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_363
+
+:ThousandIndividuals_363 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_364
+
+:ThousandIndividuals_364 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_365
+
+:ThousandIndividuals_365 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_366
+
+:ThousandIndividuals_366 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_367
+
+:ThousandIndividuals_367 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_368
+
+:ThousandIndividuals_368 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_369
+
+:ThousandIndividuals_369 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_37
+
+:ThousandIndividuals_37 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_370
+
+:ThousandIndividuals_370 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_371
+
+:ThousandIndividuals_371 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_372
+
+:ThousandIndividuals_372 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_373
+
+:ThousandIndividuals_373 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_374
+
+:ThousandIndividuals_374 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_375
+
+:ThousandIndividuals_375 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_376
+
+:ThousandIndividuals_376 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_377
+
+:ThousandIndividuals_377 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_378
+
+:ThousandIndividuals_378 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_379
+
+:ThousandIndividuals_379 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_38
+
+:ThousandIndividuals_38 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_380
+
+:ThousandIndividuals_380 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_381
+
+:ThousandIndividuals_381 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_382
+
+:ThousandIndividuals_382 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_383
+
+:ThousandIndividuals_383 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_384
+
+:ThousandIndividuals_384 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_385
+
+:ThousandIndividuals_385 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_386
+
+:ThousandIndividuals_386 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_387
+
+:ThousandIndividuals_387 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_388
+
+:ThousandIndividuals_388 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_389
+
+:ThousandIndividuals_389 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_39
+
+:ThousandIndividuals_39 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_390
+
+:ThousandIndividuals_390 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_391
+
+:ThousandIndividuals_391 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_392
+
+:ThousandIndividuals_392 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_393
+
+:ThousandIndividuals_393 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_394
+
+:ThousandIndividuals_394 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_395
+
+:ThousandIndividuals_395 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_396
+
+:ThousandIndividuals_396 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_397
+
+:ThousandIndividuals_397 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_398
+
+:ThousandIndividuals_398 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_399
+
+:ThousandIndividuals_399 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_4
+
+:ThousandIndividuals_4 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_40
+
+:ThousandIndividuals_40 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_400
+
+:ThousandIndividuals_400 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_401
+
+:ThousandIndividuals_401 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_402
+
+:ThousandIndividuals_402 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_403
+
+:ThousandIndividuals_403 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_404
+
+:ThousandIndividuals_404 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_405
+
+:ThousandIndividuals_405 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_406
+
+:ThousandIndividuals_406 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_407
+
+:ThousandIndividuals_407 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_408
+
+:ThousandIndividuals_408 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_409
+
+:ThousandIndividuals_409 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_41
+
+:ThousandIndividuals_41 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_410
+
+:ThousandIndividuals_410 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_411
+
+:ThousandIndividuals_411 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_412
+
+:ThousandIndividuals_412 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_413
+
+:ThousandIndividuals_413 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_414
+
+:ThousandIndividuals_414 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_415
+
+:ThousandIndividuals_415 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_416
+
+:ThousandIndividuals_416 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_417
+
+:ThousandIndividuals_417 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_418
+
+:ThousandIndividuals_418 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_419
+
+:ThousandIndividuals_419 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_42
+
+:ThousandIndividuals_42 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_420
+
+:ThousandIndividuals_420 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_421
+
+:ThousandIndividuals_421 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_422
+
+:ThousandIndividuals_422 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_423
+
+:ThousandIndividuals_423 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_424
+
+:ThousandIndividuals_424 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_425
+
+:ThousandIndividuals_425 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_426
+
+:ThousandIndividuals_426 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_427
+
+:ThousandIndividuals_427 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_428
+
+:ThousandIndividuals_428 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_429
+
+:ThousandIndividuals_429 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_43
+
+:ThousandIndividuals_43 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_430
+
+:ThousandIndividuals_430 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_431
+
+:ThousandIndividuals_431 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_432
+
+:ThousandIndividuals_432 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_433
+
+:ThousandIndividuals_433 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_434
+
+:ThousandIndividuals_434 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_435
+
+:ThousandIndividuals_435 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_436
+
+:ThousandIndividuals_436 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_437
+
+:ThousandIndividuals_437 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_438
+
+:ThousandIndividuals_438 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_439
+
+:ThousandIndividuals_439 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_44
+
+:ThousandIndividuals_44 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_440
+
+:ThousandIndividuals_440 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_441
+
+:ThousandIndividuals_441 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_442
+
+:ThousandIndividuals_442 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_443
+
+:ThousandIndividuals_443 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_444
+
+:ThousandIndividuals_444 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_445
+
+:ThousandIndividuals_445 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_446
+
+:ThousandIndividuals_446 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_447
+
+:ThousandIndividuals_447 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_448
+
+:ThousandIndividuals_448 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_449
+
+:ThousandIndividuals_449 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_45
+
+:ThousandIndividuals_45 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_450
+
+:ThousandIndividuals_450 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_451
+
+:ThousandIndividuals_451 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_452
+
+:ThousandIndividuals_452 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_453
+
+:ThousandIndividuals_453 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_454
+
+:ThousandIndividuals_454 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_455
+
+:ThousandIndividuals_455 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_456
+
+:ThousandIndividuals_456 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_457
+
+:ThousandIndividuals_457 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_458
+
+:ThousandIndividuals_458 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_459
+
+:ThousandIndividuals_459 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_46
+
+:ThousandIndividuals_46 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_460
+
+:ThousandIndividuals_460 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_461
+
+:ThousandIndividuals_461 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_462
+
+:ThousandIndividuals_462 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_463
+
+:ThousandIndividuals_463 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_464
+
+:ThousandIndividuals_464 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_465
+
+:ThousandIndividuals_465 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_466
+
+:ThousandIndividuals_466 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_467
+
+:ThousandIndividuals_467 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_468
+
+:ThousandIndividuals_468 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_469
+
+:ThousandIndividuals_469 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_47
+
+:ThousandIndividuals_47 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_470
+
+:ThousandIndividuals_470 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_471
+
+:ThousandIndividuals_471 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_472
+
+:ThousandIndividuals_472 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_473
+
+:ThousandIndividuals_473 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_474
+
+:ThousandIndividuals_474 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_475
+
+:ThousandIndividuals_475 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_476
+
+:ThousandIndividuals_476 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_477
+
+:ThousandIndividuals_477 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_478
+
+:ThousandIndividuals_478 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_479
+
+:ThousandIndividuals_479 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_48
+
+:ThousandIndividuals_48 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_480
+
+:ThousandIndividuals_480 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_481
+
+:ThousandIndividuals_481 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_482
+
+:ThousandIndividuals_482 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_483
+
+:ThousandIndividuals_483 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_484
+
+:ThousandIndividuals_484 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_485
+
+:ThousandIndividuals_485 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_486
+
+:ThousandIndividuals_486 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_487
+
+:ThousandIndividuals_487 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_488
+
+:ThousandIndividuals_488 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_489
+
+:ThousandIndividuals_489 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_49
+
+:ThousandIndividuals_49 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_490
+
+:ThousandIndividuals_490 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_491
+
+:ThousandIndividuals_491 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_492
+
+:ThousandIndividuals_492 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_493
+
+:ThousandIndividuals_493 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_494
+
+:ThousandIndividuals_494 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_495
+
+:ThousandIndividuals_495 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_496
+
+:ThousandIndividuals_496 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_497
+
+:ThousandIndividuals_497 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_498
+
+:ThousandIndividuals_498 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_499
+
+:ThousandIndividuals_499 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_5
+
+:ThousandIndividuals_5 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_50
+
+:ThousandIndividuals_50 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_500
+
+:ThousandIndividuals_500 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_501
+
+:ThousandIndividuals_501 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_502
+
+:ThousandIndividuals_502 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_503
+
+:ThousandIndividuals_503 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_504
+
+:ThousandIndividuals_504 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_505
+
+:ThousandIndividuals_505 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_506
+
+:ThousandIndividuals_506 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_507
+
+:ThousandIndividuals_507 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_508
+
+:ThousandIndividuals_508 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_509
+
+:ThousandIndividuals_509 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_51
+
+:ThousandIndividuals_51 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_510
+
+:ThousandIndividuals_510 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_511
+
+:ThousandIndividuals_511 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_512
+
+:ThousandIndividuals_512 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_513
+
+:ThousandIndividuals_513 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_514
+
+:ThousandIndividuals_514 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_515
+
+:ThousandIndividuals_515 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_516
+
+:ThousandIndividuals_516 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_517
+
+:ThousandIndividuals_517 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_518
+
+:ThousandIndividuals_518 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_519
+
+:ThousandIndividuals_519 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_52
+
+:ThousandIndividuals_52 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_520
+
+:ThousandIndividuals_520 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_521
+
+:ThousandIndividuals_521 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_522
+
+:ThousandIndividuals_522 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_523
+
+:ThousandIndividuals_523 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_524
+
+:ThousandIndividuals_524 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_525
+
+:ThousandIndividuals_525 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_526
+
+:ThousandIndividuals_526 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_527
+
+:ThousandIndividuals_527 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_528
+
+:ThousandIndividuals_528 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_529
+
+:ThousandIndividuals_529 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_53
+
+:ThousandIndividuals_53 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_530
+
+:ThousandIndividuals_530 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_531
+
+:ThousandIndividuals_531 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_532
+
+:ThousandIndividuals_532 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_533
+
+:ThousandIndividuals_533 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_534
+
+:ThousandIndividuals_534 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_535
+
+:ThousandIndividuals_535 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_536
+
+:ThousandIndividuals_536 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_537
+
+:ThousandIndividuals_537 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_538
+
+:ThousandIndividuals_538 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_539
+
+:ThousandIndividuals_539 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_54
+
+:ThousandIndividuals_54 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_540
+
+:ThousandIndividuals_540 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_541
+
+:ThousandIndividuals_541 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_542
+
+:ThousandIndividuals_542 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_543
+
+:ThousandIndividuals_543 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_544
+
+:ThousandIndividuals_544 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_545
+
+:ThousandIndividuals_545 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_546
+
+:ThousandIndividuals_546 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_547
+
+:ThousandIndividuals_547 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_548
+
+:ThousandIndividuals_548 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_549
+
+:ThousandIndividuals_549 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_55
+
+:ThousandIndividuals_55 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_550
+
+:ThousandIndividuals_550 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_551
+
+:ThousandIndividuals_551 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_552
+
+:ThousandIndividuals_552 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_553
+
+:ThousandIndividuals_553 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_554
+
+:ThousandIndividuals_554 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_555
+
+:ThousandIndividuals_555 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_556
+
+:ThousandIndividuals_556 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_557
+
+:ThousandIndividuals_557 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_558
+
+:ThousandIndividuals_558 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_559
+
+:ThousandIndividuals_559 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_56
+
+:ThousandIndividuals_56 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_560
+
+:ThousandIndividuals_560 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_561
+
+:ThousandIndividuals_561 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_562
+
+:ThousandIndividuals_562 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_563
+
+:ThousandIndividuals_563 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_564
+
+:ThousandIndividuals_564 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_565
+
+:ThousandIndividuals_565 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_566
+
+:ThousandIndividuals_566 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_567
+
+:ThousandIndividuals_567 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_568
+
+:ThousandIndividuals_568 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_569
+
+:ThousandIndividuals_569 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_57
+
+:ThousandIndividuals_57 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_570
+
+:ThousandIndividuals_570 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_571
+
+:ThousandIndividuals_571 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_572
+
+:ThousandIndividuals_572 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_573
+
+:ThousandIndividuals_573 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_574
+
+:ThousandIndividuals_574 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_575
+
+:ThousandIndividuals_575 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_576
+
+:ThousandIndividuals_576 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_577
+
+:ThousandIndividuals_577 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_578
+
+:ThousandIndividuals_578 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_579
+
+:ThousandIndividuals_579 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_58
+
+:ThousandIndividuals_58 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_580
+
+:ThousandIndividuals_580 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_581
+
+:ThousandIndividuals_581 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_582
+
+:ThousandIndividuals_582 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_583
+
+:ThousandIndividuals_583 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_584
+
+:ThousandIndividuals_584 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_585
+
+:ThousandIndividuals_585 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_586
+
+:ThousandIndividuals_586 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_587
+
+:ThousandIndividuals_587 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_588
+
+:ThousandIndividuals_588 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_589
+
+:ThousandIndividuals_589 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_59
+
+:ThousandIndividuals_59 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_590
+
+:ThousandIndividuals_590 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_591
+
+:ThousandIndividuals_591 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_592
+
+:ThousandIndividuals_592 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_593
+
+:ThousandIndividuals_593 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_594
+
+:ThousandIndividuals_594 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_595
+
+:ThousandIndividuals_595 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_596
+
+:ThousandIndividuals_596 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_597
+
+:ThousandIndividuals_597 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_598
+
+:ThousandIndividuals_598 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_599
+
+:ThousandIndividuals_599 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_6
+
+:ThousandIndividuals_6 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_60
+
+:ThousandIndividuals_60 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_600
+
+:ThousandIndividuals_600 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_601
+
+:ThousandIndividuals_601 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_602
+
+:ThousandIndividuals_602 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_603
+
+:ThousandIndividuals_603 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_604
+
+:ThousandIndividuals_604 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_605
+
+:ThousandIndividuals_605 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_606
+
+:ThousandIndividuals_606 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_607
+
+:ThousandIndividuals_607 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_608
+
+:ThousandIndividuals_608 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_609
+
+:ThousandIndividuals_609 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_61
+
+:ThousandIndividuals_61 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_610
+
+:ThousandIndividuals_610 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_611
+
+:ThousandIndividuals_611 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_612
+
+:ThousandIndividuals_612 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_613
+
+:ThousandIndividuals_613 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_614
+
+:ThousandIndividuals_614 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_615
+
+:ThousandIndividuals_615 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_616
+
+:ThousandIndividuals_616 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_617
+
+:ThousandIndividuals_617 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_618
+
+:ThousandIndividuals_618 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_619
+
+:ThousandIndividuals_619 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_62
+
+:ThousandIndividuals_62 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_620
+
+:ThousandIndividuals_620 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_621
+
+:ThousandIndividuals_621 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_622
+
+:ThousandIndividuals_622 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_623
+
+:ThousandIndividuals_623 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_624
+
+:ThousandIndividuals_624 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_625
+
+:ThousandIndividuals_625 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_626
+
+:ThousandIndividuals_626 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_627
+
+:ThousandIndividuals_627 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_628
+
+:ThousandIndividuals_628 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_629
+
+:ThousandIndividuals_629 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_63
+
+:ThousandIndividuals_63 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_630
+
+:ThousandIndividuals_630 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_631
+
+:ThousandIndividuals_631 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_632
+
+:ThousandIndividuals_632 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_633
+
+:ThousandIndividuals_633 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_634
+
+:ThousandIndividuals_634 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_635
+
+:ThousandIndividuals_635 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_636
+
+:ThousandIndividuals_636 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_637
+
+:ThousandIndividuals_637 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_638
+
+:ThousandIndividuals_638 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_639
+
+:ThousandIndividuals_639 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_64
+
+:ThousandIndividuals_64 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_640
+
+:ThousandIndividuals_640 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_641
+
+:ThousandIndividuals_641 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_642
+
+:ThousandIndividuals_642 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_643
+
+:ThousandIndividuals_643 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_644
+
+:ThousandIndividuals_644 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_645
+
+:ThousandIndividuals_645 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_646
+
+:ThousandIndividuals_646 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_647
+
+:ThousandIndividuals_647 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_648
+
+:ThousandIndividuals_648 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_649
+
+:ThousandIndividuals_649 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_65
+
+:ThousandIndividuals_65 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_650
+
+:ThousandIndividuals_650 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_651
+
+:ThousandIndividuals_651 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_652
+
+:ThousandIndividuals_652 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_653
+
+:ThousandIndividuals_653 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_654
+
+:ThousandIndividuals_654 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_655
+
+:ThousandIndividuals_655 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_656
+
+:ThousandIndividuals_656 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_657
+
+:ThousandIndividuals_657 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_658
+
+:ThousandIndividuals_658 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_659
+
+:ThousandIndividuals_659 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_66
+
+:ThousandIndividuals_66 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_660
+
+:ThousandIndividuals_660 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_661
+
+:ThousandIndividuals_661 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_662
+
+:ThousandIndividuals_662 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_663
+
+:ThousandIndividuals_663 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_664
+
+:ThousandIndividuals_664 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_665
+
+:ThousandIndividuals_665 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_666
+
+:ThousandIndividuals_666 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_667
+
+:ThousandIndividuals_667 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_668
+
+:ThousandIndividuals_668 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_669
+
+:ThousandIndividuals_669 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_67
+
+:ThousandIndividuals_67 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_670
+
+:ThousandIndividuals_670 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_671
+
+:ThousandIndividuals_671 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_672
+
+:ThousandIndividuals_672 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_673
+
+:ThousandIndividuals_673 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_674
+
+:ThousandIndividuals_674 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_675
+
+:ThousandIndividuals_675 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_676
+
+:ThousandIndividuals_676 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_677
+
+:ThousandIndividuals_677 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_678
+
+:ThousandIndividuals_678 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_679
+
+:ThousandIndividuals_679 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_68
+
+:ThousandIndividuals_68 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_680
+
+:ThousandIndividuals_680 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_681
+
+:ThousandIndividuals_681 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_682
+
+:ThousandIndividuals_682 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_683
+
+:ThousandIndividuals_683 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_684
+
+:ThousandIndividuals_684 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_685
+
+:ThousandIndividuals_685 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_686
+
+:ThousandIndividuals_686 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_687
+
+:ThousandIndividuals_687 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_688
+
+:ThousandIndividuals_688 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_689
+
+:ThousandIndividuals_689 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_69
+
+:ThousandIndividuals_69 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_690
+
+:ThousandIndividuals_690 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_691
+
+:ThousandIndividuals_691 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_692
+
+:ThousandIndividuals_692 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_693
+
+:ThousandIndividuals_693 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_694
+
+:ThousandIndividuals_694 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_695
+
+:ThousandIndividuals_695 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_696
+
+:ThousandIndividuals_696 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_697
+
+:ThousandIndividuals_697 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_698
+
+:ThousandIndividuals_698 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_699
+
+:ThousandIndividuals_699 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_7
+
+:ThousandIndividuals_7 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_70
+
+:ThousandIndividuals_70 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_700
+
+:ThousandIndividuals_700 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_701
+
+:ThousandIndividuals_701 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_702
+
+:ThousandIndividuals_702 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_703
+
+:ThousandIndividuals_703 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_704
+
+:ThousandIndividuals_704 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_705
+
+:ThousandIndividuals_705 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_706
+
+:ThousandIndividuals_706 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_707
+
+:ThousandIndividuals_707 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_708
+
+:ThousandIndividuals_708 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_709
+
+:ThousandIndividuals_709 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_71
+
+:ThousandIndividuals_71 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_710
+
+:ThousandIndividuals_710 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_711
+
+:ThousandIndividuals_711 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_712
+
+:ThousandIndividuals_712 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_713
+
+:ThousandIndividuals_713 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_714
+
+:ThousandIndividuals_714 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_715
+
+:ThousandIndividuals_715 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_716
+
+:ThousandIndividuals_716 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_717
+
+:ThousandIndividuals_717 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_718
+
+:ThousandIndividuals_718 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_719
+
+:ThousandIndividuals_719 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_72
+
+:ThousandIndividuals_72 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_720
+
+:ThousandIndividuals_720 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_721
+
+:ThousandIndividuals_721 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_722
+
+:ThousandIndividuals_722 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_723
+
+:ThousandIndividuals_723 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_724
+
+:ThousandIndividuals_724 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_725
+
+:ThousandIndividuals_725 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_726
+
+:ThousandIndividuals_726 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_727
+
+:ThousandIndividuals_727 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_728
+
+:ThousandIndividuals_728 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_729
+
+:ThousandIndividuals_729 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_73
+
+:ThousandIndividuals_73 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_730
+
+:ThousandIndividuals_730 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_731
+
+:ThousandIndividuals_731 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_732
+
+:ThousandIndividuals_732 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_733
+
+:ThousandIndividuals_733 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_734
+
+:ThousandIndividuals_734 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_735
+
+:ThousandIndividuals_735 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_736
+
+:ThousandIndividuals_736 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_737
+
+:ThousandIndividuals_737 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_738
+
+:ThousandIndividuals_738 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_739
+
+:ThousandIndividuals_739 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_74
+
+:ThousandIndividuals_74 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_740
+
+:ThousandIndividuals_740 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_741
+
+:ThousandIndividuals_741 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_742
+
+:ThousandIndividuals_742 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_743
+
+:ThousandIndividuals_743 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_744
+
+:ThousandIndividuals_744 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_745
+
+:ThousandIndividuals_745 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_746
+
+:ThousandIndividuals_746 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_747
+
+:ThousandIndividuals_747 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_748
+
+:ThousandIndividuals_748 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_749
+
+:ThousandIndividuals_749 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_75
+
+:ThousandIndividuals_75 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_750
+
+:ThousandIndividuals_750 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_751
+
+:ThousandIndividuals_751 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_752
+
+:ThousandIndividuals_752 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_753
+
+:ThousandIndividuals_753 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_754
+
+:ThousandIndividuals_754 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_755
+
+:ThousandIndividuals_755 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_756
+
+:ThousandIndividuals_756 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_757
+
+:ThousandIndividuals_757 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_758
+
+:ThousandIndividuals_758 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_759
+
+:ThousandIndividuals_759 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_76
+
+:ThousandIndividuals_76 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_760
+
+:ThousandIndividuals_760 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_761
+
+:ThousandIndividuals_761 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_762
+
+:ThousandIndividuals_762 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_763
+
+:ThousandIndividuals_763 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_764
+
+:ThousandIndividuals_764 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_765
+
+:ThousandIndividuals_765 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_766
+
+:ThousandIndividuals_766 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_767
+
+:ThousandIndividuals_767 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_768
+
+:ThousandIndividuals_768 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_769
+
+:ThousandIndividuals_769 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_77
+
+:ThousandIndividuals_77 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_770
+
+:ThousandIndividuals_770 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_771
+
+:ThousandIndividuals_771 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_772
+
+:ThousandIndividuals_772 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_773
+
+:ThousandIndividuals_773 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_774
+
+:ThousandIndividuals_774 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_775
+
+:ThousandIndividuals_775 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_776
+
+:ThousandIndividuals_776 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_777
+
+:ThousandIndividuals_777 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_778
+
+:ThousandIndividuals_778 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_779
+
+:ThousandIndividuals_779 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_78
+
+:ThousandIndividuals_78 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_780
+
+:ThousandIndividuals_780 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_781
+
+:ThousandIndividuals_781 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_782
+
+:ThousandIndividuals_782 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_783
+
+:ThousandIndividuals_783 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_784
+
+:ThousandIndividuals_784 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_785
+
+:ThousandIndividuals_785 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_786
+
+:ThousandIndividuals_786 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_787
+
+:ThousandIndividuals_787 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_788
+
+:ThousandIndividuals_788 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_789
+
+:ThousandIndividuals_789 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_79
+
+:ThousandIndividuals_79 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_790
+
+:ThousandIndividuals_790 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_791
+
+:ThousandIndividuals_791 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_792
+
+:ThousandIndividuals_792 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_793
+
+:ThousandIndividuals_793 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_794
+
+:ThousandIndividuals_794 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_795
+
+:ThousandIndividuals_795 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_796
+
+:ThousandIndividuals_796 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_797
+
+:ThousandIndividuals_797 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_798
+
+:ThousandIndividuals_798 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_799
+
+:ThousandIndividuals_799 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_8
+
+:ThousandIndividuals_8 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_80
+
+:ThousandIndividuals_80 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_800
+
+:ThousandIndividuals_800 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_801
+
+:ThousandIndividuals_801 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_802
+
+:ThousandIndividuals_802 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_803
+
+:ThousandIndividuals_803 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_804
+
+:ThousandIndividuals_804 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_805
+
+:ThousandIndividuals_805 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_806
+
+:ThousandIndividuals_806 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_807
+
+:ThousandIndividuals_807 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_808
+
+:ThousandIndividuals_808 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_809
+
+:ThousandIndividuals_809 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_81
+
+:ThousandIndividuals_81 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_810
+
+:ThousandIndividuals_810 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_811
+
+:ThousandIndividuals_811 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_812
+
+:ThousandIndividuals_812 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_813
+
+:ThousandIndividuals_813 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_814
+
+:ThousandIndividuals_814 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_815
+
+:ThousandIndividuals_815 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_816
+
+:ThousandIndividuals_816 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_817
+
+:ThousandIndividuals_817 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_818
+
+:ThousandIndividuals_818 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_819
+
+:ThousandIndividuals_819 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_82
+
+:ThousandIndividuals_82 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_820
+
+:ThousandIndividuals_820 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_821
+
+:ThousandIndividuals_821 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_822
+
+:ThousandIndividuals_822 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_823
+
+:ThousandIndividuals_823 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_824
+
+:ThousandIndividuals_824 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_825
+
+:ThousandIndividuals_825 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_826
+
+:ThousandIndividuals_826 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_827
+
+:ThousandIndividuals_827 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_828
+
+:ThousandIndividuals_828 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_829
+
+:ThousandIndividuals_829 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_83
+
+:ThousandIndividuals_83 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_830
+
+:ThousandIndividuals_830 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_831
+
+:ThousandIndividuals_831 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_832
+
+:ThousandIndividuals_832 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_833
+
+:ThousandIndividuals_833 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_834
+
+:ThousandIndividuals_834 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_835
+
+:ThousandIndividuals_835 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_836
+
+:ThousandIndividuals_836 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_837
+
+:ThousandIndividuals_837 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_838
+
+:ThousandIndividuals_838 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_839
+
+:ThousandIndividuals_839 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_84
+
+:ThousandIndividuals_84 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_840
+
+:ThousandIndividuals_840 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_841
+
+:ThousandIndividuals_841 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_842
+
+:ThousandIndividuals_842 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_843
+
+:ThousandIndividuals_843 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_844
+
+:ThousandIndividuals_844 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_845
+
+:ThousandIndividuals_845 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_846
+
+:ThousandIndividuals_846 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_847
+
+:ThousandIndividuals_847 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_848
+
+:ThousandIndividuals_848 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_849
+
+:ThousandIndividuals_849 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_85
+
+:ThousandIndividuals_85 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_850
+
+:ThousandIndividuals_850 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_851
+
+:ThousandIndividuals_851 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_852
+
+:ThousandIndividuals_852 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_853
+
+:ThousandIndividuals_853 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_854
+
+:ThousandIndividuals_854 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_855
+
+:ThousandIndividuals_855 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_856
+
+:ThousandIndividuals_856 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_857
+
+:ThousandIndividuals_857 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_858
+
+:ThousandIndividuals_858 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_859
+
+:ThousandIndividuals_859 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_86
+
+:ThousandIndividuals_86 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_860
+
+:ThousandIndividuals_860 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_861
+
+:ThousandIndividuals_861 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_862
+
+:ThousandIndividuals_862 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_863
+
+:ThousandIndividuals_863 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_864
+
+:ThousandIndividuals_864 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_865
+
+:ThousandIndividuals_865 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_866
+
+:ThousandIndividuals_866 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_867
+
+:ThousandIndividuals_867 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_868
+
+:ThousandIndividuals_868 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_869
+
+:ThousandIndividuals_869 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_87
+
+:ThousandIndividuals_87 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_870
+
+:ThousandIndividuals_870 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_871
+
+:ThousandIndividuals_871 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_872
+
+:ThousandIndividuals_872 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_873
+
+:ThousandIndividuals_873 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_874
+
+:ThousandIndividuals_874 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_875
+
+:ThousandIndividuals_875 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_876
+
+:ThousandIndividuals_876 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_877
+
+:ThousandIndividuals_877 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_878
+
+:ThousandIndividuals_878 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_879
+
+:ThousandIndividuals_879 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_88
+
+:ThousandIndividuals_88 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_880
+
+:ThousandIndividuals_880 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_881
+
+:ThousandIndividuals_881 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_882
+
+:ThousandIndividuals_882 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_883
+
+:ThousandIndividuals_883 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_884
+
+:ThousandIndividuals_884 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_885
+
+:ThousandIndividuals_885 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_886
+
+:ThousandIndividuals_886 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_887
+
+:ThousandIndividuals_887 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_888
+
+:ThousandIndividuals_888 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_889
+
+:ThousandIndividuals_889 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_89
+
+:ThousandIndividuals_89 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_890
+
+:ThousandIndividuals_890 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_891
+
+:ThousandIndividuals_891 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_892
+
+:ThousandIndividuals_892 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_893
+
+:ThousandIndividuals_893 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_894
+
+:ThousandIndividuals_894 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_895
+
+:ThousandIndividuals_895 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_896
+
+:ThousandIndividuals_896 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_897
+
+:ThousandIndividuals_897 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_898
+
+:ThousandIndividuals_898 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_899
+
+:ThousandIndividuals_899 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_9
+
+:ThousandIndividuals_9 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_90
+
+:ThousandIndividuals_90 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_900
+
+:ThousandIndividuals_900 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_901
+
+:ThousandIndividuals_901 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_902
+
+:ThousandIndividuals_902 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_903
+
+:ThousandIndividuals_903 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_904
+
+:ThousandIndividuals_904 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_905
+
+:ThousandIndividuals_905 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_906
+
+:ThousandIndividuals_906 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_907
+
+:ThousandIndividuals_907 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_908
+
+:ThousandIndividuals_908 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_909
+
+:ThousandIndividuals_909 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_91
+
+:ThousandIndividuals_91 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_910
+
+:ThousandIndividuals_910 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_911
+
+:ThousandIndividuals_911 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_912
+
+:ThousandIndividuals_912 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_913
+
+:ThousandIndividuals_913 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_914
+
+:ThousandIndividuals_914 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_915
+
+:ThousandIndividuals_915 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_916
+
+:ThousandIndividuals_916 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_917
+
+:ThousandIndividuals_917 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_918
+
+:ThousandIndividuals_918 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_919
+
+:ThousandIndividuals_919 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_92
+
+:ThousandIndividuals_92 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_920
+
+:ThousandIndividuals_920 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_921
+
+:ThousandIndividuals_921 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_922
+
+:ThousandIndividuals_922 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_923
+
+:ThousandIndividuals_923 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_924
+
+:ThousandIndividuals_924 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_925
+
+:ThousandIndividuals_925 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_926
+
+:ThousandIndividuals_926 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_927
+
+:ThousandIndividuals_927 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_928
+
+:ThousandIndividuals_928 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_929
+
+:ThousandIndividuals_929 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_93
+
+:ThousandIndividuals_93 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_930
+
+:ThousandIndividuals_930 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_931
+
+:ThousandIndividuals_931 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_932
+
+:ThousandIndividuals_932 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_933
+
+:ThousandIndividuals_933 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_934
+
+:ThousandIndividuals_934 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_935
+
+:ThousandIndividuals_935 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_936
+
+:ThousandIndividuals_936 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_937
+
+:ThousandIndividuals_937 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_938
+
+:ThousandIndividuals_938 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_939
+
+:ThousandIndividuals_939 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_94
+
+:ThousandIndividuals_94 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_940
+
+:ThousandIndividuals_940 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_941
+
+:ThousandIndividuals_941 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_942
+
+:ThousandIndividuals_942 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_943
+
+:ThousandIndividuals_943 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_944
+
+:ThousandIndividuals_944 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_945
+
+:ThousandIndividuals_945 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_946
+
+:ThousandIndividuals_946 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_947
+
+:ThousandIndividuals_947 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_948
+
+:ThousandIndividuals_948 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_949
+
+:ThousandIndividuals_949 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_95
+
+:ThousandIndividuals_95 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_950
+
+:ThousandIndividuals_950 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_951
+
+:ThousandIndividuals_951 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_952
+
+:ThousandIndividuals_952 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_953
+
+:ThousandIndividuals_953 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_954
+
+:ThousandIndividuals_954 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_955
+
+:ThousandIndividuals_955 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_956
+
+:ThousandIndividuals_956 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_957
+
+:ThousandIndividuals_957 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_958
+
+:ThousandIndividuals_958 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_959
+
+:ThousandIndividuals_959 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_96
+
+:ThousandIndividuals_96 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_960
+
+:ThousandIndividuals_960 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_961
+
+:ThousandIndividuals_961 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_962
+
+:ThousandIndividuals_962 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_963
+
+:ThousandIndividuals_963 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_964
+
+:ThousandIndividuals_964 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_965
+
+:ThousandIndividuals_965 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_966
+
+:ThousandIndividuals_966 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_967
+
+:ThousandIndividuals_967 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_968
+
+:ThousandIndividuals_968 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_969
+
+:ThousandIndividuals_969 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_97
+
+:ThousandIndividuals_97 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_970
+
+:ThousandIndividuals_970 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_971
+
+:ThousandIndividuals_971 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_972
+
+:ThousandIndividuals_972 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_973
+
+:ThousandIndividuals_973 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_974
+
+:ThousandIndividuals_974 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_975
+
+:ThousandIndividuals_975 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_976
+
+:ThousandIndividuals_976 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_977
+
+:ThousandIndividuals_977 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_978
+
+:ThousandIndividuals_978 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_979
+
+:ThousandIndividuals_979 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_98
+
+:ThousandIndividuals_98 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_980
+
+:ThousandIndividuals_980 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_981
+
+:ThousandIndividuals_981 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_982
+
+:ThousandIndividuals_982 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_983
+
+:ThousandIndividuals_983 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_984
+
+:ThousandIndividuals_984 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_985
+
+:ThousandIndividuals_985 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_986
+
+:ThousandIndividuals_986 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_987
+
+:ThousandIndividuals_987 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_988
+
+:ThousandIndividuals_988 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_989
+
+:ThousandIndividuals_989 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_99
+
+:ThousandIndividuals_99 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_990
+
+:ThousandIndividuals_990 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_991
+
+:ThousandIndividuals_991 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_992
+
+:ThousandIndividuals_992 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_993
+
+:ThousandIndividuals_993 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_994
+
+:ThousandIndividuals_994 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_995
+
+:ThousandIndividuals_995 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_996
+
+:ThousandIndividuals_996 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_997
+
+:ThousandIndividuals_997 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_998
+
+:ThousandIndividuals_998 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_999
+
+:ThousandIndividuals_999 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+[ rdf:type :Class1
+] .
+
+
+#################################################################
+#
+#    General axioms
+#
+#################################################################
+
+
+[ rdf:type owl:Class ;
+  owl:unionOf ( :ObjectUnionOf_RL_Class1
+                :ObjectUnionOf_RL_Class2
+                :ObjectUnionOf_RL_Class3
+              ) ;
+  rdfs:subClassOf :ObjectUnionOf_RL
+] .
+
+
+
+[ rdf:type owl:Class ;
+  owl:oneOf ( :ObjectOneOf_RL_Individual1
+              :ObjectOneOf_RL_Individual2
+            ) ;
+  rdfs:subClassOf :ObjectOneOf_RL
+] .
+
+
+
+[ rdf:type owl:Restriction ;
+  owl:onProperty :objectSomeValuesFromProperty_RL ;
+  owl:someValuesFrom :ObjectSomeValuesFromRange_RL ;
+  rdfs:subClassOf :ObjectSomeValuesFrom_RL
+] .
+
+
+
+[ rdf:type owl:Restriction ;
+  owl:onProperty :dataSomeValuesFromProperty_RL ;
+  owl:someValuesFrom xsd:dateTime ;
+  rdfs:subClassOf :DataSomeValuesFrom_RL
+] .
+
+
+
+[ rdf:type owl:AllDisjointClasses ;
+  owl:members ( :AllDisjointClasses_Class1
+                :AllDisjointClasses_Class2
+                :AllDisjointClasses_Class3
+              )
+] .
+
+
+
+[ rdf:type owl:AllDifferent ;
+  owl:distinctMembers ( :AllDifferent_Individual1
+                        :AllDifferent_Individual2
+                        :AllDifferent_Individual3
+                        :AllDifferent_Individual4
+                      )
+] .
+
+
+
+[ rdf:type owl:AllDisjointProperties ;
+  owl:members ( :allDisjointObjectProperties_Property1
+                :allDisjointObjectProperties_Property2
+                :allDisjointObjectProperties_Property3
+              )
+] .
+
+
+
+[ rdf:type owl:AllDisjointProperties ;
+  owl:members ( :allDisjointDataProperties_Property1
+                :allDisjointDataProperties_Property2
+                :allDisjointDataProperties_Property3
+              )
+] .
+
+
+
+
+###  Generated by the OWL API (version 4.1.0) https://github.com/owlcs/owlapi
+

ontologies/fullontobench.ttl 10595(+10595 -0)

diff --git a/ontologies/fullontobench.ttl b/ontologies/fullontobench.ttl
new file mode 100644
index 0000000..d5efebf
--- /dev/null
+++ b/ontologies/fullontobench.ttl
@@ -0,0 +1,10595 @@
+@prefix : <http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix xml: <http://www.w3.org/XML/1998/namespace> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@base <http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/> .
+
+<http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/> rdf:type owl:Ontology ;
+                                                                         
+                                                                         <http://purl.org/dc/elements/1.1/title> "Benchmark Ontology"^^xsd:string ;
+                                                                         
+                                                                         <http://purl.org/dc/terms/title> "Benchmark Ontology"^^xsd:string ;
+                                                                         
+                                                                         <http://purl.org/dc/terms/identifier> "http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/"^^xsd:string ;
+                                                                         
+                                                                         <http://purl.org/dc/elements/1.1/date> "2016-03-27"^^xsd:string ;
+                                                                         
+                                                                         <http://purl.org/dc/elements/1.1/creator> "Ontology Visualization Benchmark Generator"^^xsd:string ;
+                                                                         
+                                                                         <http://purl.org/dc/terms/description> "Benchmark ontology created with the Ontology Visualization Benchmark Generator"^^xsd:string ;
+                                                                         
+                                                                         <http://purl.org/dc/elements/1.1/publisher> "Ontology Visualization Benchmark Generator"^^xsd:string ;
+                                                                         
+                                                                         rdfs:label "Benchmark Ontology"^^xsd:string ;
+                                                                         
+                                                                         <http://purl.org/dc/elements/1.1/contributor> "Vincent Link"^^xsd:string ;
+                                                                         
+                                                                         <http://purl.org/dc/elements/1.1/description> "Benchmark ontology created with the Ontology Visualization Benchmark Generator"^^xsd:string ;
+                                                                         
+                                                                         owl:versionInfo "1.0"^^xsd:string ;
+                                                                         
+                                                                         <http://purl.org/dc/elements/1.1/identifier> "http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/"^^xsd:string ;
+                                                                         
+                                                                         rdfs:comment "Benchmark ontology created with the Ontology Visualization Benchmark Generator"^^xsd:string ;
+                                                                         
+                                                                         <http://purl.org/dc/terms/date> "2016-03-27"^^xsd:string .
+
+
+#################################################################
+#
+#    Annotation properties
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/customAnnotationProperty
+
+:customAnnotationProperty rdf:type owl:AnnotationProperty .
+
+
+
+
+
+#################################################################
+#
+#    Datatypes
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataOneOf
+
+:DataOneOf rdf:type rdfs:Datatype ;
+           
+           owl:equivalentClass [ rdf:type rdfs:Datatype ;
+                                 owl:oneOf [ rdf:type rdf:List ;
+                                             rdf:first "DataOneOf_Literal1"^^xsd:string ;
+                                             rdf:rest [ rdf:type rdf:List ;
+                                                        rdf:first "DataOneOf_Literal2"^^xsd:string ;
+                                                        rdf:rest [ rdf:type rdf:List ;
+                                                                   rdf:first "DataOneOf_Literal3"^^xsd:string ;
+                                                                   rdf:rest rdf:nil
+                                                                 ]
+                                                      ]
+                                           ]
+                               ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataOneOf_EL
+
+:DataOneOf_EL rdf:type rdfs:Datatype ;
+              
+              owl:equivalentClass [ rdf:type rdfs:Datatype ;
+                                    owl:oneOf [ rdf:type rdf:List ;
+                                                rdf:first "DataOneOf_EL_Literal1"^^xsd:string ;
+                                                rdf:rest rdf:nil
+                                              ]
+                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataUnionOf_Datatype1
+
+:DataUnionOf_Datatype1 rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataUnionOf_Datatype2
+
+:DataUnionOf_Datatype2 rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DatatypeIntersectionOf_Datatype1
+
+:DatatypeIntersectionOf_Datatype1 rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DatatypeIntersectionOf_Datatype2
+
+:DatatypeIntersectionOf_Datatype2 rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DatatypeRestrictionDatatype
+
+:DatatypeRestrictionDatatype rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/RdfsDatatype
+
+:RdfsDatatype rdf:type rdfs:Datatype .
+
+
+
+
+
+#################################################################
+#
+#    Object Properties
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DeprecatedProperty
+
+:DeprecatedProperty rdf:type owl:ObjectProperty ;
+                    
+                    rdfs:domain :Class18 ;
+                    
+                    rdfs:range :DeprecatedPropertyRange ;
+                    
+                    owl:deprecated "true"^^xsd:boolean .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EightParallelProperties_1
+
+:EightParallelProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EightParallelProperties_2
+
+:EightParallelProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EightParallelProperties_3
+
+:EightParallelProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EightParallelProperties_4
+
+:EightParallelProperties_4 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EightParallelProperties_5
+
+:EightParallelProperties_5 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EightParallelProperties_6
+
+:EightParallelProperties_6 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EightParallelProperties_7
+
+:EightParallelProperties_7 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EightParallelProperties_8
+
+:EightParallelProperties_8 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FiveParallelProperties_1
+
+:FiveParallelProperties_1 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FiveParallelProperties_2
+
+:FiveParallelProperties_2 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FiveParallelProperties_3
+
+:FiveParallelProperties_3 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FiveParallelProperties_4
+
+:FiveParallelProperties_4 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FiveParallelProperties_5
+
+:FiveParallelProperties_5 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FourParallelProperties_1
+
+:FourParallelProperties_1 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FourParallelPropertiesDomain ;
+                          
+                          rdfs:range :FiveParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FourParallelProperties_2
+
+:FourParallelProperties_2 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FourParallelPropertiesDomain ;
+                          
+                          rdfs:range :FiveParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FourParallelProperties_3
+
+:FourParallelProperties_3 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FourParallelPropertiesDomain ;
+                          
+                          rdfs:range :FiveParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FourParallelProperties_4
+
+:FourParallelProperties_4 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FourParallelPropertiesDomain ;
+                          
+                          rdfs:range :FiveParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SevenParallelProperties_1
+
+:SevenParallelProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SevenParallelProperties_2
+
+:SevenParallelProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SevenParallelProperties_3
+
+:SevenParallelProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SevenParallelProperties_4
+
+:SevenParallelProperties_4 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SevenParallelProperties_5
+
+:SevenParallelProperties_5 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SevenParallelProperties_6
+
+:SevenParallelProperties_6 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SevenParallelProperties_7
+
+:SevenParallelProperties_7 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SixParallelProperties_1
+
+:SixParallelProperties_1 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SixParallelProperties_2
+
+:SixParallelProperties_2 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SixParallelProperties_3
+
+:SixParallelProperties_3 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SixParallelProperties_4
+
+:SixParallelProperties_4 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SixParallelProperties_5
+
+:SixParallelProperties_5 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SixParallelProperties_6
+
+:SixParallelProperties_6 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThreeParallelProperties_1
+
+:ThreeParallelProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :ThreeParallelPropertiesDomain ;
+                           
+                           rdfs:range :FourParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThreeParallelProperties_2
+
+:ThreeParallelProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :ThreeParallelPropertiesDomain ;
+                           
+                           rdfs:range :FourParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThreeParallelProperties_3
+
+:ThreeParallelProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :ThreeParallelPropertiesDomain ;
+                           
+                           rdfs:range :FourParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TwoParallelProperties_1
+
+:TwoParallelProperties_1 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :TwoParallelPropertiesDomain ;
+                         
+                         rdfs:range :ThreeParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TwoParallelProperties_2
+
+:TwoParallelProperties_2 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :TwoParallelPropertiesDomain ;
+                         
+                         rdfs:range :ThreeParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/allDisjointObjectProperties_Property1
+
+:allDisjointObjectProperties_Property1 rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class1 ;
+                                       
+                                       rdfs:range :DisjointObjectProperty_Range1 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/allDisjointObjectProperties_Property2
+
+:allDisjointObjectProperties_Property2 rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class1 ;
+                                       
+                                       rdfs:range :DisjointObjectProperty_Range2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/allDisjointObjectProperties_Property3
+
+:allDisjointObjectProperties_Property3 rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class1 ;
+                                       
+                                       rdfs:range :DisjointObjectProperty_Range3 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/asymmetricProperty
+
+:asymmetricProperty rdf:type owl:ObjectProperty ,
+                             owl:AsymmetricProperty ;
+                    
+                    rdfs:domain :Class1 ;
+                    
+                    rdfs:range :AsymmetricObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/eightSymmetricProperties_1
+
+:eightSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/eightSymmetricProperties_2
+
+:eightSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/eightSymmetricProperties_3
+
+:eightSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/eightSymmetricProperties_4
+
+:eightSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/eightSymmetricProperties_5
+
+:eightSymmetricProperties_5 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/eightSymmetricProperties_6
+
+:eightSymmetricProperties_6 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/eightSymmetricProperties_7
+
+:eightSymmetricProperties_7 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/eightSymmetricProperties_8
+
+:eightSymmetricProperties_8 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/equivalentObjectProperty_1
+
+:equivalentObjectProperty_1 rdf:type owl:ObjectProperty ;
+                            
+                            owl:equivalentProperty :equivalentObjectProperty_2 ;
+                            
+                            rdfs:domain :Class23 ;
+                            
+                            rdfs:range :EquivalentObjectProperty_Range1 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/equivalentObjectProperty_2
+
+:equivalentObjectProperty_2 rdf:type owl:ObjectProperty ;
+                            
+                            owl:equivalentProperty :equivalentObjectProperty_3 ;
+                            
+                            rdfs:domain :Class23 ;
+                            
+                            rdfs:range :EquivalentObjectProperty_Range2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/equivalentObjectProperty_3
+
+:equivalentObjectProperty_3 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :Class23 ;
+                            
+                            rdfs:range :EquivalentObjectProperty_Range3 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/fiveSymmetricProperties_1
+
+:fiveSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/fiveSymmetricProperties_2
+
+:fiveSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/fiveSymmetricProperties_3
+
+:fiveSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/fiveSymmetricProperties_4
+
+:fiveSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/fiveSymmetricProperties_5
+
+:fiveSymmetricProperties_5 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/fourSymmetricProperties_1
+
+:fourSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FourSymmetricProperties ;
+                           
+                           rdfs:range :FourSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/fourSymmetricProperties_2
+
+:fourSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FourSymmetricProperties ;
+                           
+                           rdfs:range :FourSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/fourSymmetricProperties_3
+
+:fourSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FourSymmetricProperties ;
+                           
+                           rdfs:range :FourSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/fourSymmetricProperties_4
+
+:fourSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FourSymmetricProperties ;
+                           
+                           rdfs:range :FourSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/functionalObjectProperty
+
+:functionalObjectProperty rdf:type owl:ObjectProperty ,
+                                   owl:FunctionalProperty ;
+                          
+                          rdfs:domain :Class23 ;
+                          
+                          rdfs:range :FunctionalObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/hasKeyProperty_2
+
+:hasKeyProperty_2 rdf:type owl:ObjectProperty ;
+                  
+                  rdfs:domain :HasKeyClass ;
+                  
+                  rdfs:range :HasKeyPropertyRange_2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/hasSelfProperty
+
+:hasSelfProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/inverseFunctionalObjectProperty
+
+:inverseFunctionalObjectProperty rdf:type owl:ObjectProperty ,
+                                          owl:InverseFunctionalProperty ;
+                                 
+                                 rdfs:domain :Class23 ;
+                                 
+                                 rdfs:range :InverseFunctionalObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/inverseProperty
+
+:inverseProperty rdf:type owl:ObjectProperty ;
+                 
+                 owl:inverseOf :nonInverseProperty ;
+                 
+                 rdfs:domain :InverseOfPropertyRange ;
+                 
+                 rdfs:range :Class23 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/irreflexiveObjectProperty
+
+:irreflexiveObjectProperty rdf:type owl:ObjectProperty ,
+                                    owl:IrreflexiveProperty ;
+                           
+                           rdfs:domain :Class23 ;
+                           
+                           rdfs:range :IrreflexiveObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/negativeObjectPropertyAssertionProperty
+
+:negativeObjectPropertyAssertionProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/noDomainAndRangeObjectProperty
+
+:noDomainAndRangeObjectProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/noDomainObjectProperty
+
+:noDomainObjectProperty rdf:type owl:ObjectProperty ;
+                        
+                        rdfs:range :Range .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/noRangeObjectProperty
+
+:noRangeObjectProperty rdf:type owl:ObjectProperty ;
+                       
+                       rdfs:domain :Domain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/nonInverseProperty
+
+:nonInverseProperty rdf:type owl:ObjectProperty ;
+                    
+                    rdfs:domain :Class23 ;
+                    
+                    rdfs:range :InverseOfPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectAllValuesFromProperty
+
+:objectAllValuesFromProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectExactCardinalityProperty
+
+:objectExactCardinalityProperty rdf:type owl:ObjectProperty ;
+                                
+                                rdfs:domain :Class1 ;
+                                
+                                rdfs:range :ObjectExactCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectExactCardinalityProperty_Lite
+
+:objectExactCardinalityProperty_Lite rdf:type owl:ObjectProperty ;
+                                     
+                                     rdfs:domain :Class18 ;
+                                     
+                                     rdfs:range :ObjectExactCardinalityRange_Lite .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectExactQualifiedCardinalityProperty
+
+:objectExactQualifiedCardinalityProperty rdf:type owl:ObjectProperty ;
+                                         
+                                         rdfs:domain :Class40 ;
+                                         
+                                         rdfs:range :ObjectExactQualifiedCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectHasValueProperty
+
+:objectHasValueProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectMaxCardinalityProperty
+
+:objectMaxCardinalityProperty rdf:type owl:ObjectProperty ;
+                              
+                              rdfs:domain :Class23 ;
+                              
+                              rdfs:range :ObjectMaxCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectMaxCardinalityProperty_LiteRL
+
+:objectMaxCardinalityProperty_LiteRL rdf:type owl:ObjectProperty ;
+                                     
+                                     rdfs:domain :Class23 ;
+                                     
+                                     rdfs:range :ObjectMaxCardinalityRange_LiteRL .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectMaxQualifiedCardinalityProperty
+
+:objectMaxQualifiedCardinalityProperty rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class40 ;
+                                       
+                                       rdfs:range :ObjectMaxQualifiedCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectMaxQualifiedCardinalityProperty_RL
+
+:objectMaxQualifiedCardinalityProperty_RL rdf:type owl:ObjectProperty ;
+                                          
+                                          rdfs:domain :Class40 ;
+                                          
+                                          rdfs:range :ObjectMaxQualifiedCardinalityRange_RL .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectMinCardinalityProperty
+
+:objectMinCardinalityProperty rdf:type owl:ObjectProperty ;
+                              
+                              rdfs:domain :Class40 ;
+                              
+                              rdfs:range :ObjectMinCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectMinCardinalityProperty_Lite
+
+:objectMinCardinalityProperty_Lite rdf:type owl:ObjectProperty ;
+                                   
+                                   rdfs:domain :Class40 ;
+                                   
+                                   rdfs:range :ObjectMinCardinalityRange_Lite .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectMinQualifiedCardinalityProperty
+
+:objectMinQualifiedCardinalityProperty rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class40 ;
+                                       
+                                       rdfs:range :ObjectMinQualifiedCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectProperty
+
+:objectProperty rdf:type owl:ObjectProperty ;
+                
+                rdfs:domain :Class1 ;
+                
+                rdfs:range :ObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectPropertyDisjointWith_Property1
+
+:objectPropertyDisjointWith_Property1 rdf:type owl:ObjectProperty ;
+                                      
+                                      rdfs:domain :Class40 ;
+                                      
+                                      rdfs:range :ObjectPropertyDisjointWith_Range1 ;
+                                      
+                                      owl:propertyDisjointWith :objectPropertyDisjointWith_Property2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectPropertyDisjointWith_Property2
+
+:objectPropertyDisjointWith_Property2 rdf:type owl:ObjectProperty ;
+                                      
+                                      rdfs:domain :Class40 ;
+                                      
+                                      rdfs:range :ObjectPropertyDisjointWith_Range2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectSomeValuesFromProperty
+
+:objectSomeValuesFromProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/objectSomeValuesFromProperty_RL
+
+:objectSomeValuesFromProperty_RL rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/oneSymmetricProperty_1
+
+:oneSymmetricProperty_1 rdf:type owl:ObjectProperty ;
+                        
+                        rdfs:domain :OneSymmetricProperty ;
+                        
+                        rdfs:range :OneSymmetricProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/propertyChainProperty_DoubleStep
+
+:propertyChainProperty_DoubleStep rdf:type owl:ObjectProperty ;
+                                  
+                                  rdfs:domain :PropertyChainEnd ;
+                                  
+                                  rdfs:range :Class40 ;
+                                  
+                                  owl:propertyChainAxiom ( :propertyChainProperty_SingleStep
+                                                           :propertyChainProperty_SingleStep
+                                                         ) .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/propertyChainProperty_SingleStep
+
+:propertyChainProperty_SingleStep rdf:type owl:ObjectProperty ;
+                                  
+                                  rdfs:domain :PropertyChainEnd ,
+                                              :PropertyChainMiddle ;
+                                  
+                                  rdfs:range :Class40 ,
+                                             :PropertyChainMiddle .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/propertyWithInfos
+
+:propertyWithInfos rdf:type owl:ObjectProperty ;
+                   
+                   rdfs:domain :Class57 ;
+                   
+                   rdfs:range :ClassWithInfos ;
+                   
+                   rdfs:comment "Comment of a property"@en ,
+                                "Comment of a property (undefined language)"^^xsd:string ,
+                                "Kommentar einer Property"@de ,
+                                "プロパティのコメント"@ja ;
+                   
+                   rdfs:label "Bezeichnung einer Property"@de ,
+                              "Label of a property"@en ,
+                              "Label of a property (undefined language)"^^xsd:string ,
+                              "プロパティの指定"@ja .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/reflexiveObjectProperty
+
+:reflexiveObjectProperty rdf:type owl:ObjectProperty ,
+                                  owl:ReflexiveProperty ;
+                         
+                         rdfs:domain :Class57 ;
+                         
+                         rdfs:range :ReflexiveObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/sevenSymmetricProperties_1
+
+:sevenSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/sevenSymmetricProperties_2
+
+:sevenSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/sevenSymmetricProperties_3
+
+:sevenSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/sevenSymmetricProperties_4
+
+:sevenSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/sevenSymmetricProperties_5
+
+:sevenSymmetricProperties_5 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/sevenSymmetricProperties_6
+
+:sevenSymmetricProperties_6 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/sevenSymmetricProperties_7
+
+:sevenSymmetricProperties_7 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/sixSymmetricProperties_1
+
+:sixSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/sixSymmetricProperties_2
+
+:sixSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/sixSymmetricProperties_3
+
+:sixSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/sixSymmetricProperties_4
+
+:sixSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/sixSymmetricProperties_5
+
+:sixSymmetricProperties_5 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/sixSymmetricProperties_6
+
+:sixSymmetricProperties_6 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/subObjectProperty
+
+:subObjectProperty rdf:type owl:ObjectProperty ;
+                   
+                   rdfs:subPropertyOf :superObjectProperty ;
+                   
+                   rdfs:domain :Class57 ;
+                   
+                   rdfs:range :Class66 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/superObjectProperty
+
+:superObjectProperty rdf:type owl:ObjectProperty ;
+                     
+                     rdfs:domain :Class66 ;
+                     
+                     rdfs:range :Class67 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/symmetricObjectProperty
+
+:symmetricObjectProperty rdf:type owl:ObjectProperty ,
+                                  owl:SymmetricProperty ;
+                         
+                         rdfs:domain :Class66 ;
+                         
+                         rdfs:range :SymmetricObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/threeSymmetricProperties_1
+
+:threeSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :ThreeSymmetricProperties ;
+                            
+                            rdfs:range :ThreeSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/threeSymmetricProperties_2
+
+:threeSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :ThreeSymmetricProperties ;
+                            
+                            rdfs:range :ThreeSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/threeSymmetricProperties_3
+
+:threeSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :ThreeSymmetricProperties ;
+                            
+                            rdfs:range :ThreeSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/transitiveObjectProperty
+
+:transitiveObjectProperty rdf:type owl:ObjectProperty ,
+                                   owl:TransitiveProperty ;
+                          
+                          rdfs:domain :Class66 ;
+                          
+                          rdfs:range :TransitiveObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/twoSymmetricProperties_1
+
+:twoSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :TwoSymmetricProperties ;
+                          
+                          rdfs:range :TwoSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/twoSymmetricProperties_2
+
+:twoSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :TwoSymmetricProperties ;
+                          
+                          rdfs:range :TwoSymmetricProperties .
+
+
+
+###  http://www.w3.org/2002/07/owl#bottomObjectProperty
+
+owl:bottomObjectProperty rdfs:domain :Class1 ;
+                         
+                         rdfs:range :BottomObjectPropertyRange .
+
+
+
+###  http://www.w3.org/2002/07/owl#topObjectProperty
+
+owl:topObjectProperty rdfs:domain :Class1 ;
+                      
+                      rdfs:range :TopObjectPropertyRange .
+
+
+
+
+
+#################################################################
+#
+#    Data properties
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataUnionOf
+
+:DataUnionOf rdf:type owl:DatatypeProperty ;
+             
+             rdfs:domain :Class66 ;
+             
+             rdfs:range [ rdf:type rdfs:Datatype ;
+                          owl:unionOf ( :DataUnionOf_Datatype1
+                                        :DataUnionOf_Datatype2
+                                      )
+                        ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/allDisjointDataProperties_Property1
+
+:allDisjointDataProperties_Property1 rdf:type owl:DatatypeProperty ;
+                                     
+                                     rdfs:domain :Class1 ;
+                                     
+                                     rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/allDisjointDataProperties_Property2
+
+:allDisjointDataProperties_Property2 rdf:type owl:DatatypeProperty ;
+                                     
+                                     rdfs:domain :Class1 ;
+                                     
+                                     rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/allDisjointDataProperties_Property3
+
+:allDisjointDataProperties_Property3 rdf:type owl:DatatypeProperty ;
+                                     
+                                     rdfs:domain :Class1 ;
+                                     
+                                     rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataAllValuesFromProperty
+
+:dataAllValuesFromProperty rdf:type owl:DatatypeProperty ;
+                           
+                           rdfs:domain :Class1 ;
+                           
+                           rdfs:range xsd:integer .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataComplementOfProperty
+
+:dataComplementOfProperty rdf:type owl:DatatypeProperty ;
+                          
+                          rdfs:domain :Class18 ;
+                          
+                          rdfs:range [ rdf:type rdfs:Datatype ;
+                                       owl:datatypeComplementOf xsd:string
+                                     ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataExactCardinality
+
+:dataExactCardinality rdf:type owl:DatatypeProperty ;
+                      
+                      rdfs:domain :Class1 ;
+                      
+                      rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataExactQualifiedCardinality
+
+:dataExactQualifiedCardinality rdf:type owl:DatatypeProperty ;
+                               
+                               rdfs:domain :Class57 ;
+                               
+                               rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataHasValueProperty
+
+:dataHasValueProperty rdf:type owl:DatatypeProperty ;
+                      
+                      rdfs:domain :Class23 ;
+                      
+                      rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataMaxCardinality
+
+:dataMaxCardinality rdf:type owl:DatatypeProperty ;
+                    
+                    rdfs:domain :Class23 ;
+                    
+                    rdfs:range xsd:float .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataMaxCardinality_RL
+
+:dataMaxCardinality_RL rdf:type owl:DatatypeProperty ;
+                       
+                       rdfs:domain :Class40 ;
+                       
+                       rdfs:range xsd:float .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataMaxQualifiedCardinality
+
+:dataMaxQualifiedCardinality rdf:type owl:DatatypeProperty ;
+                             
+                             rdfs:domain :Class40 ;
+                             
+                             rdfs:range rdfs:Literal .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataMaxQualifiedCardinality_RL
+
+:dataMaxQualifiedCardinality_RL rdf:type owl:DatatypeProperty ;
+                                
+                                rdfs:domain :Class40 ;
+                                
+                                rdfs:range rdfs:Literal .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataMinCardinality
+
+:dataMinCardinality rdf:type owl:DatatypeProperty ;
+                    
+                    rdfs:domain :Class40 ;
+                    
+                    rdfs:range xsd:boolean .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataMinQualifiedCardinality
+
+:dataMinQualifiedCardinality rdf:type owl:DatatypeProperty ;
+                             
+                             rdfs:domain :Class40 ;
+                             
+                             rdfs:range xsd:float .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataPropertyDisjointWith_Property1
+
+:dataPropertyDisjointWith_Property1 rdf:type owl:DatatypeProperty ;
+                                    
+                                    rdfs:domain :Class40 ;
+                                    
+                                    rdfs:range xsd:integer ;
+                                    
+                                    owl:propertyDisjointWith :dataPropertyDisjointWith_Property2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataPropertyDisjointWith_Property2
+
+:dataPropertyDisjointWith_Property2 rdf:type owl:DatatypeProperty ;
+                                    
+                                    rdfs:domain :Class40 ;
+                                    
+                                    rdfs:range xsd:decimal .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataSomeValuesFromProperty
+
+:dataSomeValuesFromProperty rdf:type owl:DatatypeProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/dataSomeValuesFromProperty_RL
+
+:dataSomeValuesFromProperty_RL rdf:type owl:DatatypeProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/datatypeIntersectionOfProperty
+
+:datatypeIntersectionOfProperty rdf:type owl:DatatypeProperty ;
+                                
+                                rdfs:domain :Class23 ;
+                                
+                                rdfs:range [ rdf:type rdfs:Datatype ;
+                                             owl:intersectionOf ( :DatatypeIntersectionOf_Datatype1
+                                                                  :DatatypeIntersectionOf_Datatype2
+                                                                )
+                                           ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/datatypeIntersectionOfProperty_OWL2
+
+:datatypeIntersectionOfProperty_OWL2 rdf:type owl:DatatypeProperty ;
+                                     
+                                     rdfs:domain :Class23 ;
+                                     
+                                     rdfs:range [ rdf:type rdfs:Datatype ;
+                                                  owl:intersectionOf ( xsd:dateTime
+                                                                       xsd:string
+                                                                     )
+                                                ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/datatypeProperty
+
+:datatypeProperty rdf:type owl:DatatypeProperty ;
+                  
+                  rdfs:domain :Class18 ;
+                  
+                  rdfs:range xsd:integer .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/datatypeRestrictionProperty
+
+:datatypeRestrictionProperty rdf:type owl:DatatypeProperty ;
+                             
+                             rdfs:domain :Class57 ;
+                             
+                             rdfs:range [ rdf:type rdfs:Datatype ;
+                                          owl:onDatatype :DatatypeRestrictionDatatype ;
+                                          owl:withRestrictions ( [ xsd:minLength 10
+                                                                 ]
+                                                                 [ xsd:pattern "DatatypeRestrictionLiteral"^^xsd:string
+                                                                 ]
+                                                               )
+                                        ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/equivalentDataProperty_1
+
+:equivalentDataProperty_1 rdf:type owl:DatatypeProperty ;
+                          
+                          owl:equivalentProperty :equivalentDataProperty_2 ;
+                          
+                          rdfs:domain :Class23 ;
+                          
+                          rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/equivalentDataProperty_2
+
+:equivalentDataProperty_2 rdf:type owl:DatatypeProperty ;
+                          
+                          owl:equivalentProperty :equivalentDataProperty_3 ;
+                          
+                          rdfs:domain :Class23 ;
+                          
+                          rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/equivalentDataProperty_3
+
+:equivalentDataProperty_3 rdf:type owl:DatatypeProperty ;
+                          
+                          rdfs:domain :Class23 ;
+                          
+                          rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/functionalDataProperty
+
+:functionalDataProperty rdf:type owl:DatatypeProperty ,
+                                 owl:FunctionalProperty ;
+                        
+                        rdfs:domain :Class23 ;
+                        
+                        rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/hasKeyProperty_1
+
+:hasKeyProperty_1 rdf:type owl:DatatypeProperty ;
+                  
+                  rdfs:domain :HasKeyClass ;
+                  
+                  rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/negativeDataPropertyAssertionProperty
+
+:negativeDataPropertyAssertionProperty rdf:type owl:DatatypeProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/noDomainAndRangeDataProperty
+
+:noDomainAndRangeDataProperty rdf:type owl:DatatypeProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/noDomainDataProperty
+
+:noDomainDataProperty rdf:type owl:DatatypeProperty ;
+                      
+                      rdfs:range rdfs:Literal .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/noRangeDataProperty
+
+:noRangeDataProperty rdf:type owl:DatatypeProperty ;
+                     
+                     rdfs:domain :Domain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/subDataProperty
+
+:subDataProperty rdf:type owl:DatatypeProperty ;
+                 
+                 rdfs:subPropertyOf :superDataProperty ;
+                 
+                 rdfs:domain :Class57 ;
+                 
+                 rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/superDataProperty
+
+:superDataProperty rdf:type owl:DatatypeProperty ;
+                   
+                   rdfs:domain :Class57 ;
+                   
+                   rdfs:range xsd:string .
+
+
+
+###  http://www.w3.org/2002/07/owl#bottomDataProperty
+
+owl:bottomDataProperty rdfs:domain :Class1 ;
+                       
+                       rdfs:range xsd:integer .
+
+
+
+###  http://www.w3.org/2002/07/owl#topDataProperty
+
+owl:topDataProperty rdfs:domain :Class66 ;
+                    
+                    rdfs:range xsd:integer .
+
+
+
+
+
+#################################################################
+#
+#    Classes
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/AllDisjointClasses_Class1
+
+:AllDisjointClasses_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/AllDisjointClasses_Class2
+
+:AllDisjointClasses_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/AllDisjointClasses_Class3
+
+:AllDisjointClasses_Class3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/AsymmetricObjectPropertyRange
+
+:AsymmetricObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/BottomObjectPropertyRange
+
+:BottomObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/Class1
+
+:Class1 rdf:type owl:Class ;
+        
+        :customAnnotationProperty "Custom Annotation Value"^^xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/Class18
+
+:Class18 rdf:type owl:Class ;
+         
+         owl:equivalentClass :EquivalentClass_1 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/Class23
+
+:Class23 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/Class40
+
+:Class40 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/Class57
+
+:Class57 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/Class66
+
+:Class66 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/Class67
+
+:Class67 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ClassWithInfos
+
+:ClassWithInfos rdfs:comment "Comment of a class"@en ,
+                             "Comment of a class (undefined language)"^^xsd:string ,
+                             "Kommentar einer Klasse"@de ,
+                             "どうもありがとうミスターロボット"@ja ;
+                
+                rdfs:label "Bezeichnung einer Klasse"@de ,
+                           "Label of a class"@en ,
+                           "Label of a class (undefined language)"^^xsd:string ,
+                           "どうもありがとうミスターロボット"@ja .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataAllValuesFrom
+
+:DataAllValuesFrom rdf:type owl:Class ;
+                   
+                   rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                     owl:onProperty :dataAllValuesFromProperty ;
+                                     owl:allValuesFrom xsd:integer
+                                   ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataExactCardinalityRange
+
+:DataExactCardinalityRange rdf:type owl:Class ;
+                           
+                           rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                             owl:onProperty :dataExactCardinality ;
+                                             owl:cardinality "11"^^xsd:nonNegativeInteger
+                                           ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataExactQualifiedCardinalityRange
+
+:DataExactQualifiedCardinalityRange rdf:type owl:Class ;
+                                    
+                                    rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                      owl:onProperty :dataExactQualifiedCardinality ;
+                                                      owl:qualifiedCardinality "12"^^xsd:nonNegativeInteger ;
+                                                      owl:onDataRange xsd:dateTime
+                                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataHasValue
+
+:DataHasValue rdf:type owl:Class ;
+              
+              rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                owl:onProperty :dataHasValueProperty ;
+                                owl:hasValue 6
+                              ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataMaxCardinalityRange
+
+:DataMaxCardinalityRange rdf:type owl:Class ;
+                         
+                         rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                           owl:onProperty :dataMaxCardinality ;
+                                           owl:maxCardinality "19"^^xsd:nonNegativeInteger
+                                         ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataMaxCardinalityRange_RL
+
+:DataMaxCardinalityRange_RL rdf:type owl:Class ;
+                            
+                            rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                              owl:onProperty :dataMaxCardinality_RL ;
+                                              owl:maxCardinality "1"^^xsd:nonNegativeInteger
+                                            ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataMaxQualifiedCardinalityRange
+
+:DataMaxQualifiedCardinalityRange rdf:type owl:Class ;
+                                  
+                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                    owl:onProperty :dataMaxQualifiedCardinality ;
+                                                    owl:maxQualifiedCardinality "18"^^xsd:nonNegativeInteger ;
+                                                    owl:onDataRange xsd:byte
+                                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataMaxQualifiedCardinalityRange_RL
+
+:DataMaxQualifiedCardinalityRange_RL rdf:type owl:Class ;
+                                     
+                                     rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                       owl:onProperty :dataMaxQualifiedCardinality_RL ;
+                                                       owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
+                                                       owl:onDataRange xsd:byte
+                                                     ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataMinCardinalityRange
+
+:DataMinCardinalityRange rdf:type owl:Class ;
+                         
+                         rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                           owl:onProperty :dataMinCardinality ;
+                                           owl:minCardinality "3"^^xsd:nonNegativeInteger
+                                         ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataMinQualifiedCardinalityRange
+
+:DataMinQualifiedCardinalityRange rdf:type owl:Class ;
+                                  
+                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                    owl:onProperty :dataMinQualifiedCardinality ;
+                                                    owl:minQualifiedCardinality "9"^^xsd:nonNegativeInteger ;
+                                                    owl:onDataRange xsd:dateTime
+                                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataSomeValuesFrom
+
+:DataSomeValuesFrom rdf:type owl:Class ;
+                    
+                    rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                      owl:onProperty :dataSomeValuesFromProperty ;
+                                      owl:someValuesFrom xsd:dateTime
+                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DataSomeValuesFrom_RL
+
+:DataSomeValuesFrom_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DeprecatedClass
+
+:DeprecatedClass rdf:type owl:Class ;
+                 
+                 owl:deprecated "true"^^xsd:boolean .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DeprecatedPropertyRange
+
+:DeprecatedPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DisjointObjectProperty_Range1
+
+:DisjointObjectProperty_Range1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DisjointObjectProperty_Range2
+
+:DisjointObjectProperty_Range2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DisjointObjectProperty_Range3
+
+:DisjointObjectProperty_Range3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DisjointUnion
+
+:DisjointUnion rdf:type owl:Class ;
+               
+               owl:disjointUnionOf ( :DisjointUnion_Class1
+                                     :DisjointUnion_Class2
+                                   ) .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DisjointUnion_Class1
+
+:DisjointUnion_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DisjointUnion_Class2
+
+:DisjointUnion_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DisjointWith_Class1
+
+:DisjointWith_Class1 rdf:type owl:Class ;
+                     
+                     owl:disjointWith :DisjointWith_Class2 ,
+                                      :DisjointWith_Class3 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DisjointWith_Class2
+
+:DisjointWith_Class2 rdf:type owl:Class ;
+                     
+                     owl:disjointWith :DisjointWith_Class3 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/DisjointWith_Class3
+
+:DisjointWith_Class3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/Domain
+
+:Domain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EightParallelPropertiesDomain
+
+:EightParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EightParallelPropertiesRange
+
+:EightParallelPropertiesRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EightSymmetricProperties
+
+:EightSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EquivalentClass_1
+
+:EquivalentClass_1 rdf:type owl:Class ;
+                   
+                   owl:equivalentClass :EquivalentClass_2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EquivalentClass_2
+
+:EquivalentClass_2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EquivalentObjectProperty_Range1
+
+:EquivalentObjectProperty_Range1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EquivalentObjectProperty_Range2
+
+:EquivalentObjectProperty_Range2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/EquivalentObjectProperty_Range3
+
+:EquivalentObjectProperty_Range3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FiveParallelPropertiesDomain
+
+:FiveParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FiveSymmetricProperties
+
+:FiveSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FourParallelPropertiesDomain
+
+:FourParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FourSymmetricProperties
+
+:FourSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/FunctionalObjectPropertyRange
+
+:FunctionalObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HasKeyClass
+
+:HasKeyClass rdf:type owl:Class ;
+             
+             owl:hasKey ( :hasKeyProperty_2
+                          :hasKeyProperty_1
+                        ) .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HasKeyPropertyRange_2
+
+:HasKeyPropertyRange_2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HasSelfClass
+
+:HasSelfClass rdf:type owl:Class ;
+              
+              owl:equivalentClass [ rdf:type owl:Restriction ;
+                                    owl:onProperty :hasSelfProperty ;
+                                    owl:hasSelf "true"^^xsd:boolean
+                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals
+
+:HundredIndividuals rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/InverseFunctionalObjectPropertyRange
+
+:InverseFunctionalObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/InverseOfPropertyRange
+
+:InverseOfPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/IrreflexiveObjectPropertyRange
+
+:IrreflexiveObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/NoObjectComplementOf
+
+:NoObjectComplementOf rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectAllValuesFrom
+
+:ObjectAllValuesFrom rdf:type owl:Class ;
+                     
+                     rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                       owl:onProperty :objectAllValuesFromProperty ;
+                                       owl:allValuesFrom :ObjectAllValuesFromRange
+                                     ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectAllValuesFromRange
+
+:ObjectAllValuesFromRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectComplementOf
+
+:ObjectComplementOf rdf:type owl:Class ;
+                    
+                    rdfs:subClassOf [ rdf:type owl:Class ;
+                                      owl:complementOf :NoObjectComplementOf
+                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectExactCardinalityRange
+
+:ObjectExactCardinalityRange rdf:type owl:Class ;
+                             
+                             rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                               owl:onProperty :objectExactCardinalityProperty ;
+                                               owl:cardinality "4"^^xsd:nonNegativeInteger
+                                             ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectExactCardinalityRange_Lite
+
+:ObjectExactCardinalityRange_Lite rdf:type owl:Class ;
+                                  
+                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                    owl:onProperty :objectExactCardinalityProperty_Lite ;
+                                                    owl:cardinality "1"^^xsd:nonNegativeInteger
+                                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectExactQualifiedCardinalityRange
+
+:ObjectExactQualifiedCardinalityRange rdf:type owl:Class ;
+                                      
+                                      rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                        owl:onProperty :objectExactQualifiedCardinalityProperty ;
+                                                        owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
+                                                        owl:onClass :ObjectExactQualifiedCardinality_Qualifier
+                                                      ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectExactQualifiedCardinality_Qualifier
+
+:ObjectExactQualifiedCardinality_Qualifier rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectHasValue
+
+:ObjectHasValue rdf:type owl:Class ;
+                
+                rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                  owl:onProperty :objectHasValueProperty ;
+                                  owl:hasValue :ObjectHasValue_Individual
+                                ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectIntersectionOf
+
+:ObjectIntersectionOf rdf:type owl:Class ;
+                      
+                      owl:equivalentClass [ owl:intersectionOf ( :ObjectIntersectionOf_Class1
+                                                                 :ObjectIntersectionOf_Class2
+                                                               ) ;
+                                            rdf:type owl:Class
+                                          ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectIntersectionOf_Class1
+
+:ObjectIntersectionOf_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectIntersectionOf_Class2
+
+:ObjectIntersectionOf_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectIntersectionOf_QL
+
+:ObjectIntersectionOf_QL rdf:type owl:Class ;
+                         
+                         rdfs:subClassOf [ owl:intersectionOf ( :ObjectIntersectionOf_QL_Class1
+                                                                :ObjectIntersectionOf_QL_Class2
+                                                              ) ;
+                                           rdf:type owl:Class
+                                         ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectIntersectionOf_QL_Class1
+
+:ObjectIntersectionOf_QL_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectIntersectionOf_QL_Class2
+
+:ObjectIntersectionOf_QL_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectMaxCardinalityRange
+
+:ObjectMaxCardinalityRange rdf:type owl:Class ;
+                           
+                           rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                             owl:onProperty :objectMaxCardinalityProperty ;
+                                             owl:maxCardinality "8"^^xsd:nonNegativeInteger
+                                           ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectMaxCardinalityRange_LiteRL
+
+:ObjectMaxCardinalityRange_LiteRL rdf:type owl:Class ;
+                                  
+                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                    owl:onProperty :objectMaxCardinalityProperty_LiteRL ;
+                                                    owl:maxCardinality "1"^^xsd:nonNegativeInteger
+                                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectMaxQualifiedCardinalityRange
+
+:ObjectMaxQualifiedCardinalityRange rdf:type owl:Class ;
+                                    
+                                    rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                      owl:onProperty :objectMaxQualifiedCardinalityProperty ;
+                                                      owl:maxQualifiedCardinality "3"^^xsd:nonNegativeInteger ;
+                                                      owl:onClass :ObjectMaxQualifiedCardinality_Qualifier
+                                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectMaxQualifiedCardinalityRange_RL
+
+:ObjectMaxQualifiedCardinalityRange_RL rdf:type owl:Class ;
+                                       
+                                       rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                         owl:onProperty :objectMaxQualifiedCardinalityProperty_RL ;
+                                                         owl:maxQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
+                                                         owl:onClass :ObjectMaxQualifiedCardinality_RL_Qualifier
+                                                       ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectMaxQualifiedCardinality_Qualifier
+
+:ObjectMaxQualifiedCardinality_Qualifier rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectMaxQualifiedCardinality_RL_Qualifier
+
+:ObjectMaxQualifiedCardinality_RL_Qualifier rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectMinCardinalityRange
+
+:ObjectMinCardinalityRange rdf:type owl:Class ;
+                           
+                           rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                             owl:onProperty :objectMinCardinalityProperty ;
+                                             owl:minCardinality "2"^^xsd:nonNegativeInteger
+                                           ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectMinCardinalityRange_Lite
+
+:ObjectMinCardinalityRange_Lite rdf:type owl:Class ;
+                                
+                                rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                  owl:onProperty :objectMinCardinalityProperty_Lite ;
+                                                  owl:minCardinality "0"^^xsd:nonNegativeInteger
+                                                ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectMinQualifiedCardinalityRange
+
+:ObjectMinQualifiedCardinalityRange rdf:type owl:Class ;
+                                    
+                                    rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                      owl:onProperty :objectMinQualifiedCardinalityProperty ;
+                                                      owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
+                                                      owl:onClass :ObjectMinQualifiedCardinality_Qualifier
+                                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectMinQualifiedCardinality_Qualifier
+
+:ObjectMinQualifiedCardinality_Qualifier rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectOneOf
+
+:ObjectOneOf rdf:type owl:Class ;
+             
+             owl:equivalentClass [ rdf:type owl:Class ;
+                                   owl:oneOf ( :ObjectOneOf_Individual1
+                                               :ObjectOneOf_Individual2
+                                             )
+                                 ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectOneOf_EL
+
+:ObjectOneOf_EL rdf:type owl:Class ;
+                
+                rdfs:subClassOf [ rdf:type owl:Class ;
+                                  owl:oneOf ( :ObjectOneOf_EL_Individual
+                                            )
+                                ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectOneOf_RL
+
+:ObjectOneOf_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectPropertyDisjointWith_Range1
+
+:ObjectPropertyDisjointWith_Range1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectPropertyDisjointWith_Range2
+
+:ObjectPropertyDisjointWith_Range2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectPropertyRange
+
+:ObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectSomeValuesFrom
+
+:ObjectSomeValuesFrom rdf:type owl:Class ;
+                      
+                      rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                        owl:onProperty :objectSomeValuesFromProperty ;
+                                        owl:someValuesFrom :ObjectSomeValuesFromRange
+                                      ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectSomeValuesFromRange
+
+:ObjectSomeValuesFromRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectSomeValuesFromRange_RL
+
+:ObjectSomeValuesFromRange_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectSomeValuesFrom_RL
+
+:ObjectSomeValuesFrom_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectUnionOf
+
+:ObjectUnionOf rdf:type owl:Class ;
+               
+               rdfs:subClassOf [ rdf:type owl:Class ;
+                                 owl:unionOf ( :ObjectUnionOf_Class1
+                                               :ObjectUnionOf_Class2
+                                               :ObjectUnionOf_Class3
+                                             )
+                               ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectUnionOf_Class1
+
+:ObjectUnionOf_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectUnionOf_Class2
+
+:ObjectUnionOf_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectUnionOf_Class3
+
+:ObjectUnionOf_Class3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectUnionOf_RL
+
+:ObjectUnionOf_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectUnionOf_RL_Class1
+
+:ObjectUnionOf_RL_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectUnionOf_RL_Class2
+
+:ObjectUnionOf_RL_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectUnionOf_RL_Class3
+
+:ObjectUnionOf_RL_Class3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/OneSymmetricProperty
+
+:OneSymmetricProperty rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/PropertyChainEnd
+
+:PropertyChainEnd rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/PropertyChainMiddle
+
+:PropertyChainMiddle rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/Range
+
+:Range rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ReflexiveObjectPropertyRange
+
+:ReflexiveObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SevenParallelPropertiesDomain
+
+:SevenParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SevenSymmetricProperties
+
+:SevenSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SixParallelPropertiesDomain
+
+:SixParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SixSymmetricProperties
+
+:SixSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SubClass
+
+:SubClass rdf:type owl:Class ;
+          
+          rdfs:subClassOf :SuperClass .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SuperClass
+
+:SuperClass rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SymmetricObjectPropertyRange
+
+:SymmetricObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TenIndividuals
+
+:TenIndividuals rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals
+
+:ThousandIndividuals rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThreeParallelPropertiesDomain
+
+:ThreeParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThreeSymmetricProperties
+
+:ThreeSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TopObjectPropertyRange
+
+:TopObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TransitiveObjectPropertyRange
+
+:TransitiveObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TwoParallelPropertiesDomain
+
+:TwoParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TwoSymmetricProperties
+
+:TwoSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://www.w3.org/2002/07/owl#Nothing
+
+owl:Nothing rdf:type owl:Class .
+
+
+
+###  http://www.w3.org/2002/07/owl#Thing
+
+owl:Thing rdf:type owl:Class .
+
+
+
+
+
+#################################################################
+#
+#    Individuals
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/AllDifferent_Individual1
+
+:AllDifferent_Individual1 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/AllDifferent_Individual2
+
+:AllDifferent_Individual2 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/AllDifferent_Individual3
+
+:AllDifferent_Individual3 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/AllDifferent_Individual4
+
+:AllDifferent_Individual4 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_1
+
+:HundredIndividuals_1 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_10
+
+:HundredIndividuals_10 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_100
+
+:HundredIndividuals_100 rdf:type owl:NamedIndividual ,
+                                 :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_11
+
+:HundredIndividuals_11 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_12
+
+:HundredIndividuals_12 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_13
+
+:HundredIndividuals_13 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_14
+
+:HundredIndividuals_14 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_15
+
+:HundredIndividuals_15 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_16
+
+:HundredIndividuals_16 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_17
+
+:HundredIndividuals_17 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_18
+
+:HundredIndividuals_18 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_19
+
+:HundredIndividuals_19 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_2
+
+:HundredIndividuals_2 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_20
+
+:HundredIndividuals_20 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_21
+
+:HundredIndividuals_21 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_22
+
+:HundredIndividuals_22 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_23
+
+:HundredIndividuals_23 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_24
+
+:HundredIndividuals_24 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_25
+
+:HundredIndividuals_25 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_26
+
+:HundredIndividuals_26 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_27
+
+:HundredIndividuals_27 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_28
+
+:HundredIndividuals_28 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_29
+
+:HundredIndividuals_29 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_3
+
+:HundredIndividuals_3 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_30
+
+:HundredIndividuals_30 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_31
+
+:HundredIndividuals_31 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_32
+
+:HundredIndividuals_32 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_33
+
+:HundredIndividuals_33 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_34
+
+:HundredIndividuals_34 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_35
+
+:HundredIndividuals_35 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_36
+
+:HundredIndividuals_36 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_37
+
+:HundredIndividuals_37 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_38
+
+:HundredIndividuals_38 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_39
+
+:HundredIndividuals_39 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_4
+
+:HundredIndividuals_4 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_40
+
+:HundredIndividuals_40 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_41
+
+:HundredIndividuals_41 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_42
+
+:HundredIndividuals_42 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_43
+
+:HundredIndividuals_43 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_44
+
+:HundredIndividuals_44 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_45
+
+:HundredIndividuals_45 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_46
+
+:HundredIndividuals_46 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_47
+
+:HundredIndividuals_47 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_48
+
+:HundredIndividuals_48 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_49
+
+:HundredIndividuals_49 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_5
+
+:HundredIndividuals_5 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_50
+
+:HundredIndividuals_50 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_51
+
+:HundredIndividuals_51 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_52
+
+:HundredIndividuals_52 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_53
+
+:HundredIndividuals_53 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_54
+
+:HundredIndividuals_54 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_55
+
+:HundredIndividuals_55 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_56
+
+:HundredIndividuals_56 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_57
+
+:HundredIndividuals_57 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_58
+
+:HundredIndividuals_58 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_59
+
+:HundredIndividuals_59 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_6
+
+:HundredIndividuals_6 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_60
+
+:HundredIndividuals_60 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_61
+
+:HundredIndividuals_61 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_62
+
+:HundredIndividuals_62 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_63
+
+:HundredIndividuals_63 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_64
+
+:HundredIndividuals_64 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_65
+
+:HundredIndividuals_65 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_66
+
+:HundredIndividuals_66 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_67
+
+:HundredIndividuals_67 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_68
+
+:HundredIndividuals_68 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_69
+
+:HundredIndividuals_69 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_7
+
+:HundredIndividuals_7 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_70
+
+:HundredIndividuals_70 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_71
+
+:HundredIndividuals_71 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_72
+
+:HundredIndividuals_72 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_73
+
+:HundredIndividuals_73 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_74
+
+:HundredIndividuals_74 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_75
+
+:HundredIndividuals_75 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_76
+
+:HundredIndividuals_76 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_77
+
+:HundredIndividuals_77 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_78
+
+:HundredIndividuals_78 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_79
+
+:HundredIndividuals_79 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_8
+
+:HundredIndividuals_8 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_80
+
+:HundredIndividuals_80 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_81
+
+:HundredIndividuals_81 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_82
+
+:HundredIndividuals_82 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_83
+
+:HundredIndividuals_83 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_84
+
+:HundredIndividuals_84 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_85
+
+:HundredIndividuals_85 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_86
+
+:HundredIndividuals_86 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_87
+
+:HundredIndividuals_87 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_88
+
+:HundredIndividuals_88 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_89
+
+:HundredIndividuals_89 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_9
+
+:HundredIndividuals_9 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_90
+
+:HundredIndividuals_90 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_91
+
+:HundredIndividuals_91 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_92
+
+:HundredIndividuals_92 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_93
+
+:HundredIndividuals_93 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_94
+
+:HundredIndividuals_94 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_95
+
+:HundredIndividuals_95 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_96
+
+:HundredIndividuals_96 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_97
+
+:HundredIndividuals_97 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_98
+
+:HundredIndividuals_98 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/HundredIndividuals_99
+
+:HundredIndividuals_99 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/NamedIndividual
+
+:NamedIndividual rdf:type owl:NamedIndividual ,
+                          :Class40 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/NegativeDataPropertyAssertion_SourceIndividual
+
+:NegativeDataPropertyAssertion_SourceIndividual rdf:type owl:NamedIndividual .
+[ rdf:type owl:NegativePropertyAssertion ;
+  owl:sourceIndividual :NegativeDataPropertyAssertion_SourceIndividual ;
+  owl:assertionProperty :negativeDataPropertyAssertionProperty ;
+  owl:targetValue "NegativeDataPropertyAssertion_TargetValue"^^xsd:string
+] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/NegativeObjectPropertyAssertion_SourceIndividual
+
+:NegativeObjectPropertyAssertion_SourceIndividual rdf:type owl:NamedIndividual .
+[ rdf:type owl:NegativePropertyAssertion ;
+  owl:sourceIndividual :NegativeObjectPropertyAssertion_SourceIndividual ;
+  owl:assertionProperty :negativeObjectPropertyAssertionProperty ;
+  owl:targetIndividual :NegativeObjectPropertyAssertion_TargetIndividual
+] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/NegativeObjectPropertyAssertion_TargetIndividual
+
+:NegativeObjectPropertyAssertion_TargetIndividual rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectHasValue_Individual
+
+:ObjectHasValue_Individual rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectOneOf_EL_Individual
+
+:ObjectOneOf_EL_Individual rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectOneOf_Individual1
+
+:ObjectOneOf_Individual1 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectOneOf_Individual2
+
+:ObjectOneOf_Individual2 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectOneOf_RL_Individual1
+
+:ObjectOneOf_RL_Individual1 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ObjectOneOf_RL_Individual2
+
+:ObjectOneOf_RL_Individual2 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SameAs_Individual1
+
+:SameAs_Individual1 rdf:type owl:NamedIndividual ;
+                    
+                    owl:sameAs :SameAs_Individual2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/SameAs_Individual2
+
+:SameAs_Individual2 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TenIndividuals_1
+
+:TenIndividuals_1 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TenIndividuals_10
+
+:TenIndividuals_10 rdf:type owl:NamedIndividual ,
+                            :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TenIndividuals_2
+
+:TenIndividuals_2 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TenIndividuals_3
+
+:TenIndividuals_3 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TenIndividuals_4
+
+:TenIndividuals_4 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TenIndividuals_5
+
+:TenIndividuals_5 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TenIndividuals_6
+
+:TenIndividuals_6 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TenIndividuals_7
+
+:TenIndividuals_7 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TenIndividuals_8
+
+:TenIndividuals_8 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/TenIndividuals_9
+
+:TenIndividuals_9 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_1
+
+:ThousandIndividuals_1 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_10
+
+:ThousandIndividuals_10 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_100
+
+:ThousandIndividuals_100 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_1000
+
+:ThousandIndividuals_1000 rdf:type owl:NamedIndividual ,
+                                   :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_101
+
+:ThousandIndividuals_101 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_102
+
+:ThousandIndividuals_102 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_103
+
+:ThousandIndividuals_103 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_104
+
+:ThousandIndividuals_104 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_105
+
+:ThousandIndividuals_105 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_106
+
+:ThousandIndividuals_106 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_107
+
+:ThousandIndividuals_107 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_108
+
+:ThousandIndividuals_108 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_109
+
+:ThousandIndividuals_109 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_11
+
+:ThousandIndividuals_11 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_110
+
+:ThousandIndividuals_110 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_111
+
+:ThousandIndividuals_111 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_112
+
+:ThousandIndividuals_112 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_113
+
+:ThousandIndividuals_113 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_114
+
+:ThousandIndividuals_114 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_115
+
+:ThousandIndividuals_115 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_116
+
+:ThousandIndividuals_116 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_117
+
+:ThousandIndividuals_117 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_118
+
+:ThousandIndividuals_118 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_119
+
+:ThousandIndividuals_119 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_12
+
+:ThousandIndividuals_12 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_120
+
+:ThousandIndividuals_120 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_121
+
+:ThousandIndividuals_121 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_122
+
+:ThousandIndividuals_122 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_123
+
+:ThousandIndividuals_123 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_124
+
+:ThousandIndividuals_124 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_125
+
+:ThousandIndividuals_125 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_126
+
+:ThousandIndividuals_126 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_127
+
+:ThousandIndividuals_127 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_128
+
+:ThousandIndividuals_128 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_129
+
+:ThousandIndividuals_129 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_13
+
+:ThousandIndividuals_13 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_130
+
+:ThousandIndividuals_130 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_131
+
+:ThousandIndividuals_131 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_132
+
+:ThousandIndividuals_132 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_133
+
+:ThousandIndividuals_133 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_134
+
+:ThousandIndividuals_134 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_135
+
+:ThousandIndividuals_135 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_136
+
+:ThousandIndividuals_136 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_137
+
+:ThousandIndividuals_137 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_138
+
+:ThousandIndividuals_138 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_139
+
+:ThousandIndividuals_139 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_14
+
+:ThousandIndividuals_14 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_140
+
+:ThousandIndividuals_140 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_141
+
+:ThousandIndividuals_141 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_142
+
+:ThousandIndividuals_142 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_143
+
+:ThousandIndividuals_143 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_144
+
+:ThousandIndividuals_144 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_145
+
+:ThousandIndividuals_145 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_146
+
+:ThousandIndividuals_146 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_147
+
+:ThousandIndividuals_147 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_148
+
+:ThousandIndividuals_148 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_149
+
+:ThousandIndividuals_149 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_15
+
+:ThousandIndividuals_15 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_150
+
+:ThousandIndividuals_150 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_151
+
+:ThousandIndividuals_151 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_152
+
+:ThousandIndividuals_152 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_153
+
+:ThousandIndividuals_153 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_154
+
+:ThousandIndividuals_154 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_155
+
+:ThousandIndividuals_155 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_156
+
+:ThousandIndividuals_156 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_157
+
+:ThousandIndividuals_157 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_158
+
+:ThousandIndividuals_158 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_159
+
+:ThousandIndividuals_159 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_16
+
+:ThousandIndividuals_16 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_160
+
+:ThousandIndividuals_160 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_161
+
+:ThousandIndividuals_161 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_162
+
+:ThousandIndividuals_162 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_163
+
+:ThousandIndividuals_163 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_164
+
+:ThousandIndividuals_164 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_165
+
+:ThousandIndividuals_165 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_166
+
+:ThousandIndividuals_166 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_167
+
+:ThousandIndividuals_167 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_168
+
+:ThousandIndividuals_168 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_169
+
+:ThousandIndividuals_169 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_17
+
+:ThousandIndividuals_17 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_170
+
+:ThousandIndividuals_170 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_171
+
+:ThousandIndividuals_171 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_172
+
+:ThousandIndividuals_172 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_173
+
+:ThousandIndividuals_173 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_174
+
+:ThousandIndividuals_174 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_175
+
+:ThousandIndividuals_175 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_176
+
+:ThousandIndividuals_176 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_177
+
+:ThousandIndividuals_177 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_178
+
+:ThousandIndividuals_178 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_179
+
+:ThousandIndividuals_179 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_18
+
+:ThousandIndividuals_18 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_180
+
+:ThousandIndividuals_180 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_181
+
+:ThousandIndividuals_181 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_182
+
+:ThousandIndividuals_182 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_183
+
+:ThousandIndividuals_183 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_184
+
+:ThousandIndividuals_184 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_185
+
+:ThousandIndividuals_185 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_186
+
+:ThousandIndividuals_186 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_187
+
+:ThousandIndividuals_187 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_188
+
+:ThousandIndividuals_188 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_189
+
+:ThousandIndividuals_189 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_19
+
+:ThousandIndividuals_19 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_190
+
+:ThousandIndividuals_190 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_191
+
+:ThousandIndividuals_191 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_192
+
+:ThousandIndividuals_192 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_193
+
+:ThousandIndividuals_193 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_194
+
+:ThousandIndividuals_194 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_195
+
+:ThousandIndividuals_195 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_196
+
+:ThousandIndividuals_196 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_197
+
+:ThousandIndividuals_197 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_198
+
+:ThousandIndividuals_198 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_199
+
+:ThousandIndividuals_199 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_2
+
+:ThousandIndividuals_2 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_20
+
+:ThousandIndividuals_20 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_200
+
+:ThousandIndividuals_200 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_201
+
+:ThousandIndividuals_201 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_202
+
+:ThousandIndividuals_202 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_203
+
+:ThousandIndividuals_203 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_204
+
+:ThousandIndividuals_204 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_205
+
+:ThousandIndividuals_205 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_206
+
+:ThousandIndividuals_206 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_207
+
+:ThousandIndividuals_207 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_208
+
+:ThousandIndividuals_208 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_209
+
+:ThousandIndividuals_209 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_21
+
+:ThousandIndividuals_21 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_210
+
+:ThousandIndividuals_210 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_211
+
+:ThousandIndividuals_211 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_212
+
+:ThousandIndividuals_212 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_213
+
+:ThousandIndividuals_213 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_214
+
+:ThousandIndividuals_214 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_215
+
+:ThousandIndividuals_215 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_216
+
+:ThousandIndividuals_216 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_217
+
+:ThousandIndividuals_217 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_218
+
+:ThousandIndividuals_218 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_219
+
+:ThousandIndividuals_219 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_22
+
+:ThousandIndividuals_22 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_220
+
+:ThousandIndividuals_220 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_221
+
+:ThousandIndividuals_221 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_222
+
+:ThousandIndividuals_222 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_223
+
+:ThousandIndividuals_223 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_224
+
+:ThousandIndividuals_224 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_225
+
+:ThousandIndividuals_225 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_226
+
+:ThousandIndividuals_226 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_227
+
+:ThousandIndividuals_227 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_228
+
+:ThousandIndividuals_228 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_229
+
+:ThousandIndividuals_229 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_23
+
+:ThousandIndividuals_23 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_230
+
+:ThousandIndividuals_230 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_231
+
+:ThousandIndividuals_231 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_232
+
+:ThousandIndividuals_232 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_233
+
+:ThousandIndividuals_233 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_234
+
+:ThousandIndividuals_234 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_235
+
+:ThousandIndividuals_235 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_236
+
+:ThousandIndividuals_236 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_237
+
+:ThousandIndividuals_237 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_238
+
+:ThousandIndividuals_238 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_239
+
+:ThousandIndividuals_239 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_24
+
+:ThousandIndividuals_24 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_240
+
+:ThousandIndividuals_240 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_241
+
+:ThousandIndividuals_241 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_242
+
+:ThousandIndividuals_242 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_243
+
+:ThousandIndividuals_243 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_244
+
+:ThousandIndividuals_244 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_245
+
+:ThousandIndividuals_245 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_246
+
+:ThousandIndividuals_246 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_247
+
+:ThousandIndividuals_247 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_248
+
+:ThousandIndividuals_248 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_249
+
+:ThousandIndividuals_249 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_25
+
+:ThousandIndividuals_25 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_250
+
+:ThousandIndividuals_250 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_251
+
+:ThousandIndividuals_251 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_252
+
+:ThousandIndividuals_252 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_253
+
+:ThousandIndividuals_253 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_254
+
+:ThousandIndividuals_254 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_255
+
+:ThousandIndividuals_255 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_256
+
+:ThousandIndividuals_256 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_257
+
+:ThousandIndividuals_257 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_258
+
+:ThousandIndividuals_258 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_259
+
+:ThousandIndividuals_259 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_26
+
+:ThousandIndividuals_26 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_260
+
+:ThousandIndividuals_260 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_261
+
+:ThousandIndividuals_261 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_262
+
+:ThousandIndividuals_262 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_263
+
+:ThousandIndividuals_263 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_264
+
+:ThousandIndividuals_264 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_265
+
+:ThousandIndividuals_265 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_266
+
+:ThousandIndividuals_266 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_267
+
+:ThousandIndividuals_267 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_268
+
+:ThousandIndividuals_268 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_269
+
+:ThousandIndividuals_269 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_27
+
+:ThousandIndividuals_27 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_270
+
+:ThousandIndividuals_270 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_271
+
+:ThousandIndividuals_271 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_272
+
+:ThousandIndividuals_272 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_273
+
+:ThousandIndividuals_273 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_274
+
+:ThousandIndividuals_274 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_275
+
+:ThousandIndividuals_275 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_276
+
+:ThousandIndividuals_276 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_277
+
+:ThousandIndividuals_277 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_278
+
+:ThousandIndividuals_278 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_279
+
+:ThousandIndividuals_279 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_28
+
+:ThousandIndividuals_28 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_280
+
+:ThousandIndividuals_280 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_281
+
+:ThousandIndividuals_281 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_282
+
+:ThousandIndividuals_282 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_283
+
+:ThousandIndividuals_283 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_284
+
+:ThousandIndividuals_284 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_285
+
+:ThousandIndividuals_285 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_286
+
+:ThousandIndividuals_286 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_287
+
+:ThousandIndividuals_287 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_288
+
+:ThousandIndividuals_288 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_289
+
+:ThousandIndividuals_289 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_29
+
+:ThousandIndividuals_29 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_290
+
+:ThousandIndividuals_290 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_291
+
+:ThousandIndividuals_291 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_292
+
+:ThousandIndividuals_292 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_293
+
+:ThousandIndividuals_293 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_294
+
+:ThousandIndividuals_294 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_295
+
+:ThousandIndividuals_295 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_296
+
+:ThousandIndividuals_296 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_297
+
+:ThousandIndividuals_297 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_298
+
+:ThousandIndividuals_298 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_299
+
+:ThousandIndividuals_299 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_3
+
+:ThousandIndividuals_3 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_30
+
+:ThousandIndividuals_30 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_300
+
+:ThousandIndividuals_300 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_301
+
+:ThousandIndividuals_301 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_302
+
+:ThousandIndividuals_302 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_303
+
+:ThousandIndividuals_303 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_304
+
+:ThousandIndividuals_304 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_305
+
+:ThousandIndividuals_305 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_306
+
+:ThousandIndividuals_306 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_307
+
+:ThousandIndividuals_307 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_308
+
+:ThousandIndividuals_308 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_309
+
+:ThousandIndividuals_309 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_31
+
+:ThousandIndividuals_31 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_310
+
+:ThousandIndividuals_310 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_311
+
+:ThousandIndividuals_311 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_312
+
+:ThousandIndividuals_312 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_313
+
+:ThousandIndividuals_313 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_314
+
+:ThousandIndividuals_314 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_315
+
+:ThousandIndividuals_315 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_316
+
+:ThousandIndividuals_316 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_317
+
+:ThousandIndividuals_317 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_318
+
+:ThousandIndividuals_318 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_319
+
+:ThousandIndividuals_319 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_32
+
+:ThousandIndividuals_32 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_320
+
+:ThousandIndividuals_320 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_321
+
+:ThousandIndividuals_321 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_322
+
+:ThousandIndividuals_322 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_323
+
+:ThousandIndividuals_323 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_324
+
+:ThousandIndividuals_324 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_325
+
+:ThousandIndividuals_325 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_326
+
+:ThousandIndividuals_326 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_327
+
+:ThousandIndividuals_327 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_328
+
+:ThousandIndividuals_328 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_329
+
+:ThousandIndividuals_329 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_33
+
+:ThousandIndividuals_33 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_330
+
+:ThousandIndividuals_330 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_331
+
+:ThousandIndividuals_331 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_332
+
+:ThousandIndividuals_332 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_333
+
+:ThousandIndividuals_333 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_334
+
+:ThousandIndividuals_334 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_335
+
+:ThousandIndividuals_335 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_336
+
+:ThousandIndividuals_336 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_337
+
+:ThousandIndividuals_337 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_338
+
+:ThousandIndividuals_338 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_339
+
+:ThousandIndividuals_339 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_34
+
+:ThousandIndividuals_34 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_340
+
+:ThousandIndividuals_340 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_341
+
+:ThousandIndividuals_341 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_342
+
+:ThousandIndividuals_342 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_343
+
+:ThousandIndividuals_343 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_344
+
+:ThousandIndividuals_344 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_345
+
+:ThousandIndividuals_345 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_346
+
+:ThousandIndividuals_346 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_347
+
+:ThousandIndividuals_347 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_348
+
+:ThousandIndividuals_348 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_349
+
+:ThousandIndividuals_349 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_35
+
+:ThousandIndividuals_35 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_350
+
+:ThousandIndividuals_350 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_351
+
+:ThousandIndividuals_351 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_352
+
+:ThousandIndividuals_352 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_353
+
+:ThousandIndividuals_353 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_354
+
+:ThousandIndividuals_354 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_355
+
+:ThousandIndividuals_355 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_356
+
+:ThousandIndividuals_356 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_357
+
+:ThousandIndividuals_357 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_358
+
+:ThousandIndividuals_358 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_359
+
+:ThousandIndividuals_359 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_36
+
+:ThousandIndividuals_36 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_360
+
+:ThousandIndividuals_360 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_361
+
+:ThousandIndividuals_361 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_362
+
+:ThousandIndividuals_362 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_363
+
+:ThousandIndividuals_363 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_364
+
+:ThousandIndividuals_364 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_365
+
+:ThousandIndividuals_365 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_366
+
+:ThousandIndividuals_366 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_367
+
+:ThousandIndividuals_367 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_368
+
+:ThousandIndividuals_368 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_369
+
+:ThousandIndividuals_369 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_37
+
+:ThousandIndividuals_37 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_370
+
+:ThousandIndividuals_370 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_371
+
+:ThousandIndividuals_371 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_372
+
+:ThousandIndividuals_372 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_373
+
+:ThousandIndividuals_373 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_374
+
+:ThousandIndividuals_374 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_375
+
+:ThousandIndividuals_375 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_376
+
+:ThousandIndividuals_376 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_377
+
+:ThousandIndividuals_377 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_378
+
+:ThousandIndividuals_378 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_379
+
+:ThousandIndividuals_379 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_38
+
+:ThousandIndividuals_38 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_380
+
+:ThousandIndividuals_380 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_381
+
+:ThousandIndividuals_381 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_382
+
+:ThousandIndividuals_382 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_383
+
+:ThousandIndividuals_383 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_384
+
+:ThousandIndividuals_384 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_385
+
+:ThousandIndividuals_385 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_386
+
+:ThousandIndividuals_386 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_387
+
+:ThousandIndividuals_387 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_388
+
+:ThousandIndividuals_388 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_389
+
+:ThousandIndividuals_389 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_39
+
+:ThousandIndividuals_39 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_390
+
+:ThousandIndividuals_390 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_391
+
+:ThousandIndividuals_391 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_392
+
+:ThousandIndividuals_392 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_393
+
+:ThousandIndividuals_393 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_394
+
+:ThousandIndividuals_394 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_395
+
+:ThousandIndividuals_395 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_396
+
+:ThousandIndividuals_396 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_397
+
+:ThousandIndividuals_397 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_398
+
+:ThousandIndividuals_398 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_399
+
+:ThousandIndividuals_399 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_4
+
+:ThousandIndividuals_4 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_40
+
+:ThousandIndividuals_40 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_400
+
+:ThousandIndividuals_400 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_401
+
+:ThousandIndividuals_401 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_402
+
+:ThousandIndividuals_402 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_403
+
+:ThousandIndividuals_403 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_404
+
+:ThousandIndividuals_404 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_405
+
+:ThousandIndividuals_405 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_406
+
+:ThousandIndividuals_406 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_407
+
+:ThousandIndividuals_407 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_408
+
+:ThousandIndividuals_408 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_409
+
+:ThousandIndividuals_409 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_41
+
+:ThousandIndividuals_41 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_410
+
+:ThousandIndividuals_410 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_411
+
+:ThousandIndividuals_411 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_412
+
+:ThousandIndividuals_412 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_413
+
+:ThousandIndividuals_413 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_414
+
+:ThousandIndividuals_414 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_415
+
+:ThousandIndividuals_415 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_416
+
+:ThousandIndividuals_416 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_417
+
+:ThousandIndividuals_417 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_418
+
+:ThousandIndividuals_418 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_419
+
+:ThousandIndividuals_419 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_42
+
+:ThousandIndividuals_42 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_420
+
+:ThousandIndividuals_420 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_421
+
+:ThousandIndividuals_421 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_422
+
+:ThousandIndividuals_422 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_423
+
+:ThousandIndividuals_423 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_424
+
+:ThousandIndividuals_424 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_425
+
+:ThousandIndividuals_425 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_426
+
+:ThousandIndividuals_426 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_427
+
+:ThousandIndividuals_427 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_428
+
+:ThousandIndividuals_428 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_429
+
+:ThousandIndividuals_429 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_43
+
+:ThousandIndividuals_43 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_430
+
+:ThousandIndividuals_430 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_431
+
+:ThousandIndividuals_431 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_432
+
+:ThousandIndividuals_432 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_433
+
+:ThousandIndividuals_433 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_434
+
+:ThousandIndividuals_434 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_435
+
+:ThousandIndividuals_435 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_436
+
+:ThousandIndividuals_436 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_437
+
+:ThousandIndividuals_437 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_438
+
+:ThousandIndividuals_438 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_439
+
+:ThousandIndividuals_439 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_44
+
+:ThousandIndividuals_44 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_440
+
+:ThousandIndividuals_440 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_441
+
+:ThousandIndividuals_441 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_442
+
+:ThousandIndividuals_442 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_443
+
+:ThousandIndividuals_443 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_444
+
+:ThousandIndividuals_444 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_445
+
+:ThousandIndividuals_445 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_446
+
+:ThousandIndividuals_446 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_447
+
+:ThousandIndividuals_447 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_448
+
+:ThousandIndividuals_448 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_449
+
+:ThousandIndividuals_449 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_45
+
+:ThousandIndividuals_45 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_450
+
+:ThousandIndividuals_450 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_451
+
+:ThousandIndividuals_451 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_452
+
+:ThousandIndividuals_452 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_453
+
+:ThousandIndividuals_453 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_454
+
+:ThousandIndividuals_454 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_455
+
+:ThousandIndividuals_455 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_456
+
+:ThousandIndividuals_456 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_457
+
+:ThousandIndividuals_457 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_458
+
+:ThousandIndividuals_458 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_459
+
+:ThousandIndividuals_459 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_46
+
+:ThousandIndividuals_46 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_460
+
+:ThousandIndividuals_460 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_461
+
+:ThousandIndividuals_461 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_462
+
+:ThousandIndividuals_462 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_463
+
+:ThousandIndividuals_463 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_464
+
+:ThousandIndividuals_464 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_465
+
+:ThousandIndividuals_465 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_466
+
+:ThousandIndividuals_466 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_467
+
+:ThousandIndividuals_467 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_468
+
+:ThousandIndividuals_468 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_469
+
+:ThousandIndividuals_469 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_47
+
+:ThousandIndividuals_47 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_470
+
+:ThousandIndividuals_470 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_471
+
+:ThousandIndividuals_471 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_472
+
+:ThousandIndividuals_472 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_473
+
+:ThousandIndividuals_473 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_474
+
+:ThousandIndividuals_474 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_475
+
+:ThousandIndividuals_475 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_476
+
+:ThousandIndividuals_476 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_477
+
+:ThousandIndividuals_477 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_478
+
+:ThousandIndividuals_478 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_479
+
+:ThousandIndividuals_479 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_48
+
+:ThousandIndividuals_48 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_480
+
+:ThousandIndividuals_480 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_481
+
+:ThousandIndividuals_481 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_482
+
+:ThousandIndividuals_482 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_483
+
+:ThousandIndividuals_483 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_484
+
+:ThousandIndividuals_484 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_485
+
+:ThousandIndividuals_485 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_486
+
+:ThousandIndividuals_486 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_487
+
+:ThousandIndividuals_487 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_488
+
+:ThousandIndividuals_488 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_489
+
+:ThousandIndividuals_489 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_49
+
+:ThousandIndividuals_49 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_490
+
+:ThousandIndividuals_490 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_491
+
+:ThousandIndividuals_491 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_492
+
+:ThousandIndividuals_492 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_493
+
+:ThousandIndividuals_493 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_494
+
+:ThousandIndividuals_494 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_495
+
+:ThousandIndividuals_495 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_496
+
+:ThousandIndividuals_496 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_497
+
+:ThousandIndividuals_497 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_498
+
+:ThousandIndividuals_498 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_499
+
+:ThousandIndividuals_499 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_5
+
+:ThousandIndividuals_5 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_50
+
+:ThousandIndividuals_50 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_500
+
+:ThousandIndividuals_500 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_501
+
+:ThousandIndividuals_501 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_502
+
+:ThousandIndividuals_502 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_503
+
+:ThousandIndividuals_503 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_504
+
+:ThousandIndividuals_504 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_505
+
+:ThousandIndividuals_505 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_506
+
+:ThousandIndividuals_506 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_507
+
+:ThousandIndividuals_507 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_508
+
+:ThousandIndividuals_508 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_509
+
+:ThousandIndividuals_509 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_51
+
+:ThousandIndividuals_51 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_510
+
+:ThousandIndividuals_510 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_511
+
+:ThousandIndividuals_511 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_512
+
+:ThousandIndividuals_512 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_513
+
+:ThousandIndividuals_513 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_514
+
+:ThousandIndividuals_514 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_515
+
+:ThousandIndividuals_515 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_516
+
+:ThousandIndividuals_516 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_517
+
+:ThousandIndividuals_517 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_518
+
+:ThousandIndividuals_518 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_519
+
+:ThousandIndividuals_519 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_52
+
+:ThousandIndividuals_52 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_520
+
+:ThousandIndividuals_520 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_521
+
+:ThousandIndividuals_521 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_522
+
+:ThousandIndividuals_522 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_523
+
+:ThousandIndividuals_523 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_524
+
+:ThousandIndividuals_524 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_525
+
+:ThousandIndividuals_525 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_526
+
+:ThousandIndividuals_526 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_527
+
+:ThousandIndividuals_527 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_528
+
+:ThousandIndividuals_528 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_529
+
+:ThousandIndividuals_529 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_53
+
+:ThousandIndividuals_53 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_530
+
+:ThousandIndividuals_530 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_531
+
+:ThousandIndividuals_531 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_532
+
+:ThousandIndividuals_532 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_533
+
+:ThousandIndividuals_533 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_534
+
+:ThousandIndividuals_534 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_535
+
+:ThousandIndividuals_535 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_536
+
+:ThousandIndividuals_536 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_537
+
+:ThousandIndividuals_537 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_538
+
+:ThousandIndividuals_538 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_539
+
+:ThousandIndividuals_539 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_54
+
+:ThousandIndividuals_54 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_540
+
+:ThousandIndividuals_540 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_541
+
+:ThousandIndividuals_541 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_542
+
+:ThousandIndividuals_542 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_543
+
+:ThousandIndividuals_543 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_544
+
+:ThousandIndividuals_544 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_545
+
+:ThousandIndividuals_545 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_546
+
+:ThousandIndividuals_546 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_547
+
+:ThousandIndividuals_547 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_548
+
+:ThousandIndividuals_548 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_549
+
+:ThousandIndividuals_549 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_55
+
+:ThousandIndividuals_55 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_550
+
+:ThousandIndividuals_550 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_551
+
+:ThousandIndividuals_551 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_552
+
+:ThousandIndividuals_552 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_553
+
+:ThousandIndividuals_553 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_554
+
+:ThousandIndividuals_554 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_555
+
+:ThousandIndividuals_555 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_556
+
+:ThousandIndividuals_556 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_557
+
+:ThousandIndividuals_557 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_558
+
+:ThousandIndividuals_558 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_559
+
+:ThousandIndividuals_559 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_56
+
+:ThousandIndividuals_56 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_560
+
+:ThousandIndividuals_560 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_561
+
+:ThousandIndividuals_561 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_562
+
+:ThousandIndividuals_562 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_563
+
+:ThousandIndividuals_563 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_564
+
+:ThousandIndividuals_564 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_565
+
+:ThousandIndividuals_565 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_566
+
+:ThousandIndividuals_566 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_567
+
+:ThousandIndividuals_567 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_568
+
+:ThousandIndividuals_568 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_569
+
+:ThousandIndividuals_569 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_57
+
+:ThousandIndividuals_57 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_570
+
+:ThousandIndividuals_570 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_571
+
+:ThousandIndividuals_571 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_572
+
+:ThousandIndividuals_572 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_573
+
+:ThousandIndividuals_573 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_574
+
+:ThousandIndividuals_574 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_575
+
+:ThousandIndividuals_575 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_576
+
+:ThousandIndividuals_576 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_577
+
+:ThousandIndividuals_577 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_578
+
+:ThousandIndividuals_578 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_579
+
+:ThousandIndividuals_579 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_58
+
+:ThousandIndividuals_58 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_580
+
+:ThousandIndividuals_580 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_581
+
+:ThousandIndividuals_581 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_582
+
+:ThousandIndividuals_582 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_583
+
+:ThousandIndividuals_583 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_584
+
+:ThousandIndividuals_584 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_585
+
+:ThousandIndividuals_585 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_586
+
+:ThousandIndividuals_586 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_587
+
+:ThousandIndividuals_587 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_588
+
+:ThousandIndividuals_588 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_589
+
+:ThousandIndividuals_589 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_59
+
+:ThousandIndividuals_59 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_590
+
+:ThousandIndividuals_590 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_591
+
+:ThousandIndividuals_591 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_592
+
+:ThousandIndividuals_592 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_593
+
+:ThousandIndividuals_593 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_594
+
+:ThousandIndividuals_594 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_595
+
+:ThousandIndividuals_595 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_596
+
+:ThousandIndividuals_596 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_597
+
+:ThousandIndividuals_597 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_598
+
+:ThousandIndividuals_598 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_599
+
+:ThousandIndividuals_599 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_6
+
+:ThousandIndividuals_6 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_60
+
+:ThousandIndividuals_60 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_600
+
+:ThousandIndividuals_600 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_601
+
+:ThousandIndividuals_601 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_602
+
+:ThousandIndividuals_602 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_603
+
+:ThousandIndividuals_603 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_604
+
+:ThousandIndividuals_604 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_605
+
+:ThousandIndividuals_605 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_606
+
+:ThousandIndividuals_606 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_607
+
+:ThousandIndividuals_607 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_608
+
+:ThousandIndividuals_608 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_609
+
+:ThousandIndividuals_609 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_61
+
+:ThousandIndividuals_61 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_610
+
+:ThousandIndividuals_610 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_611
+
+:ThousandIndividuals_611 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_612
+
+:ThousandIndividuals_612 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_613
+
+:ThousandIndividuals_613 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_614
+
+:ThousandIndividuals_614 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_615
+
+:ThousandIndividuals_615 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_616
+
+:ThousandIndividuals_616 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_617
+
+:ThousandIndividuals_617 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_618
+
+:ThousandIndividuals_618 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_619
+
+:ThousandIndividuals_619 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_62
+
+:ThousandIndividuals_62 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_620
+
+:ThousandIndividuals_620 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_621
+
+:ThousandIndividuals_621 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_622
+
+:ThousandIndividuals_622 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_623
+
+:ThousandIndividuals_623 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_624
+
+:ThousandIndividuals_624 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_625
+
+:ThousandIndividuals_625 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_626
+
+:ThousandIndividuals_626 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_627
+
+:ThousandIndividuals_627 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_628
+
+:ThousandIndividuals_628 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_629
+
+:ThousandIndividuals_629 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_63
+
+:ThousandIndividuals_63 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_630
+
+:ThousandIndividuals_630 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_631
+
+:ThousandIndividuals_631 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_632
+
+:ThousandIndividuals_632 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_633
+
+:ThousandIndividuals_633 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_634
+
+:ThousandIndividuals_634 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_635
+
+:ThousandIndividuals_635 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_636
+
+:ThousandIndividuals_636 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_637
+
+:ThousandIndividuals_637 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_638
+
+:ThousandIndividuals_638 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_639
+
+:ThousandIndividuals_639 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_64
+
+:ThousandIndividuals_64 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_640
+
+:ThousandIndividuals_640 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_641
+
+:ThousandIndividuals_641 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_642
+
+:ThousandIndividuals_642 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_643
+
+:ThousandIndividuals_643 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_644
+
+:ThousandIndividuals_644 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_645
+
+:ThousandIndividuals_645 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_646
+
+:ThousandIndividuals_646 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_647
+
+:ThousandIndividuals_647 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_648
+
+:ThousandIndividuals_648 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_649
+
+:ThousandIndividuals_649 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_65
+
+:ThousandIndividuals_65 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_650
+
+:ThousandIndividuals_650 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_651
+
+:ThousandIndividuals_651 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_652
+
+:ThousandIndividuals_652 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_653
+
+:ThousandIndividuals_653 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_654
+
+:ThousandIndividuals_654 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_655
+
+:ThousandIndividuals_655 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_656
+
+:ThousandIndividuals_656 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_657
+
+:ThousandIndividuals_657 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_658
+
+:ThousandIndividuals_658 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_659
+
+:ThousandIndividuals_659 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_66
+
+:ThousandIndividuals_66 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_660
+
+:ThousandIndividuals_660 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_661
+
+:ThousandIndividuals_661 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_662
+
+:ThousandIndividuals_662 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_663
+
+:ThousandIndividuals_663 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_664
+
+:ThousandIndividuals_664 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_665
+
+:ThousandIndividuals_665 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_666
+
+:ThousandIndividuals_666 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_667
+
+:ThousandIndividuals_667 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_668
+
+:ThousandIndividuals_668 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_669
+
+:ThousandIndividuals_669 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_67
+
+:ThousandIndividuals_67 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_670
+
+:ThousandIndividuals_670 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_671
+
+:ThousandIndividuals_671 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_672
+
+:ThousandIndividuals_672 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_673
+
+:ThousandIndividuals_673 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_674
+
+:ThousandIndividuals_674 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_675
+
+:ThousandIndividuals_675 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_676
+
+:ThousandIndividuals_676 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_677
+
+:ThousandIndividuals_677 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_678
+
+:ThousandIndividuals_678 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_679
+
+:ThousandIndividuals_679 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_68
+
+:ThousandIndividuals_68 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_680
+
+:ThousandIndividuals_680 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_681
+
+:ThousandIndividuals_681 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_682
+
+:ThousandIndividuals_682 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_683
+
+:ThousandIndividuals_683 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_684
+
+:ThousandIndividuals_684 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_685
+
+:ThousandIndividuals_685 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_686
+
+:ThousandIndividuals_686 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_687
+
+:ThousandIndividuals_687 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_688
+
+:ThousandIndividuals_688 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_689
+
+:ThousandIndividuals_689 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_69
+
+:ThousandIndividuals_69 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_690
+
+:ThousandIndividuals_690 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_691
+
+:ThousandIndividuals_691 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_692
+
+:ThousandIndividuals_692 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_693
+
+:ThousandIndividuals_693 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_694
+
+:ThousandIndividuals_694 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_695
+
+:ThousandIndividuals_695 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_696
+
+:ThousandIndividuals_696 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_697
+
+:ThousandIndividuals_697 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_698
+
+:ThousandIndividuals_698 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_699
+
+:ThousandIndividuals_699 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_7
+
+:ThousandIndividuals_7 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_70
+
+:ThousandIndividuals_70 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_700
+
+:ThousandIndividuals_700 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_701
+
+:ThousandIndividuals_701 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_702
+
+:ThousandIndividuals_702 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_703
+
+:ThousandIndividuals_703 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_704
+
+:ThousandIndividuals_704 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_705
+
+:ThousandIndividuals_705 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_706
+
+:ThousandIndividuals_706 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_707
+
+:ThousandIndividuals_707 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_708
+
+:ThousandIndividuals_708 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_709
+
+:ThousandIndividuals_709 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_71
+
+:ThousandIndividuals_71 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_710
+
+:ThousandIndividuals_710 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_711
+
+:ThousandIndividuals_711 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_712
+
+:ThousandIndividuals_712 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_713
+
+:ThousandIndividuals_713 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_714
+
+:ThousandIndividuals_714 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_715
+
+:ThousandIndividuals_715 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_716
+
+:ThousandIndividuals_716 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_717
+
+:ThousandIndividuals_717 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_718
+
+:ThousandIndividuals_718 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_719
+
+:ThousandIndividuals_719 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_72
+
+:ThousandIndividuals_72 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_720
+
+:ThousandIndividuals_720 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_721
+
+:ThousandIndividuals_721 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_722
+
+:ThousandIndividuals_722 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_723
+
+:ThousandIndividuals_723 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_724
+
+:ThousandIndividuals_724 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_725
+
+:ThousandIndividuals_725 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_726
+
+:ThousandIndividuals_726 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_727
+
+:ThousandIndividuals_727 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_728
+
+:ThousandIndividuals_728 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_729
+
+:ThousandIndividuals_729 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_73
+
+:ThousandIndividuals_73 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_730
+
+:ThousandIndividuals_730 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_731
+
+:ThousandIndividuals_731 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_732
+
+:ThousandIndividuals_732 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_733
+
+:ThousandIndividuals_733 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_734
+
+:ThousandIndividuals_734 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_735
+
+:ThousandIndividuals_735 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_736
+
+:ThousandIndividuals_736 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_737
+
+:ThousandIndividuals_737 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_738
+
+:ThousandIndividuals_738 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_739
+
+:ThousandIndividuals_739 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_74
+
+:ThousandIndividuals_74 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_740
+
+:ThousandIndividuals_740 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_741
+
+:ThousandIndividuals_741 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_742
+
+:ThousandIndividuals_742 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_743
+
+:ThousandIndividuals_743 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_744
+
+:ThousandIndividuals_744 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_745
+
+:ThousandIndividuals_745 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_746
+
+:ThousandIndividuals_746 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_747
+
+:ThousandIndividuals_747 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_748
+
+:ThousandIndividuals_748 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_749
+
+:ThousandIndividuals_749 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_75
+
+:ThousandIndividuals_75 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_750
+
+:ThousandIndividuals_750 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_751
+
+:ThousandIndividuals_751 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_752
+
+:ThousandIndividuals_752 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_753
+
+:ThousandIndividuals_753 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_754
+
+:ThousandIndividuals_754 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_755
+
+:ThousandIndividuals_755 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_756
+
+:ThousandIndividuals_756 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_757
+
+:ThousandIndividuals_757 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_758
+
+:ThousandIndividuals_758 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_759
+
+:ThousandIndividuals_759 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_76
+
+:ThousandIndividuals_76 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_760
+
+:ThousandIndividuals_760 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_761
+
+:ThousandIndividuals_761 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_762
+
+:ThousandIndividuals_762 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_763
+
+:ThousandIndividuals_763 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_764
+
+:ThousandIndividuals_764 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_765
+
+:ThousandIndividuals_765 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_766
+
+:ThousandIndividuals_766 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_767
+
+:ThousandIndividuals_767 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_768
+
+:ThousandIndividuals_768 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_769
+
+:ThousandIndividuals_769 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_77
+
+:ThousandIndividuals_77 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_770
+
+:ThousandIndividuals_770 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_771
+
+:ThousandIndividuals_771 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_772
+
+:ThousandIndividuals_772 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_773
+
+:ThousandIndividuals_773 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_774
+
+:ThousandIndividuals_774 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_775
+
+:ThousandIndividuals_775 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_776
+
+:ThousandIndividuals_776 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_777
+
+:ThousandIndividuals_777 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_778
+
+:ThousandIndividuals_778 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_779
+
+:ThousandIndividuals_779 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_78
+
+:ThousandIndividuals_78 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_780
+
+:ThousandIndividuals_780 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_781
+
+:ThousandIndividuals_781 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_782
+
+:ThousandIndividuals_782 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_783
+
+:ThousandIndividuals_783 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_784
+
+:ThousandIndividuals_784 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_785
+
+:ThousandIndividuals_785 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_786
+
+:ThousandIndividuals_786 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_787
+
+:ThousandIndividuals_787 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_788
+
+:ThousandIndividuals_788 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_789
+
+:ThousandIndividuals_789 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_79
+
+:ThousandIndividuals_79 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_790
+
+:ThousandIndividuals_790 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_791
+
+:ThousandIndividuals_791 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_792
+
+:ThousandIndividuals_792 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_793
+
+:ThousandIndividuals_793 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_794
+
+:ThousandIndividuals_794 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_795
+
+:ThousandIndividuals_795 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_796
+
+:ThousandIndividuals_796 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_797
+
+:ThousandIndividuals_797 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_798
+
+:ThousandIndividuals_798 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_799
+
+:ThousandIndividuals_799 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_8
+
+:ThousandIndividuals_8 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_80
+
+:ThousandIndividuals_80 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_800
+
+:ThousandIndividuals_800 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_801
+
+:ThousandIndividuals_801 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_802
+
+:ThousandIndividuals_802 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_803
+
+:ThousandIndividuals_803 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_804
+
+:ThousandIndividuals_804 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_805
+
+:ThousandIndividuals_805 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_806
+
+:ThousandIndividuals_806 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_807
+
+:ThousandIndividuals_807 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_808
+
+:ThousandIndividuals_808 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_809
+
+:ThousandIndividuals_809 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_81
+
+:ThousandIndividuals_81 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_810
+
+:ThousandIndividuals_810 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_811
+
+:ThousandIndividuals_811 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_812
+
+:ThousandIndividuals_812 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_813
+
+:ThousandIndividuals_813 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_814
+
+:ThousandIndividuals_814 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_815
+
+:ThousandIndividuals_815 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_816
+
+:ThousandIndividuals_816 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_817
+
+:ThousandIndividuals_817 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_818
+
+:ThousandIndividuals_818 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_819
+
+:ThousandIndividuals_819 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_82
+
+:ThousandIndividuals_82 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_820
+
+:ThousandIndividuals_820 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_821
+
+:ThousandIndividuals_821 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_822
+
+:ThousandIndividuals_822 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_823
+
+:ThousandIndividuals_823 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_824
+
+:ThousandIndividuals_824 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_825
+
+:ThousandIndividuals_825 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_826
+
+:ThousandIndividuals_826 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_827
+
+:ThousandIndividuals_827 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_828
+
+:ThousandIndividuals_828 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_829
+
+:ThousandIndividuals_829 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_83
+
+:ThousandIndividuals_83 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_830
+
+:ThousandIndividuals_830 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_831
+
+:ThousandIndividuals_831 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_832
+
+:ThousandIndividuals_832 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_833
+
+:ThousandIndividuals_833 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_834
+
+:ThousandIndividuals_834 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_835
+
+:ThousandIndividuals_835 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_836
+
+:ThousandIndividuals_836 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_837
+
+:ThousandIndividuals_837 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_838
+
+:ThousandIndividuals_838 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_839
+
+:ThousandIndividuals_839 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_84
+
+:ThousandIndividuals_84 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_840
+
+:ThousandIndividuals_840 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_841
+
+:ThousandIndividuals_841 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_842
+
+:ThousandIndividuals_842 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_843
+
+:ThousandIndividuals_843 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_844
+
+:ThousandIndividuals_844 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_845
+
+:ThousandIndividuals_845 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_846
+
+:ThousandIndividuals_846 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_847
+
+:ThousandIndividuals_847 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_848
+
+:ThousandIndividuals_848 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_849
+
+:ThousandIndividuals_849 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_85
+
+:ThousandIndividuals_85 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_850
+
+:ThousandIndividuals_850 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_851
+
+:ThousandIndividuals_851 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_852
+
+:ThousandIndividuals_852 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_853
+
+:ThousandIndividuals_853 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_854
+
+:ThousandIndividuals_854 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_855
+
+:ThousandIndividuals_855 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_856
+
+:ThousandIndividuals_856 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_857
+
+:ThousandIndividuals_857 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_858
+
+:ThousandIndividuals_858 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_859
+
+:ThousandIndividuals_859 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_86
+
+:ThousandIndividuals_86 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_860
+
+:ThousandIndividuals_860 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_861
+
+:ThousandIndividuals_861 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_862
+
+:ThousandIndividuals_862 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_863
+
+:ThousandIndividuals_863 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_864
+
+:ThousandIndividuals_864 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_865
+
+:ThousandIndividuals_865 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_866
+
+:ThousandIndividuals_866 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_867
+
+:ThousandIndividuals_867 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_868
+
+:ThousandIndividuals_868 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_869
+
+:ThousandIndividuals_869 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_87
+
+:ThousandIndividuals_87 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_870
+
+:ThousandIndividuals_870 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_871
+
+:ThousandIndividuals_871 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_872
+
+:ThousandIndividuals_872 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_873
+
+:ThousandIndividuals_873 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_874
+
+:ThousandIndividuals_874 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_875
+
+:ThousandIndividuals_875 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_876
+
+:ThousandIndividuals_876 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_877
+
+:ThousandIndividuals_877 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_878
+
+:ThousandIndividuals_878 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_879
+
+:ThousandIndividuals_879 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_88
+
+:ThousandIndividuals_88 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_880
+
+:ThousandIndividuals_880 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_881
+
+:ThousandIndividuals_881 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_882
+
+:ThousandIndividuals_882 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_883
+
+:ThousandIndividuals_883 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_884
+
+:ThousandIndividuals_884 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_885
+
+:ThousandIndividuals_885 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_886
+
+:ThousandIndividuals_886 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_887
+
+:ThousandIndividuals_887 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_888
+
+:ThousandIndividuals_888 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_889
+
+:ThousandIndividuals_889 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_89
+
+:ThousandIndividuals_89 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_890
+
+:ThousandIndividuals_890 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_891
+
+:ThousandIndividuals_891 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_892
+
+:ThousandIndividuals_892 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_893
+
+:ThousandIndividuals_893 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_894
+
+:ThousandIndividuals_894 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_895
+
+:ThousandIndividuals_895 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_896
+
+:ThousandIndividuals_896 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_897
+
+:ThousandIndividuals_897 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_898
+
+:ThousandIndividuals_898 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_899
+
+:ThousandIndividuals_899 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_9
+
+:ThousandIndividuals_9 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_90
+
+:ThousandIndividuals_90 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_900
+
+:ThousandIndividuals_900 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_901
+
+:ThousandIndividuals_901 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_902
+
+:ThousandIndividuals_902 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_903
+
+:ThousandIndividuals_903 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_904
+
+:ThousandIndividuals_904 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_905
+
+:ThousandIndividuals_905 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_906
+
+:ThousandIndividuals_906 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_907
+
+:ThousandIndividuals_907 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_908
+
+:ThousandIndividuals_908 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_909
+
+:ThousandIndividuals_909 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_91
+
+:ThousandIndividuals_91 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_910
+
+:ThousandIndividuals_910 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_911
+
+:ThousandIndividuals_911 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_912
+
+:ThousandIndividuals_912 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_913
+
+:ThousandIndividuals_913 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_914
+
+:ThousandIndividuals_914 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_915
+
+:ThousandIndividuals_915 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_916
+
+:ThousandIndividuals_916 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_917
+
+:ThousandIndividuals_917 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_918
+
+:ThousandIndividuals_918 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_919
+
+:ThousandIndividuals_919 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_92
+
+:ThousandIndividuals_92 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_920
+
+:ThousandIndividuals_920 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_921
+
+:ThousandIndividuals_921 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_922
+
+:ThousandIndividuals_922 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_923
+
+:ThousandIndividuals_923 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_924
+
+:ThousandIndividuals_924 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_925
+
+:ThousandIndividuals_925 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_926
+
+:ThousandIndividuals_926 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_927
+
+:ThousandIndividuals_927 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_928
+
+:ThousandIndividuals_928 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_929
+
+:ThousandIndividuals_929 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_93
+
+:ThousandIndividuals_93 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_930
+
+:ThousandIndividuals_930 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_931
+
+:ThousandIndividuals_931 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_932
+
+:ThousandIndividuals_932 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_933
+
+:ThousandIndividuals_933 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_934
+
+:ThousandIndividuals_934 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_935
+
+:ThousandIndividuals_935 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_936
+
+:ThousandIndividuals_936 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_937
+
+:ThousandIndividuals_937 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_938
+
+:ThousandIndividuals_938 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_939
+
+:ThousandIndividuals_939 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_94
+
+:ThousandIndividuals_94 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_940
+
+:ThousandIndividuals_940 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_941
+
+:ThousandIndividuals_941 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_942
+
+:ThousandIndividuals_942 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_943
+
+:ThousandIndividuals_943 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_944
+
+:ThousandIndividuals_944 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_945
+
+:ThousandIndividuals_945 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_946
+
+:ThousandIndividuals_946 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_947
+
+:ThousandIndividuals_947 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_948
+
+:ThousandIndividuals_948 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_949
+
+:ThousandIndividuals_949 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_95
+
+:ThousandIndividuals_95 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_950
+
+:ThousandIndividuals_950 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_951
+
+:ThousandIndividuals_951 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_952
+
+:ThousandIndividuals_952 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_953
+
+:ThousandIndividuals_953 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_954
+
+:ThousandIndividuals_954 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_955
+
+:ThousandIndividuals_955 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_956
+
+:ThousandIndividuals_956 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_957
+
+:ThousandIndividuals_957 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_958
+
+:ThousandIndividuals_958 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_959
+
+:ThousandIndividuals_959 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_96
+
+:ThousandIndividuals_96 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_960
+
+:ThousandIndividuals_960 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_961
+
+:ThousandIndividuals_961 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_962
+
+:ThousandIndividuals_962 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_963
+
+:ThousandIndividuals_963 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_964
+
+:ThousandIndividuals_964 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_965
+
+:ThousandIndividuals_965 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_966
+
+:ThousandIndividuals_966 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_967
+
+:ThousandIndividuals_967 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_968
+
+:ThousandIndividuals_968 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_969
+
+:ThousandIndividuals_969 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_97
+
+:ThousandIndividuals_97 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_970
+
+:ThousandIndividuals_970 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_971
+
+:ThousandIndividuals_971 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_972
+
+:ThousandIndividuals_972 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_973
+
+:ThousandIndividuals_973 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_974
+
+:ThousandIndividuals_974 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_975
+
+:ThousandIndividuals_975 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_976
+
+:ThousandIndividuals_976 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_977
+
+:ThousandIndividuals_977 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_978
+
+:ThousandIndividuals_978 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_979
+
+:ThousandIndividuals_979 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_98
+
+:ThousandIndividuals_98 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_980
+
+:ThousandIndividuals_980 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_981
+
+:ThousandIndividuals_981 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_982
+
+:ThousandIndividuals_982 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_983
+
+:ThousandIndividuals_983 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_984
+
+:ThousandIndividuals_984 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_985
+
+:ThousandIndividuals_985 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_986
+
+:ThousandIndividuals_986 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_987
+
+:ThousandIndividuals_987 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_988
+
+:ThousandIndividuals_988 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_989
+
+:ThousandIndividuals_989 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_99
+
+:ThousandIndividuals_99 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_990
+
+:ThousandIndividuals_990 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_991
+
+:ThousandIndividuals_991 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_992
+
+:ThousandIndividuals_992 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_993
+
+:ThousandIndividuals_993 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_994
+
+:ThousandIndividuals_994 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_995
+
+:ThousandIndividuals_995 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_996
+
+:ThousandIndividuals_996 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_997
+
+:ThousandIndividuals_997 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_998
+
+:ThousandIndividuals_998 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/1/ThousandIndividuals_999
+
+:ThousandIndividuals_999 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+[ rdf:type :Class1
+] .
+
+
+#################################################################
+#
+#    General axioms
+#
+#################################################################
+
+
+[ rdf:type owl:Class ;
+  owl:unionOf ( :ObjectUnionOf_RL_Class1
+                :ObjectUnionOf_RL_Class2
+                :ObjectUnionOf_RL_Class3
+              ) ;
+  rdfs:subClassOf :ObjectUnionOf_RL
+] .
+
+
+
+[ rdf:type owl:Class ;
+  owl:oneOf ( :ObjectOneOf_RL_Individual1
+              :ObjectOneOf_RL_Individual2
+            ) ;
+  rdfs:subClassOf :ObjectOneOf_RL
+] .
+
+
+
+[ rdf:type owl:Restriction ;
+  owl:onProperty :objectSomeValuesFromProperty_RL ;
+  owl:someValuesFrom :ObjectSomeValuesFromRange_RL ;
+  rdfs:subClassOf :ObjectSomeValuesFrom_RL
+] .
+
+
+
+[ rdf:type owl:Restriction ;
+  owl:onProperty :dataSomeValuesFromProperty_RL ;
+  owl:someValuesFrom xsd:dateTime ;
+  rdfs:subClassOf :DataSomeValuesFrom_RL
+] .
+
+
+
+[ rdf:type owl:AllDisjointClasses ;
+  owl:members ( :AllDisjointClasses_Class1
+                :AllDisjointClasses_Class2
+                :AllDisjointClasses_Class3
+              )
+] .
+
+
+
+[ rdf:type owl:AllDifferent ;
+  owl:distinctMembers ( :AllDifferent_Individual1
+                        :AllDifferent_Individual2
+                        :AllDifferent_Individual3
+                        :AllDifferent_Individual4
+                      )
+] .
+
+
+
+[ rdf:type owl:AllDisjointProperties ;
+  owl:members ( :allDisjointObjectProperties_Property1
+                :allDisjointObjectProperties_Property2
+                :allDisjointObjectProperties_Property3
+              )
+] .
+
+
+
+[ rdf:type owl:AllDisjointProperties ;
+  owl:members ( :allDisjointDataProperties_Property1
+                :allDisjointDataProperties_Property2
+                :allDisjointDataProperties_Property3
+              )
+] .
+
+
+
+
+###  Generated by the OWL API (version 4.1.0) https://github.com/owlcs/owlapi
+

ontologies/marinetlo.owl 1784(+1784 -0)

diff --git a/ontologies/marinetlo.owl b/ontologies/marinetlo.owl
new file mode 100644
index 0000000..e9be335
--- /dev/null
+++ b/ontologies/marinetlo.owl
@@ -0,0 +1,1784 @@
+<?xml version="1.0"?>
+
+
+<!DOCTYPE rdf:RDF [
+    <!ENTITY dcterms "http://purl.org/dc/terms/" >
+    <!ENTITY foaf "http://xmlns.com/foaf/0.1/" >
+    <!ENTITY owl "http://www.w3.org/2002/07/owl#" >
+    <!ENTITY dc "http://purl.org/dc/elements/1.1/" >
+    <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
+    <!ENTITY skos "http://www.w3.org/2004/02/skos/core#" >
+    <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
+    <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
+    <!ENTITY vs "http://www.w3.org/2003/06/sw-vocab-status/ns#" >
+    <!ENTITY marinetlo "http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl" >
+]>
+
+
+<rdf:RDF xmlns="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"
+     xml:base="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
+     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+     xmlns:foaf="http://xmlns.com/foaf/0.1/"
+     xmlns:owl="http://www.w3.org/2002/07/owl#"
+     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
+     xmlns:marinetlo="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"
+     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+     xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
+     xmlns:skos="http://www.w3.org/2004/02/skos/core#"
+     xmlns:dcterms="http://purl.org/dc/terms/">
+    <owl:Ontology rdf:about="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl">
+        <dcterms:issued rdf:datatype="&xsd;date">2013-10-15</dcterms:issued>
+        <dcterms:modified rdf:datatype="&xsd;date">2014-04-22</dcterms:modified>
+        <owl:versionInfo rdf:datatype="&xsd;decimal">3.0</owl:versionInfo>
+        <dcterms:rights>Copyright © FORTH ICS</dcterms:rights>
+        <dcterms:creator> Chrysoula Bekiari </dcterms:creator>
+        <dcterms:contributor> Carlo Allocca </dcterms:contributor>
+        <dcterms:description>MarineTLO is a top-level ontology for the marine domain (also applicable to the terrestrial domain).</dcterms:description>
+        <dcterms:contributor> Chrysoula Bekiari </dcterms:contributor>
+        <dcterms:creator> Carlo Allocca </dcterms:creator>
+        <dcterms:contributor> Martin Doerr </dcterms:contributor>
+        <dcterms:contributor> Nikos Minadakis </dcterms:contributor>
+        <dcterms:creator> Martin Doerr </dcterms:creator>
+        <dcterms:creator> Nikos Minadakis </dcterms:creator>
+        <dcterms:contributor> Julien Barde </dcterms:contributor>
+        <dcterms:title>MarineTLO Ontology</dcterms:title>
+        <dcterms:license rdf:resource="http://creativecommons.org/licenses/by/3.0/"/>
+        <dcterms:creator rdf:resource="http://users.ics.forth.gr/~fafalios/"/>
+        <dcterms:contributor rdf:resource="http://users.ics.forth.gr/~fafalios/"/>
+        <dcterms:contributor rdf:resource="http://users.ics.forth.gr/~marketak/pages/aboutme.html"/>
+        <dcterms:creator rdf:resource="http://users.ics.forth.gr/~marketak/pages/aboutme.html"/>
+        <dcterms:creator rdf:resource="http://users.ics.forth.gr/~tzitzik/"/>
+        <dcterms:contributor rdf:resource="http://users.ics.forth.gr/~tzitzik/"/>
+        <dcterms:publisher rdf:resource="http://www.ics.forth.gr/isl"/>
+        <owl:versionIRI rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Ontology>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Annotation properties
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    <owl:AnnotationProperty rdf:about="&vs;term_status"/>
+    <owl:AnnotationProperty rdf:about="&dcterms;publisher"/>
+    <owl:AnnotationProperty rdf:about="&dcterms;modified"/>
+    <owl:AnnotationProperty rdf:about="&dcterms;title"/>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Datatypes
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://www.w3.org/2001/XMLSchema#date -->
+
+    <rdfs:Datatype rdf:about="&xsd;date"/>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Object Properties
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#L11HadOutput -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#L11HadOutput">
+        <rdfs:label>L11HadOutput</rdfs:label>
+        <rdfs:comment>This property associates an instance of BC56 Digital Measurement  Event with an instance of BC23 Digital Object which is the output of the activity.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#DigitalMeasurementEvent"/>
+        <rdfs:range rdf:resource="&marinetlo;#DigitalObject"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#L12FHappenedOnDevice -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#L12FHappenedOnDevice">
+        <rdfs:label>L12FHappenedOnDevice</rdfs:label>
+        <rdfs:comment>This property associates an instance of BC56 Digital Measurement  Event with the instance of BC58 Digital Device that had used.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#D10SoftwareExecution"/>
+        <rdfs:range rdf:resource="&marinetlo;#D8DigitalDevice"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#L23UsedSoftware -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#L23UsedSoftware">
+        <rdfs:label>L23UsedSoftware</rdfs:label>
+        <rdfs:comment>This property associates an instance of BC56 Digital Measurement  Event with the instance of BC59 Software.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#D10SoftwareExecution"/>
+        <rdfs:range rdf:resource="&marinetlo;#Software"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LC1isIdentifiedBy -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LC1isIdentifiedBy">
+        <rdfs:label>LC1isIdentifiedBy</rdfs:label>
+        <rdfs:comment>This property describes the naming or identification of any real world item by a name or any other identifier. 
+
+This property is intended for identifiers in general use, which form part of the world the model intends to describe, and not merely for internal database identifiers which are specific to a technical system, unless these latter also have a more general use outside the technical context. This property includes in particular identification by mathematical expressions such as coordinate systems used for the identification of instances of E53 Place. The property does not reveal anything about when, where and by whom this identifier was used. A more detailed representation can be made using the fully developed (i.e. indirect) path through E15 Identifier Assignment.
+[Scope Note for P1 is identified by (identifies)CIDOC CRM version 5.1.2]
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#Identifier"/>
+        <rdfs:domain rdf:resource="&marinetlo;#PersistentItem"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LC2hasAppellation -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LC2hasAppellation">
+        <rdfs:label>LC2hasAppellation</rdfs:label>
+        <rdfs:comment>This property associates an instance of BC1 TLO Entity with an instance of BC30 Appellation
+This property is intended for names in general use. The property does not reveal anything about when, where and by whom this name was used. A more detailed representation can be made using the fully developed (i.e. indirect) path through BC46 Identifier Assignment.
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#Appellation"/>
+        <rdfs:domain rdf:resource="&marinetlo;#PersistentItem"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LC4isReferredBy -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LC4isReferredBy">
+        <rdfs:label>LC4isReferredBy</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment>This property documents that a BC18 Proposition makes a statement about an instance of BC1 TLO Entity.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#ConceptualObject"/>
+        <owl:inverseOf rdf:resource="&marinetlo;#LC4refersTo"/>
+        <rdfs:domain rdf:resource="&marinetlo;#PersistentItem"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LC4refersTo -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LC4refersTo">
+        <rdfs:label>LC4refersTo</rdfs:label>
+        <rdfs:comment>This property documents that a BC18 Proposition makes a statement about an instance of BC1 TLO Entity.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#ConceptualObject"/>
+        <rdfs:range rdf:resource="&marinetlo;#PersistentItem"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LCproduces -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LCproduces">
+        <rdfs:label>LCproduces</rdfs:label>
+        <rdfs:comment>This property associates an instance of BC61 Capture Activity with the instance of BC57 Capture.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#Capture"/>
+        <rdfs:domain rdf:resource="&marinetlo;#Capture_Activity"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LT2usuallyConsistsOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LT2usuallyConsistsOf">
+        <rdfs:label>LT2usuallyConsistsOf</rdfs:label>
+        <rdfs:comment>This property describes the types of components   of an Temporal Phenomenon Type.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LTbelongsTo -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LTbelongsTo">
+        <rdfs:label>LTbelongsTo</rdfs:label>
+        <rdfs:comment>This property associates a type of biotic element with the type of biotic element which is part of or member.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#BioticElementType"/>
+        <rdfs:domain rdf:resource="&marinetlo;#BioticElementType"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LTusuallyFeedingOn -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LTusuallyFeedingOn">
+        <rdfs:label>LTusuallyFeedingOn</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#BioticElementType"/>
+        <rdfs:domain rdf:resource="&marinetlo;#BioticElementType"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LTusuallyIsPredatorOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LTusuallyIsPredatorOf">
+        <rdfs:label>LTusuallyIsPredatorOf</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment>This property connects the types of predators with their prey type.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:subPropertyOf rdf:resource="&marinetlo;#LTusuallyFeedingOn"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LTusuallyIsPreyOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LTusuallyIsPreyOf">
+        <rdfs:label>LTusuallyIsPreyOf</rdfs:label>
+        <rdfs:comment>This property connects the types of predators with their prey type.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:subPropertyOf rdf:resource="&marinetlo;#LTusuallyFeedingOn"/>
+        <owl:inverseOf rdf:resource="&marinetlo;#LTusuallyIsPredatorOf"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LX1isIdentifiedBy -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LX1isIdentifiedBy">
+        <rdfs:label>LX1isIdentifiedBy</rdfs:label>
+        <rdfs:comment>This property describes the types of identifiers, names or labels of any marineTLO item type.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#Identifier"/>
+        <rdfs:domain rdf:resource="&marinetlo;#PersistentItemType"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LX2hasAppellation -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LX2hasAppellation">
+        <rdfs:label>LX2hasAppellation</rdfs:label>
+        <rdfs:comment>This property associates an instance of BT1 TLO Entity Type with an instance of BC7 Appellation.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#Appellation"/>
+        <rdfs:domain rdf:resource="&marinetlo;#MarineTLOEntityType"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LX3isAboutConcept -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LX3isAboutConcept">
+        <rdfs:label>LX3isAboutConcept</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment>This property documents that an instance of BC17 Conceptual Object is a subject of an instance of BT1 TLO Entity Type.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#ConceptualObject"/>
+        <rdfs:range rdf:resource="&marinetlo;#MarineTLOEntityType"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LXhasType -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LXhasType">
+        <rdfs:label>LXhasType</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment>This property allows sub typing of MarineTLO entities - a form of specialisation – through the use of a terminological hierarchy, or thesaurus.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#MarineTLOEntity"/>
+        <rdfs:range rdf:resource="&marinetlo;#MarineTLOEntityType"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LXusuallyIsBioticComponentOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LXusuallyIsBioticComponentOf">
+        <rdfs:label>LXusuallyIsBioticComponentOf</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#BioticElementType"/>
+        <rdfs:range rdf:resource="&marinetlo;#Ecosystem"/>
+        <rdfs:subPropertyOf rdf:resource="&marinetlo;#LXusuallyIsComponentOf"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LXusuallyIsComponentOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LXusuallyIsComponentOf">
+        <rdfs:label>LXusuallyIsComponentOf</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#PersistentItemType"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#O21Triggers -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#O21Triggers">
+        <rdfs:label>O21Triggers</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#D10SoftwareExecution"/>
+        <rdfs:domain rdf:resource="&marinetlo;#DigitalMeasurementEvent"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P102HasTitle -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P102HasTitle">
+        <rdfs:label>P102HasTitle</rdfs:label>
+        <rdfs:comment>This property describes the E35 Title applied to an instance of E71 Man-Made Thing. The E55 Type of Title is assigned in a sub property.
+
+The P102.1 has type property of the P102 has title (is title of) property enables the relationship between the Title and the thing to be further clarified, for example, if the Title was a given Title, a supplied Title etc.
+It allows any man-made material or immaterial thing to be given a Title. It is possible to imagine a Title being created without a specific object in mind.
+Examples:	
+1) the first book of the Old Testament (E33) has title “Genesis” (E35) has type translated (E55).
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#MarineTLOEntity"/>
+        <rdfs:range rdf:resource="&marinetlo;#Title"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P105RightHeldBy -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P105RightHeldBy">
+        <rdfs:label>P105RightHeldBy</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment>This property identifies the E39 Actor who holds the instances of E30 Right to an E72 Legal Object.
+It is a superproperty of P52 has current owner (is current owner of) because ownership is a right that is held on the owned object.
+
+P105 right held by (has right on) is a shortcut of the fully developed path from E72 Legal Object through P104 is subject to (applies to), E30 Right, P75 possesses (is possessed by) to E39 Actor.
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#Actor"/>
+        <rdfs:domain rdf:resource="&marinetlo;#Software"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P125UsedObjectOfType -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P125UsedObjectOfType">
+        <rdfs:label>P125UsedObjectOfType</rdfs:label>
+        <rdfs:comment>This property defines the kind of objects used in an E7 Activity, when the specific instance is either unknown or not of interest, such as use of &quot;a hammer&quot;.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#HumanActivity"/>
+        <rdfs:range rdf:resource="&marinetlo;#PersistentItemType"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P141Assigned -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P141Assigned">
+        <rdfs:label>P141Assigned</rdfs:label>
+        <rdfs:comment>This property indicates the attribute that was assigned or the item that was related to the item denoted by a property P140 assigned attribute to in an Attribute assignment action.
+Examples:	
+1)	February 1997 Current Ownership Assessment of Martin Doerr’s silver cup (E13) assigned Martin Doerr (E21)
+2)	01 June 1997 Identifier Assignment of the silver cup donated by Martin Doerr (E15) assigned object identifier 232
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#AttributeAssignment"/>
+        <rdfs:range rdf:resource="&marinetlo;#MarineTLOEntity"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P14CarriedOutBy -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P14CarriedOutBy">
+        <rdfs:label>P14CarriedOutBy</rdfs:label>
+        <rdfs:comment>This property describes the active participation of an E39 Actor in an E7 Activity. 
+
+It implies causal or legal responsibility. The P14.1 in the role of property of the property allows the nature of an Actor’s participation to be specified.
+Examples:	
+1)the painting of the Sistine Chapel (E7)  carried out by Michaelangelo Buonaroti (E21) in the role of master craftsman (E55)
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#Actor"/>
+        <rdfs:domain rdf:resource="&marinetlo;#HumanActivity"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P33UsedSpecificTechnique -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P33UsedSpecificTechnique">
+        <rdfs:label>P33UsedSpecificTechnique</rdfs:label>
+        <rdfs:comment>This property identifies a specific instance of E29 Design or Procedure in order to carry out an 		instance of E7 Activity or parts of it. 
+
+The property differs from P32 used general technique (was technique of) in that P33 refers to an instance of E29 Design or Procedure, which is a concrete information object in its own right rather than simply being a term or a method known by tradition. 
+
+Typical examples would include intervention plans for conservation or the construction plans of a building
+Examples:	
+1) Ornamentation of silver cup 232  (E11) used specific technique ‘Instructions for golden chase work by A N Other’ (E29)
+2) Rebuilding of Reichstag (E11) used specific technique Architectural plans by Foster and Partners (E29)
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#DesignAndProcedure"/>
+        <rdfs:domain rdf:resource="&marinetlo;#HumanActivity"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P34Continued -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P34Continued">
+        <rdfs:label>P34Continued</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment>This property identifies the E18 Physical Thing that was assessed during an E14 Condition Assessment activity. 
+Conditions may be assessed either by direct observation or using recorded evidence. In the latter case the E18 Physical Thing does not need to be present or extant.
+Examples:	
+1) 1997 condition assessment of the silver collection (E14) concerned silver cup 232 (E22)
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#HumanActivity"/>
+        <rdfs:range rdf:resource="&marinetlo;#HumanActivity"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P39Measured -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P39Measured">
+        <rdfs:label>P39Measured</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment>This property associates an instance of E16 Measurement with the instance of E1 CRM Entity to which it applied. An instance of E1 CRM Entity may be measured more than once. Material and immaterial things and processes may be measured, e.g. the number of words in a text, or the duration of an event.
+Examples:	
+1) 31 August 1997 measurement of height of silver cup 232 (E16) measured silver cup 232 (E22).
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#MarineTLOEntity"/>
+        <rdfs:domain rdf:resource="&marinetlo;#Measurement"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P39WasMeasuredBy -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P39WasMeasuredBy">
+        <rdfs:label>P39Measured</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <owl:inverseOf rdf:resource="&marinetlo;#P39Measured"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P40ObservedDimension -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P40ObservedDimension">
+        <rdfs:label>P40ObservedDimension</rdfs:label>
+        <rdfs:comment>This property records the dimension that was observed in an E16 Measurement Event.
+E54 Dimension can be any quantifiable aspect of E70 Thing. Weight, image colour depth and monetary value are dimensions in this sense. One measurement activity may determine more than one dimension of one object.
+Dimensions may be determined either by direct observation or using recorded evidence. In the latter case the measured Thing does not need to be present or extant.
+Even though knowledge of the value of a dimension requires measurement, the dimension may be an object of discourse prior to, or even without, any measurement being made.
+Examples:	
+1) 31 August 1997 measurement of height of silver cup 232 (E16) observed dimension silver cup 232 height (E54) has unit mm (E58), has value 224 (E60)
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#Dimension"/>
+        <rdfs:domain rdf:resource="&marinetlo;#Measurement"/>
+        <rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P40WasObservedIn -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P40WasObservedIn">
+        <rdfs:label>P40WasObservedIn</rdfs:label>
+        <rdfs:comment>This property records the dimension that was observed in an E16 Measurement Event.
+E54 Dimension can be any quantifiable aspect of E70 Thing. Weight, image colour depth and monetary value are dimensions in this sense. One measurement activity may determine more than one dimension of one object.
+Dimensions may be determined either by direct observation or using recorded evidence. In the latter case the measured Thing does not need to be present or extant.
+Even though knowledge of the value of a dimension requires measurement, the dimension may be an object of discourse prior to, or even without, any measurement being made.
+Examples:	
+1) 31 August 1997 measurement of height of silver cup 232 (E16) observed dimension silver cup 232 height (E54) has unit mm (E58), has value 224 (E60)
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <owl:inverseOf rdf:resource="&marinetlo;#P40ObservedDimension"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P4HasTime-Span -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P4HasTime-Span">
+        <rdfs:label>P4HasTime-Span</rdfs:label>
+        <rdfs:comment>This property describes the temporal confinement of an instance of an E2 Temporal Entity.
+
+The related E52 Time-Span is understood as the real Time-Span during which the phenomena were active, which make up the temporal entity instance. It does not convey any other meaning than a positioning on the “time-line” of chronology. The Time-Span in turn is approximated by a set of dates (E61 Time Primitive). A temporal entity can have in reality only one Time-Span, but there may exist alternative opinions about it, which we would express by assigning multiple Time-Spans. Related temporal entities may share a Time-Span. Time-Spans may have completely unknown dates but other descriptions by which we can infer knowledge.
+Examples: 	
+1) the Yalta Conference (E7) has time-span Yalta Conference time-span (E52) 
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#TemporalPhenomenon"/>
+        <rdfs:range rdf:resource="&marinetlo;#Time-Span"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P7TookPlaceAt -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P7TookPlaceAt">
+        <rdfs:label>P7TookPlaceAt</rdfs:label>
+        <rdfs:comment>This property describes the spatial location of an instance of E4 Period. 
+
+The related E53 Place should be seen as an approximation of the geographical area within which the phenomena that characterise the period in question occurred. P7took place at (witnessed) does not convey any meaning other than spatial positioning (generally on the surface of the earth).  For example, the period “Révolution française” can be said to have taken place in “France”, the “Victorian” period, may be said to have taken place in “Britain” and its colonies, as well as other parts of Europe and north America.
+A period can take place at multiple locations.
+Examples: 	
+1) the period “Révolution française” (E4) took place at France (E53)
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#Place"/>
+        <rdfs:domain rdf:resource="&marinetlo;#TemporalPhenomenon"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P90hasValue -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P90hasValue">
+        <rdfs:label>P90hasValue</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment>This property allows an E54 Dimension to be approximated by an E60 Number primitive.
+
+Examples:	
+1) height of silver cup 232 (E54) has value 226 (E60)
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#BC60Value"/>
+        <rdfs:domain rdf:resource="&marinetlo;#Dimension"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P91HasUnit -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P91HasUnit">
+        <rdfs:label>P91HasUnit</rdfs:label>
+        <rdfs:comment>This property shows the type of unit an E54 Dimension was expressed in.
+
+Examples:	
+1) height of silver cup 232 (E54) has unit mm (E58)
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#Dimension"/>
+        <rdfs:range rdf:resource="&marinetlo;#MeasurementUnit"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Data properties
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P3HasNote -->
+
+    <owl:DatatypeProperty rdf:about="&marinetlo;#P3HasNote">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This property associates an entity to MarineTLO Environment with  abstraction levels where it is defined.  </rdfs:comment>
+        <rdfs:domain rdf:resource="&marinetlo;#MarineTLOEntity"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Classes
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#AbioticElement -->
+
+    <owl:Class rdf:about="&marinetlo;#AbioticElement">
+        <rdfs:label>Abiotic Element</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalThing"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class refers to the abiotic components of an ecosystem. This class comprises nonliving physical components of a system, for example: rocks, soil, etc. in an environment.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#AbioticElementType -->
+
+    <owl:Class rdf:about="&marinetlo;#AbioticElementType">
+        <rdfs:label>Abiotic Element Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalThingType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This metaclass comprises types of abiotic components of a type of  Ecosystem.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Actor -->
+
+    <owl:Class rdf:about="&marinetlo;#Actor">
+        <rdfs:label>Actor</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PersistentItem"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible. </rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ActorType -->
+
+    <owl:Class rdf:about="&marinetlo;#ActorType">
+        <rdfs:label>Actor Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PersistentItemType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises types of human agents either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Appellation -->
+
+    <owl:Class rdf:about="&marinetlo;#Appellation">
+        <rdfs:label>Appellation</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <rdfs:comment xml:lang="en">This class comprises signs, either meaningful or not, or arrangements of signs following a specific syntax, that are used or can be used to refer to and identify a specific instance of some class or category within a certain context.
+Specific subclasses of BC7 Appellation should be used when instances of BC7 Appellation of a characteristic form or format are used for particular objects
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#AppellationType -->
+
+    <owl:Class rdf:about="&marinetlo;#AppellationType">
+        <rdfs:label>Appellation Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObjectType"/>
+        <rdfs:comment xml:lang="en">This class comprises types of Appellation that are used or can be used to identify a specific instance of some class within a certain context. </rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#AttributeAssignment -->
+
+    <owl:Class rdf:about="&marinetlo;#AttributeAssignment">
+        <rdfs:label>Attribute Assignment</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#HumanActivity"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises the actions of making assertions about properties of an object or any relation between two items or concepts. 
+
+This class allows the documentation of how the respective assignment came about, and whose opinion it was. All the attributes or properties assigned in such an action can also be seen as directly attached to the respective item or concept, possibly as a collection of contradictory values. All cases of properties in this model that are also described indirectly through an action are characterised as &quot;short cuts&quot; of this action. This redundant modelling of two alternative views is preferred because many implementations may have good reasons to model either the action or the short cut, and the relation between both alternatives can be captured by simple rules. 
+
+In particular, the class describes the actions of people making propositions and statements during certain museum procedures, e.g. the person and date when a condition statement was made, an identifier was assigned, the museum object was measured, etc. Which kinds of such assignments and statements need to be documented explicitly in structures of a schema rather than free text, depends on if this information should be accessible by structured queries. 
+ 
+[Scope Note for E13 Attribute Assignment  CIDOC CRM version 5.1.2]
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#BC60Value -->
+
+    <owl:Class rdf:about="&marinetlo;#BC60Value">
+        <rdfs:label>BC60Value</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineTLOEntity"/>
+        <rdfs:comment xml:lang="en">This class comprises primitive values used as documentation elements, which are not further elaborated upon within the model. 
+
+As such they are not considered as elements within our universe of discourse. No specific implementation recommendations are made. It is recommended that the primitive value system from the implementation platform be used to substitute for this class and its subclasses.
+Examples:	
+• ABCDEFG (E62)
+• 3.14 (E60)
+• 0 
+• 1921-01-01 (E61)
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#BiologicalPart -->
+
+    <owl:Class rdf:about="&marinetlo;#BiologicalPart">
+        <rdfs:label>Biological Part</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#BioticElement"/>
+        <rdfs:comment xml:lang="en"> This metaclass comprises biological parts of a biological object</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#BiologicalPartType -->
+
+    <owl:Class rdf:about="&marinetlo;#BiologicalPartType">
+        <rdfs:label>Biological Part Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#BioticElementType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This metaclass comprises types of biological parts of a biological object.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#BioticElement -->
+
+    <owl:Class rdf:about="&marinetlo;#BioticElement">
+        <rdfs:label>Biotic Element</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalThing"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class refers to the biotic components of an ecosystem. This class compromises individual living things that can react to stimuli, reproduce, grow, and maintain homeostasis. It can be a virus, bacterium, protist, fungus, plant, an animal or a human being. [http://www.biology-online.org/]</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#BioticElementType -->
+
+    <owl:Class rdf:about="&marinetlo;#BioticElementType">
+        <rdfs:label>Biotic Element Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalThingType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This metaclass comprises types of material nature items which live, have lived or are natural products of or from living organisms. Such types of material nature items includes types of plants, types of fauna(animals), types of bacteria, fungi etc.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ByCatch -->
+
+    <owl:Class rdf:about="&marinetlo;#ByCatch">
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Capture"/>
+        <vs:term_status>testing</vs:term_status>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Capture -->
+
+    <owl:Class rdf:about="&marinetlo;#Capture">
+        <rdfs:label>Capture</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Collection"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Capture_Activity -->
+
+    <owl:Class rdf:about="&marinetlo;#Capture_Activity">
+        <rdfs:label>Capture Activity</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#HumanActivity"/>
+        <rdfs:comment xml:lang="en">This class compromises activities of BC45 Observation   where an BC8 Actor encounters an instance of BC35 Physical Thing of a kind relevant for the mission of the observation or a biological activity such as fishing, etc. This observation produces knowledge about the existence of the respective thing at a particular place in or on surrounding matter. This knowledge may be new to the group of people the actor belongs to. In that case we would talk about a discovery. The observer may recognize or assign an individual identity of the thing encountered or regard only the type as noteworthy in the associated documentation or report.
+Additional parameters may be recorded like the kind of ecosystem, if the biological individual survives the observation, what detection or catching devices have been used or if the capture activity have been supported the detection of a new biological kind (“taxon”).
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Catch -->
+
+    <owl:Class rdf:about="&marinetlo;#Catch">
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Capture"/>
+        <vs:term_status>testing</vs:term_status>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Collection -->
+
+    <owl:Class rdf:about="&marinetlo;#Collection">
+        <rdfs:label>Collection</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalThing"/>
+        <rdfs:comment xml:lang="en">
+This class comprises aggregations of instances of E18 Physical Thing that are assembled and maintained (“curated” and “preserved,” in museological terminology) by one or more instances of E39 Actor over time for a specific purpose and audience, and according to a particular collection development plan.  
+
+Items may be added or removed from an E78 Collection in pursuit of this plan. This class should not be confused with the E39 Actor maintaining the E78 Collection often referred to with the name of the E78 Collection (e.g. “The Wallace Collection decided…”).
+
+Collective objects in the general sense, like a tomb full of gifts, a folder with stamps or a set of chessmen, should be documented as instances of E19 Physical Object, and not as instances of E78 Collection. This is because they form wholes either because they are physically bound together or because they are kept together for their functionality.
+
+
+[Scope Note for E78 Collection  CIDOC CRM version 5.1.2]
+
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ConceptualObject -->
+
+    <owl:Class rdf:about="&marinetlo;#ConceptualObject">
+        <rdfs:label>ConceptualObject</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ManMadeThings"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises non-material products of our minds and other human produced data that have become objects of a discourse. The production of such information may have been supported by the use of    technical devices such as cameras or computers.
+
+Characteristically, instances of this class are created, invented or thought by someone, and then may be documented or communicated between persons. Instances of BC3 Conceptual Object have the ability to exist on more than one particular carrier at the same time, such as paper, book, electronic signals, marks, audio media, paintings, photos, human memories, etc.
+
+They cannot be destroyed. They exist as long as they can be found on at least one carrier or in at least one human memory. Their existence ends when the last carrier and the last memory are lost.
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ConceptualObjectType -->
+
+    <owl:Class rdf:about="&marinetlo;#ConceptualObjectType">
+        <rdfs:label>Conceptual Object Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PersistentItemType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This metaclass comprises types of identifiable immaterial items, such as, types of data sets, images, texts, multimedia objects, procedural prescriptions, computer program code, algorithm or mathematical formulae, that have an objectively recognizable structure and are documented as single units.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#D10SoftwareExecution -->
+
+    <owl:Class rdf:about="&marinetlo;#D10SoftwareExecution">
+        <rdfs:label>D10 Software Execution</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#D7DigitalMachineEvent"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#D15RepositoryObject -->
+
+    <owl:Class rdf:about="&marinetlo;#D15RepositoryObject">
+        <rdfs:label>D15RepositoryObject</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#DigitalObject"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises data repositories of a set of integrated objects in computer science sense. These objects are modeled using structures defined in database schemas. Digital store includes not only data repositories like databases, it is a more general concept that includes also flat files that can store data. 
+A digital store may contain binary datasets: raw data, normalized data, intermediate data of processing steps, scenes composed from several datasets, presentation objects, 3D models, 2D-Images and any kind of digital document (text, multimedia). It comprises a notion of complex objects, having datasets as parts. The content of a digital store  is responsible for holding information about where data-files and their replicas can be found
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#D7DigitalMachineEvent -->
+
+    <owl:Class rdf:about="&marinetlo;#D7DigitalMachineEvent">
+        <rdfs:label>D7 Digital Machine Event</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#E65Creation"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#D8DigitalDevice -->
+
+    <owl:Class rdf:about="&marinetlo;#D8DigitalDevice">
+        <rdfs:label>D8 Digital Device</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ManMadeThings"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises identifiable material items such as computers, scanners, cameras, etc. that have the capability to process or produce instances of  BC51 Digital Object.
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Database -->
+
+    <owl:Class rdf:about="&marinetlo;#Database">
+        <rdfs:label>Database</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises organized collections of data.   The data are typically organized to model relevant aspects of reality  , in a way that supports processes requiring this information.  This organized collection maybe digitized or not.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Dataset -->
+
+    <owl:Class rdf:about="&marinetlo;#Dataset">
+        <rdfs:label>Dataset</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <rdfs:comment xml:lang="en">This class comprises   contents of a single database table, or a single statistical data matrix, where each column of the table represents a particular variable, and each row corresponds to a given member of the dataset in question. The dataset lists values for each of the variables, such as height and weight of an object, for each member of the dataset. Each value is known as a datum. The dataset may comprise data for one or more members, corresponding to the number of rows.
+The term dataset may also be used more loosely, to refer to the data in a collection of closely related tables, corresponding to a particular experiment or event.
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#DesignAndProcedure -->
+
+    <owl:Class rdf:about="&marinetlo;#DesignAndProcedure">
+        <rdfs:label>DesignAndProcedure</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises documented plans for the execution of actions in order to achieve a result of a specific quality, form or contents. In particular it comprises plans for deliberate human activities that may result in the modification or production of instances of E24 Physical Thing.
+
+Instances of E29 Design or Procedure can be structured in parts and sequences or depend on others. This is modelled using P69 is associated with.
+
+Designs or procedures can be seen as one of the following:
+
+1. schema for the activities it describes
+2. A schema of the products that result from their application.
+3. An independent intellectual product that may have never been applied, such as Leonardo da Vinci&apos;s famous plans for flying machines.
+4. Because designs or procedures may never be applied or only partially executed, the CRM models a loose relationship between the plan and the respective product.
+ [Scope Note for E29 Design or Procedure (CIDOC CRM)]
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#DigitalMeasurementEvent -->
+
+    <owl:Class rdf:about="&marinetlo;#DigitalMeasurementEvent">
+        <rdfs:label>Digital Measurement Event</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Measurement"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises actions measuring physical properties using a digital device, that are determined by a systematic procedure and creates an instance of BC23 Digital Object.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#DigitalObject -->
+
+    <owl:Class rdf:about="&marinetlo;#DigitalObject">
+        <rdfs:label>DigitalObject</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <rdfs:comment xml:lang="en">This class comprises identifiable immaterial items that can be represented as sets of bit sequences, such as data sets, e-texts, images, audio or video items, software, etc., and are documented as single units. 
+Any aggregation of instances of BC23 Digital Object into a whole treated as single unit is also regarded as an instance of BC23 Digital Object. 
+A BC23 Digital Object does not depend on a specific physical carrier, and it can exist on one or more carriers simultaneously.
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#DigitalObjectType -->
+
+    <owl:Class rdf:about="&marinetlo;#DigitalObjectType">
+        <rdfs:label>Digital Object Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObjectType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises types of file formats, physical medium, or dimensions of the resource of digital objects, corresponds to dc format of Dublin core.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Dimension -->
+
+    <owl:Class rdf:about="&marinetlo;#Dimension">
+        <rdfs:label>Dimension</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineTLOEntity"/>
+        <rdfs:comment xml:lang="en">This class comprises quantifiable properties that can be measured by some calibrated means and can be approximated by values, i.e. points or regions in a mathematical or conceptual space, such as natural or real numbers, RGB values etc.
+
+An instance of BC35 Dimension represents the true quantity, independent from its numerical approximation, e.g. in inches or in cm. The properties of the class BC35 Dimension allow for expressing the numerical approximation of the values of an instance of E54 Dimension. If the true values belong to a non-discrete space, such as spatial distances, it is recommended to record them as approximations by intervals or regions of indeterminacy enclosing the assumed true values. For instance, a length of 5 cm may be recorded as 4.5-5.5 cm, according to the precision of the respective observation. Note, that interoperability of values described in different units depends critically on the representation as value regions.
+
+Numerical approximations in archaic instances of E58 Measurement Unit used in historical records should be preserved. Equivalents corresponding to current knowledge should be recorded as additional instances of E54 Dimension as appropriate.
+Examples: 	
+1) currency: £26.00
+2) length: 3.9-4.1 cm 
+3) diameter 26 mm
+4) weight 150 lbs
+5) density: 0.85 gm/cc
+6) luminescence: 56 ISO lumens
+7) tin content: 0.46 %
+8) taille au garot: 5 hands
+9) calibrated C14 date: 2460-2720 years, etc
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#E65Creation -->
+
+    <owl:Class rdf:about="&marinetlo;#E65Creation">
+        <rdfs:label>E65 Creation</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#HumanActivity"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises events that result in the creation of conceptual items or immaterial products, such as legends, poems, texts, music, images, movies, laws, types etc.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#E70_Thing -->
+
+    <owl:Class rdf:about="&marinetlo;#E70_Thing">
+        <rdfs:label>E70_Thing</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PersistentItem"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This general class comprises usable discrete, identifiable, instances of E77 Persistent Item that are documented as single units. 
+[Scope Note for E70 Thing CIDOC CRM version 5.1.2]
+
+They can be either intellectual products or physical things which are constellations of matter with a relative stability of any form sufficient to associate them with a persistent identity, such as being confined to certain extent, which (confinement) can have a relative stability of form or structure, or containing a fixed amount of matter.  It is an abstraction of products of intellectual,  physical nature.
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Ecosystem -->
+
+    <owl:Class rdf:about="&marinetlo;#Ecosystem">
+        <rdfs:label>Ecosystem</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Event"/>
+        <rdfs:comment xml:lang="en">This class comprises specific systems consisting of observable material items, biotic, abiotic elements and interactions, as well as their associated relations and qualities in space time volume. Its coherence can be defined by the types of species and the types and frequency of interactions which can be observed in a space time volume.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#EcosystemType -->
+
+    <owl:Class rdf:about="&marinetlo;#EcosystemType">
+        <rdfs:label>Ecosystem Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#EventsType"/>
+        <rdfs:comment xml:lang="en">This metaclass comprises types of  coherent ecological phenomena bounded in time and space. The  coherence of these phenomena is given by the type of interaction characteristic for biological systems. This coherence identifies the ecosystem and not the associated spatio-temporal bounds. These bounds are a mere approximation of the actual process of growth, spread and retreat. Consequently, different ecosystems can overlap and coexist in time and space.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Equipment -->
+
+    <owl:Class rdf:about="&marinetlo;#Equipment">
+        <rdfs:label>Equipment</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalThing"/>
+        <rdfs:comment xml:lang="en">This class comprises physical objects purposely created by human activity.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#EquipmentType -->
+
+    <owl:Class rdf:about="&marinetlo;#EquipmentType">
+        <rdfs:label>Equipment Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalThingType"/>
+        <rdfs:comment xml:lang="en">This class comprises types of physical objects purposely created by human activity.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Event -->
+
+    <owl:Class rdf:about="&marinetlo;#Event">
+        <rdfs:label>Event</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#TemporalPhenomenon"/>
+        <rdfs:comment xml:lang="en">This class comprises changes of states in cultural, social or physical systems, regardless of scale, brought about by a series or group of coherent physical, cultural, technological or legal phenomena. Such changes of state will affect instances of E77 Persistent Item or its subclasses.
+
+The distinction between an E5 Event and an E4 Period is partly a question of the scale of observation. Viewed at a coarse level of detail, an E5 Event is an ‘instantaneous’ change of state. At a fine level, the E5 Event can be analysed into its component phenomena within a space and time frame, and as such can be seen as an E4 Period. The reverse is not necessarily the case: not all instances of E4 Period give rise to a noteworthy change of state.
+
+[Scope Note for E5 Event  CIDOC CRM version 5.1.2]
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#EventsType -->
+
+    <owl:Class rdf:about="&marinetlo;#EventsType">
+        <rdfs:label>Events Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#TemporalPhenomenonType"/>
+        <rdfs:comment xml:lang="en">This class comprises types of actions intentionally carried out by humans that result in changes of state in the scientific, social, or physical systems documented</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#HumanActivity -->
+
+    <owl:Class rdf:about="&marinetlo;#HumanActivity">
+        <rdfs:label>Human Activity</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Event"/>
+        <rdfs:comment xml:lang="en">This class comprises actions intentionally carried out by instances of E39 Actor that result in changes of state in the cultural, social, or physical systems documented. 
+
+This notion includes complex, composite and long-lasting actions such as the building of a settlement or a war, as well as simple, short-lived actions such as the opening of a door.
+
+[Scope Note for E7 Activity  CIDOC CRM version 5.1.2]
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#HumanActivityType -->
+
+    <owl:Class rdf:about="&marinetlo;#HumanActivityType">
+        <rdfs:label>Human Activity Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#EventsType"/>
+        <rdfs:comment xml:lang="en">This class comprises types of actions intentionally carried out by humans that result in changes of state in the scientific, social, or physical systems documented.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Identifier -->
+
+    <owl:Class rdf:about="&marinetlo;#Identifier">
+        <rdfs:label>Identifier</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises strings or codes assigned to instances of BC10 Persistent Item in order to identify them uniquely and permanently within the context of one or more organisations. Such codes are often known as inventory numbers, registration codes, etc. and are typically composed of alphanumeric sequences. 
+Specific subclasses of BC4 Identifier should be used when instances of BC4 Identifier of a characteristic form or format are used for particular objects
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#IdentifierAssignment -->
+
+    <owl:Class rdf:about="&marinetlo;#IdentifierAssignment">
+        <rdfs:label>Identifier Assignment</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#AttributeAssignment"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises activities that result in the allocation of an identifier to an instance of E1 CRM Entity. An E15 Identifier Assignment may include the creation of the identifier from multiple constituents, which themselves may be instances of E41 Appellation. The syntax and kinds of constituents to be used may be declared in a rule constituting an instance of E29 Design or Procedure.
+[Scope Note for E15 Identifier Assignment CIDOC CRM version 5.1.2]
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#IdentifierAssignmentType -->
+
+    <owl:Class rdf:about="&marinetlo;#IdentifierAssignmentType">
+        <rdfs:label>Identifier Assignment Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#HumanActivityType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Image -->
+
+    <owl:Class rdf:about="&marinetlo;#Image">
+        <rdfs:label>Image</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises distributions of form, tone and colour that may be found on surfaces such as photos, paintings, prints and sculptures or directly on electronic media. 
+The degree to which variations in the distribution of form and colour affect the identity of an instance of BC5 Image depends on a given purpose.
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#IndustrialActivityType -->
+
+    <owl:Class rdf:about="&marinetlo;#IndustrialActivityType">
+        <rdfs:label>Industrial Activity Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#HumanActivityType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Language -->
+
+    <owl:Class rdf:about="&marinetlo;#Language">
+        <rdfs:label>Language</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObjectType"/>
+        <rdfs:comment xml:lang="en">This class comprises the natural languages in the sense of concepts, i.e. the Model does not foresee the description of instances of BT36 Language, e.g.: “instances of French”.
+
+It is recommended that internationally or nationally agreed codes and terminology are used to denote instances of BT36 Language, such as those defined in ISO 639:1988.  [CIDOC CRM].
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LegislativeZoneType -->
+
+    <owl:Class rdf:about="&marinetlo;#LegislativeZoneType">
+        <rdfs:label>Legislative Zone Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#TemporalPhenomenonType"/>
+        <rdfs:comment xml:lang="en">This class comprises types of extents in space where real world phenomenon can be observed or measured.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ManMadeObject -->
+
+    <owl:Class rdf:about="&marinetlo;#ManMadeObject">
+        <rdfs:label>Man Made Object</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalManMadeThing"/>
+        <rdfs:comment xml:lang="en">This class comprises physical objects purposely created by human activity.
+
+No assumptions are made as to the extent of modification required to justify regarding an object as man-made. For example, an inscribed piece of rock or a preserved butterfly are both regarded as instances of E22 Man-Made Object.
+
+[Scope Note for E22 Man-Made Object  CIDOC CRM version 5.1.2]
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ManMadeThings -->
+
+    <owl:Class rdf:about="&marinetlo;#ManMadeThings">
+        <rdfs:label>ManMadeThings</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#E70_Thing"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises physical objects purposely created by human activity.
+
+No assumptions are made as to the extent of modification required to justify regarding an object as man-made. For example, an inscribed piece of rock or a preserved butterfly are both regarded as instances of BC31 Man-Made Object.
+Examples:	
+1) Mallard (the World’s fastest steam engine)
+2) the Portland Vase
+3) the Coliseum
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#MarineAnimal -->
+
+    <owl:Class rdf:about="&marinetlo;#MarineAnimal">
+        <rdfs:label>Marine Animal</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#BioticElement"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises any living thing in a marine environment that can move independently and that has senses for recognizing and reacting to the environment around it.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#MarineAnimalType -->
+
+    <owl:Class rdf:about="&marinetlo;#MarineAnimalType">
+        <rdfs:label>Marine Animal Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#BioticElementType"/>
+        <rdfs:comment xml:lang="en">This class comprises types marine animals that have a persistent identity.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#MarineTLOEntity -->
+
+    <owl:Class rdf:about="&marinetlo;#MarineTLOEntity">
+        <rdfs:label>MarineTLOEntity</rdfs:label>
+        <rdfs:comment xml:lang="en">This class comprises all objects of the MarineTLO discourse. It is an abstract concept providing for :
+1) Identification   by a preferred identifier
+2) Appellation
+3) all classes within this level of the MarineTLO are directly or indirectly specialisations of BC20 TLO Entity
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#MarineTLOEntityType -->
+
+    <owl:Class rdf:about="&marinetlo;#MarineTLOEntityType">
+        <rdfs:label>MarineTLO Entity Type</rdfs:label>
+        <rdfs:comment xml:lang="en">This class comprises types of things in the universe of discourse of the MarineTLO.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Measurement -->
+
+    <owl:Class rdf:about="&marinetlo;#Measurement">
+        <rdfs:label>Measurement</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#AttributeAssignment"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises actions measuring physical properties and other values that can be determined by a systematic procedure. 
+
+Examples include measuring the monetary value of a collection of coins or the running time of a specific video cassette. 
+
+The E16 Measurement may use simple counting or tools, such as yardsticks or radiation detection devices. The interest is in the method and care applied, so that the reliability of the result may be judged at a later stage, or research continued on the associated documents. The date of the event is important for dimensions, which may change value over time, such as the length of an object subject to shrinkage. Details of methods and devices are best handled as free text, whereas basic techniques such as &quot;carbon 14 dating&quot; should be encoded using P2 has type (is type of:) E55 Type.
+[Scope Note for E16 Measurement  CIDOC CRM version 5.1.2]
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#MeasurementUnit -->
+
+    <owl:Class rdf:about="&marinetlo;#MeasurementUnit">
+        <rdfs:label>MeasurementUnit</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class is a specialization of E55 Type and comprises the types of measurement units: feet, inches, centimetres, litres, lumens, etc. 
+
+This type is used categorically in the model without reference to instances of it, i.e. the Model does not foresee the description of instances of instances of E58 Measurement Unit, e.g.: “instances of cm”.
+
+Système International (SI) units or internationally recognized non-SI terms should be used whenever possible. (ISO 1000:1992). Archaic Measurement Units used in historical records should be preserved.
+ [Scope Note for E58 Measurement Unit CIDOC CRM version 5.1.2]
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#NonTargetByCatch -->
+
+    <owl:Class rdf:about="&marinetlo;#NonTargetByCatch">
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ByCatch"/>
+        <vs:term_status>testing</vs:term_status>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#NonTargetCatch -->
+
+    <owl:Class rdf:about="&marinetlo;#NonTargetCatch">
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Catch"/>
+        <vs:term_status>testing</vs:term_status>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#PersistentItem -->
+
+    <owl:Class rdf:about="&marinetlo;#PersistentItem">
+        <rdfs:label>PersistentItem</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineTLOEntity"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises items that have a persistent identity, sometimes known as “endurants” in philosophy. They can be repeatedly recognized within the duration of their existence by identity criteria rather than by continuity or observation. Persistent Items can be either physical entities, such as people, animals or things, or conceptual entities such as ideas, concepts, products of the imagination or common names.
+
+The criteria that determine the identity of an item are often difficult to establish -; the decision depends largely on the judgement of the observer. For example, a building is regarded as no longer existing if it is dismantled and the materials reused in a different configuration. On the other hand, human beings or biotic elements go through radical and profound changes during their life-span, affecting both material composition and form, yet preserve their identity by other criteria. Similarly, inanimate objects may be subject to exchange of parts and matter. The class BC10 Persistent Item does not take any position about the nature of the applicable identity criteria and if actual knowledge about identity of an instance of this class exists. There may be cases, where the identity of an BC10 Persistent Item is not decidable by a certain state of knowledge.
+The main classes of objects that fall outside the scope the BC10 Persistent Item class are temporal objects such as periods, events and acts, and descriptive properties. 
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#PersistentItemType -->
+
+    <owl:Class rdf:about="&marinetlo;#PersistentItemType">
+        <rdfs:label>Persistent Item Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineTLOEntityType"/>
+        <rdfs:comment xml:lang="en">This class comprises types items that have a persistent identity, sometimes known as “endurants” in philosophy. The items of this type  can be repeatedly recognized within the duration of their existence by identity criteria rather than by continuity or observation. These can be either types of  physical entities, such as people, animals or things, or conceptual entities such as ideas, concepts, products of the imagination or common names</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Person -->
+
+    <owl:Class rdf:about="&marinetlo;#Person">
+        <rdfs:label>Person</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Actor"/>
+        <rdfs:comment xml:lang="en">This class comprises real persons who live or are assumed to have lived. </rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#PhysicalManMadeThing -->
+
+    <owl:Class rdf:about="&marinetlo;#PhysicalManMadeThing">
+        <rdfs:label>Physical Man Made Thing</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ManMadeThings"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">
+This class comprises man-made objects, such as a swords, and man-made features, such as rock art. No assumptions are made as to the extent of modification required to justify regarding an object as man-made. For example, a “cup and ring” carving on bedrock is regarded as instance of E24 Physical Man-Made Thing. 
+
+[Scope Note for E24 Physical Man-Made Thing  CIDOC CRM version 5.1.2]
+
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#PhysicalThing -->
+
+    <owl:Class rdf:about="&marinetlo;#PhysicalThing">
+        <rdfs:label>Physical Thing</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PersistentItem"/>
+        <rdfs:comment xml:lang="en">This class comprises constellations of matter with a relative stability of any form sufficient to associate them with a persistent identity, such as being confined to certain extent, which (confinement) can have a relative stability of form or structure, or containing a fixed amount of matter. In particular, it comprises physical things in the narrower sense and fluid bodies. It is an abstraction of physical substance for solid and non-solid things of matter.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#PhysicalThingType -->
+
+    <owl:Class rdf:about="&marinetlo;#PhysicalThingType">
+        <rdfs:label>Physical Thing Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PersistentItemType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises types of constellations of matter with a relative stability of any form sufficient to associate them with a persistent identity, such as being confined to certain extent, having a relative stability of form or structure, or containing a fixed amount of matter. In particular, it comprises physical things in the narrower sense and fluid bodies. It is an abstraction of physical substance for solid and non-solid things of matter.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Place -->
+
+    <owl:Class rdf:about="&marinetlo;#Place">
+        <rdfs:label>Place</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineTLOEntity"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises extents in space, in particular on the surface of the earth, in the pure sense of physics: independent from temporal phenomena and matter. 
+
+The instances of E53 Place are usually determined by reference to the position of “immobile” objects such as buildings, cities, mountains, rivers, or dedicated geodetic marks. A Place can be determined by combining a frame of reference and a location with respect to this frame. It may be identified by one or more instances of E44 Place Appellation.
+
+ It is sometimes argued that instances of E53 Place are best identified by global coordinates or absolute reference systems. However, relative references are often more relevant in the context of cultural documentation and tend to be more precise. In particular, we are often interested in position in relation to large, mobile objects, such as ships. For example, the Place at which Nelson died is known with reference to a large mobile object – H.M.S Victory. A resolution of this Place in terms of absolute coordinates would require knowledge of the movements of the vessel and the precise time of death, either of which may be revised, and the result would lack historical and cultural relevance.
+
+Any object can serve as a frame of reference for E53 Place determination. The model foresees the notion of a &quot;section&quot; of an E19 Physical Object as a valid E53 Place determination.
+[Scope Note for E53 Place in CIDOC CRM version 5.1.2]
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Proposition -->
+
+    <owl:Class rdf:about="&marinetlo;#Proposition">
+        <rdfs:label>Proposition</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Appellation"/>
+        <rdfs:comment xml:lang="en">This class comprises immaterial items, including but not limited to scientific papers, plots, procedural prescriptions, algorithms, laws of physics or images that are, or represent in some sense, sets of propositions about real or imaginary things and that are documented as single units or serve as topic of discourse. This class also comprises items that are “about” something in the sense of a subject.  
+Specific subclasses of BC8 Proposition should be used when instances of BC8 Proposition of a characteristic type such as publication, etc are used for particular objects.
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Publication -->
+
+    <owl:Class rdf:about="&marinetlo;#Publication">
+        <rdfs:label>Publication</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <rdfs:comment xml:lang="en">This class comprises publication work.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#RepositoryObject -->
+
+    <owl:Class rdf:about="&marinetlo;#RepositoryObject">
+        <rdfs:label>Repository Object</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises data repositories of a set of integrated objects in computer science sense. These objects are modeled using structures defined in database schemas. Digital store includes not only data repositories like databases, it is a more general concept that includes also flat files that can store data. 
+A digital store may contain binary datasets: raw data, normalized data, intermediate data of processing steps, scenes composed from several datasets, presentation objects, 3D models, 2D-Images and any kind of digital document (text, multimedia). It comprises a notion of complex objects, having datasets as parts. The content of a digital store  is responsible for holding information about where data-files and their replicas can be found.
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ScientificActivityType -->
+
+    <owl:Class rdf:about="&marinetlo;#ScientificActivityType">
+        <rdfs:label>Scientific Activity Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#HumanActivityType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ScientificDataType -->
+
+    <owl:Class rdf:about="&marinetlo;#ScientificDataType">
+        <rdfs:label>Scientific Data Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObjectType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises the types of Scientific data which are produced by Scientific Activity.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Software -->
+
+    <owl:Class rdf:about="&marinetlo;#Software">
+        <rdfs:label>Software
+</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#DigitalObject"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises software codes, computer programs, procedures, and functions that are used to operate a system of digital objects.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#TargetByCatch -->
+
+    <owl:Class rdf:about="&marinetlo;#TargetByCatch">
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ByCatch"/>
+        <vs:term_status>testing</vs:term_status>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#TargetCatch -->
+
+    <owl:Class rdf:about="&marinetlo;#TargetCatch">
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Catch"/>
+        <vs:term_status>testing</vs:term_status>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#TemporalPhenomenon -->
+
+    <owl:Class rdf:about="&marinetlo;#TemporalPhenomenon">
+        <rdfs:label>Temporal Phenomenon</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineTLOEntity"/>
+        <rdfs:comment xml:lang="en">This class comprises all sets of phenomena, such as   Periods, Events and states, Ecosystems,   bounded in time and space. 
+It is the social or physical coherence of these phenomena that identify a BC4 Temporal Phenomenon and not the associated spatio-temporal bounds. These bounds are   approximations of the actual process of growth, spread and retreat. Consequently, different ecosystems   can overlap and coexist in time and space, such as when a nomadic culture exists in the same area as a sedentary culture.
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#TemporalPhenomenonType -->
+
+    <owl:Class rdf:about="&marinetlo;#TemporalPhenomenonType">
+        <rdfs:label>Temporal Phenomenon Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineTLOEntityType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises all types of phenomena, such as types of Periods, Events and states, which happen over a limited extent in time.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Time-Span -->
+
+    <owl:Class rdf:about="&marinetlo;#Time-Span">
+        <rdfs:label>Time-Span</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineTLOEntity"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises abstract temporal extents, in the sense of Galilean physics, having a beginning, an end and a duration. Time Span has no other semantic connotations. Time-Spans are used to define the temporal extent of   phenomena valid for a certain time.  
+[Scope Note for E52 Time Span in CIDOC CRM version 5.1.2]
+Instances of BC2 Time-Span can best be considered as approximations of the actual Time-Spans of temporal entities. The properties of BC2 Time-Span are intended to allow these approximations to be expressed precisely.
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Title -->
+
+    <owl:Class rdf:about="&marinetlo;#Title">
+        <rdfs:label>Title</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Appellation"/>
+        <rdfs:comment xml:lang="en">This class comprises the names assigned to works, such as texts, artworks or pieces of music. 
+
+Titles are proper noun phrases or verbal phrases, and should not be confused with generic object names such as “chair”, “painting” or “book” (the latter are common nouns that stand for instances of E55 Type). Titles may be assigned by the creator of the work itself, or by a social group. 
+
+This class also comprises the translations of titles that are used as surrogates for the original titles in different social contexts.
+
+[Scope Note for E35 Title  CIDOC CRM version 5.1.2]
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#VisualType -->
+
+    <owl:Class rdf:about="&marinetlo;#VisualType">
+        <rdfs:label>Visual Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObjectType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This metaclass comprises types of intellectual or conceptual aspects of recognizable marks and images.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#WaterArea -->
+
+    <owl:Class rdf:about="&marinetlo;#WaterArea">
+        <rdfs:label>Water Area</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#PhysicalThing"/>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Place"/>
+        <rdfs:comment xml:lang="en">This class comprises generic portions of the sea. A water area can be a statistical area, or an economic zone, or a geographic feature.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.w3.org/2000/01/rdf-schema#Class -->
+
+    <owl:Class rdf:about="&rdfs;Class"/>
+    
+
+
+    <!-- http://xmlns.com/foaf/0.1/Person -->
+
+    <owl:Class rdf:about="&foaf;Person"/>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Individuals
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://creativecommons.org/licenses/by/3.0/ -->
+
+    <owl:NamedIndividual rdf:about="http://creativecommons.org/licenses/by/3.0/"/>
+    
+
+
+    <!-- http://users.ics.forth.gr/~fafalios/ -->
+
+    <owl:NamedIndividual rdf:about="http://users.ics.forth.gr/~fafalios/">
+        <rdf:type rdf:resource="&foaf;Person"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://users.ics.forth.gr/~marketak/pages/aboutme.html -->
+
+    <owl:NamedIndividual rdf:about="http://users.ics.forth.gr/~marketak/pages/aboutme.html">
+        <rdf:type rdf:resource="&foaf;Person"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://users.ics.forth.gr/~tzitzik/ -->
+
+    <owl:NamedIndividual rdf:about="http://users.ics.forth.gr/~tzitzik/">
+        <rdf:type rdf:resource="&foaf;Person"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl -->
+
+    <owl:NamedIndividual rdf:about="http://www.ics.forth.gr/isl"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl -->
+
+    <owl:NamedIndividual rdf:about="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+</rdf:RDF>
+
+
+
+<!-- Generated by the OWL API (version 3.3.1957) http://owlapi.sourceforge.net -->
+
diff --git a/ontologies/marinetloimarine.owl b/ontologies/marinetloimarine.owl
new file mode 100644
index 0000000..ef666b2
--- /dev/null
+++ b/ontologies/marinetloimarine.owl
@@ -0,0 +1,1630 @@
+<?xml version="1.0"?>
+
+
+<!DOCTYPE rdf:RDF [
+    <!ENTITY dcterms "http://purl.org/dc/terms/" >
+    <!ENTITY foaf "http://xmlns.com/foaf/0.1/" >
+    <!ENTITY owl "http://www.w3.org/2002/07/owl#" >
+    <!ENTITY dc "http://purl.org/dc/elements/1.1/" >
+    <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
+    <!ENTITY skos "http://www.w3.org/2004/02/skos/core#" >
+    <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
+    <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
+    <!ENTITY vs "http://www.w3.org/2003/06/sw-vocab-status/ns#" >
+    <!ENTITY marinetlo "http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl" >
+    <!ENTITY marinetloimarine "http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl" >
+]>
+
+
+<rdf:RDF xmlns="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"
+     xml:base="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"
+     xmlns:dc="http://purl.org/dc/elements/1.1/"
+     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+     xmlns:foaf="http://xmlns.com/foaf/0.1/"
+     xmlns:marinetloimarine="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"
+     xmlns:owl="http://www.w3.org/2002/07/owl#"
+     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
+     xmlns:marinetlo="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"
+     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+     xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
+     xmlns:skos="http://www.w3.org/2004/02/skos/core#"
+     xmlns:dcterms="http://purl.org/dc/terms/">
+    <owl:Ontology rdf:about="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl">
+        <dcterms:issued rdf:datatype="&xsd;date">2013-10-15</dcterms:issued>
+        <dcterms:modified rdf:datatype="&xsd;date">2014-04-22</dcterms:modified>
+        <owl:versionInfo rdf:datatype="&xsd;decimal">3.0</owl:versionInfo>
+        <dcterms:contributor> Carlo Allocca </dcterms:contributor>
+        <dcterms:contributor> Nikos Minadakis </dcterms:contributor>
+        <dcterms:contributor> Martin Doerr </dcterms:contributor>
+        <dcterms:title>MarineTLO Ontology for iMarine Project</dcterms:title>
+        <dcterms:contributor> Julien Barde </dcterms:contributor>
+        <dcterms:creator> Martin Doerr </dcterms:creator>
+        <dcterms:creator> Chryssoula Bekiari </dcterms:creator>
+        <dcterms:rights>Copyright © FORTH ICS</dcterms:rights>
+        <dcterms:creator> Nikos Minadakis </dcterms:creator>
+        <dcterms:description>Extending MarineTLO - a top-level ontology for the marine domain used in the context of the EU iMarine project.</dcterms:description>
+        <dcterms:creator> Carlo Allocca </dcterms:creator>
+        <dcterms:license rdf:resource="http://creativecommons.org/licenses/by/3.0/"/>
+        <dcterms:contributor rdf:resource="http://users.ics.forth.gr/~fafalios/"/>
+        <dcterms:creator rdf:resource="http://users.ics.forth.gr/~fafalios/"/>
+        <dcterms:contributor rdf:resource="http://users.ics.forth.gr/~marketak/pages/aboutme.html"/>
+        <dcterms:creator rdf:resource="http://users.ics.forth.gr/~marketak/pages/aboutme.html"/>
+        <dcterms:creator rdf:resource="http://users.ics.forth.gr/~tzitzik/"/>
+        <dcterms:contributor rdf:resource="http://users.ics.forth.gr/~tzitzik/"/>
+        <dcterms:publisher rdf:resource="http://www.ics.forth.gr/isl"/>
+        <owl:versionIRI rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <owl:imports rdf:resource="&marinetlo;#"/>
+    </owl:Ontology>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Annotation properties
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    <owl:AnnotationProperty rdf:about="&vs;term_status"/>
+    <owl:AnnotationProperty rdf:about="&dcterms;publisher"/>
+    <owl:AnnotationProperty rdf:about="&dcterms;modified"/>
+    <owl:AnnotationProperty rdf:about="&dcterms;title"/>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Datatypes
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://www.w3.org/2001/XMLSchema#date -->
+
+    <rdfs:Datatype rdf:about="&xsd;date"/>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Object Properties
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#L10HadInput -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#L10HadInput">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment>This property associates an instance of BC56 Digital Measurement  Event with an instance of BC23 Digital Object which is the input used to specify the machine action.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#DigitalMeasurementEvent"/>
+        <rdfs:range rdf:resource="&marinetlo;#DigitalObject"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LC16isComposedOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LC16isComposedOf">
+        <rdfs:comment>This property allows instances of E18 Physical Thing to be analysed into component elements.
+
+Component elements, since they are themselves instances of E18 Physical Thing, may be further analysed into sub-components, thereby creating a hierarchy of part decomposition. An instance of E18 Physical Thing may be shared between multiple wholes, for example two buildings may share a common wall.
+
+This property is intended to describe specific components that are individually documented, rather than general aspects. Overall descriptions of the structure of an instance of E18 Physical Thing are captured by the P3 has note property.
+
+The instances of E57 Materials of which an item of E18 Physical Thing is composed should be documented using P45 consists of (is incorporated in).
+
+[Scope Note for P46 is composed of (forms part of)CIDOC CRM version 5.1.2]
+</rdfs:comment>
+        <rdfs:domain rdf:resource="&marinetlo;#PhysicalThing"/>
+        <rdfs:range rdf:resource="&marinetlo;#PhysicalThing"/>
+        <rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LCConsistsOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LCConsistsOf">
+        <rdfs:comment>This property identifies the instances of E57 Materials of which an instance of E18 Physical Thing is composed.
+
+All physical things consist of physical materials. P45 consists of (is incorporated in) allows the different Materials to be recorded. P45 consists of (is incorporated in) refers here to observed Material as opposed to the consumed raw material.
+
+A Material, such as a theoretical alloy, may not have any physical instances.
+Examples:	
+1) silver cup 232 (E22) consists of silver (E57)
+</rdfs:comment>
+        <rdfs:domain rdf:resource="&marinetlo;#D15RepositoryObject"/>
+        <rdfs:range rdf:resource="&marinetlo;#Dataset"/>
+        <rdfs:subPropertyOf rdf:resource="&owl;topObjectProperty"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LTusuallyFeedingOn -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LTusuallyFeedingOn"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LXusuallyIsBioticComponentOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LXusuallyIsBioticComponentOf">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#LXusuallyIsComponentOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#LXusuallyIsComponentOf">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#P9ConsistOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetlo;#P9ConsistOf">
+        <rdfs:comment>This property describes the decomposition of an instance of E4 Period into discrete, subsidiary periods.
+
+The sub-periods into which the period is decomposed form a logical whole - although the entire picture may not be completely known - and the sub-periods are constitutive of the general period.
+
+Examples:	
+1) Cretan Bronze Age (E4) consists of  Middle Minoan (E4)
+</rdfs:comment>
+        <rdfs:domain rdf:resource="&marinetlo;#Collection"/>
+        <rdfs:range rdf:resource="&marinetlo;#Collection"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#LTusuallyIsCompetitorOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#LTusuallyIsCompetitorOf">
+        <rdfs:subPropertyOf rdf:resource="&marinetlo;#LTusuallyFeedingOn"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#LX8hasLanguage -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#LX8hasLanguage">
+        <rdfs:label>LX8hasLanguage</rdfs:label>
+        <rdfs:comment>This property declares the Language of a BC18 Proposition.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#Language"/>
+        <rdfs:domain rdf:resource="&marinetlo;#Proposition"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#LXhasCodeType -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#LXhasCodeType">
+        <rdfs:label>LXhasCodeType</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#Identifier"/>
+        <rdfs:range rdf:resource="&marinetloimarine;#IdentifierType"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#LXrelatedAuthorshipAssigment -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#LXrelatedAuthorshipAssigment">
+        <rdfs:label>LXrelatedAuthorshipAssigment</rdfs:label>
+        <rdfs:comment xml:lang="en">This property describes the active participation of a Actor in an Activity.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#Actor"/>
+        <rdfs:domain rdf:resource="&marinetlo;#IdentifierAssignment"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#LXrelatedIdentifierAssignment -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#LXrelatedIdentifierAssignment">
+        <rdfs:label>LXrelatedIdentifierAssignment</rdfs:label>
+        <rdfs:comment xml:lang="en">This property indicates the type  of item to which an attribute or relation is assigned.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#IdentifierAssignment"/>
+        <rdfs:domain rdf:resource="&marinetlo;#MarineTLOEntityType"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#LXusuallyHasBioticComponentOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#LXusuallyHasBioticComponentOf">
+        <rdfs:label>LXusuallyHasBioticComponentOf</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#BioticElementType"/>
+        <rdfs:domain rdf:resource="&marinetlo;#Ecosystem"/>
+        <owl:inverseOf rdf:resource="&marinetlo;#LXusuallyIsBioticComponentOf"/>
+        <rdfs:subPropertyOf rdf:resource="&marinetloimarine;#LXusuallyHasComponentOf"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#LXusuallyHasComponentOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#LXusuallyHasComponentOf">
+        <rdfs:label>LXusuallyHasComponentOf</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#BioticElementType"/>
+        <rdfs:domain rdf:resource="&marinetlo;#Ecosystem"/>
+        <owl:inverseOf rdf:resource="&marinetlo;#LXusuallyIsComponentOf"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#P70IsDocumentedIn -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#P70IsDocumentedIn">
+        <rdfs:label>P70IsDocumentedIn</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment>This property describes the CRM Entities documented by instances of E31 Document.
+
+Documents may describe any conceivable entity, hence the link to the highest-level entity in the CRM hierarchy. This property is intended for cases where a reference is regarded as being of a documentary character, in the scholarly or scientific sense.
+Examples:	
+1) the British Museum catalogue (E31) documents the British Museum’s Collection (E78)
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#MarineTLOEntity"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#E31Document"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#RelatedAssignedAttribute -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#RelatedAssignedAttribute">
+        <rdfs:label>RelatedAssignedAttribute</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#AttributeAssignment"/>
+        <rdfs:domain rdf:resource="&marinetlo;#PhysicalThingType"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#discarded_by -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#discarded_by">
+        <rdfs:label>discarded_by</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#PhysicalThing"/>
+        <rdfs:range rdf:resource="&marinetloimarine;#FishingDiscardedExplanation"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#hasComponent -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#hasComponent">
+        <rdfs:subPropertyOf rdf:resource="&marinetloimarine;#hasPart"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#hasPart -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#hasPart">
+        <rdfs:domain rdf:resource="&marinetlo;#WaterArea"/>
+        <rdfs:range rdf:resource="&marinetlo;#WaterArea"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#isAssociatedWith -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#isAssociatedWith">
+        <rdfs:label>isAssociatedWith</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <owl:inverseOf rdf:resource="&marinetloimarine;#isAssociatedWith"/>
+        <rdfs:domain rdf:resource="&owl;Thing"/>
+        <rdfs:range rdf:resource="&owl;Thing"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#isComponentOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#isComponentOf">
+        <rdfs:label>isComponentOf</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:subPropertyOf rdf:resource="&marinetloimarine;#isPartOf"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#isEndemicTo -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#isEndemicTo">
+        <rdfs:label>isEndemicTo</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:subPropertyOf rdf:resource="&marinetlo;#LXusuallyIsBioticComponentOf"/>
+        <rdfs:domain rdf:resource="&marinetlo;#MarineAnimalType"/>
+        <rdfs:range rdf:resource="&marinetlo;#WaterArea"/>
+        <rdfs:range rdf:resource="&marinetloimarine;#Country"/>
+        <rdfs:range rdf:resource="&marinetloimarine;#MarineEcosystem"/>
+        <rdfs:subPropertyOf rdf:resource="&marinetloimarine;#isNativeAt"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#isExpressedIn -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#isExpressedIn">
+        <rdfs:label>isExpressedIn</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:range rdf:resource="&marinetloimarine;#CodificationSystem"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#CountryCodeAssignment"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#isExtirpatedFrom -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#isExtirpatedFrom">
+        <rdfs:label>isExtirpatedFrom</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#MarineAnimalType"/>
+        <rdfs:range rdf:resource="&marinetlo;#WaterArea"/>
+        <rdfs:range rdf:resource="&marinetloimarine;#Country"/>
+        <rdfs:range rdf:resource="&marinetloimarine;#MarineEcosystem"/>
+        <rdfs:subPropertyOf rdf:resource="&marinetloimarine;#isRelatedTo"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#isIntroducedAt -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#isIntroducedAt">
+        <rdfs:label>isIntroducedAt</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:subPropertyOf rdf:resource="&marinetlo;#LXusuallyIsBioticComponentOf"/>
+        <rdfs:domain rdf:resource="&marinetlo;#MarineAnimalType"/>
+        <rdfs:range rdf:resource="&marinetlo;#WaterArea"/>
+        <rdfs:range rdf:resource="&marinetloimarine;#Country"/>
+        <rdfs:range rdf:resource="&marinetloimarine;#MarineEcosystem"/>
+        <rdfs:subPropertyOf rdf:resource="&marinetloimarine;#isRelatedTo"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#isNativeAt -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#isNativeAt">
+        <rdfs:label>isNativeAt</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:subPropertyOf rdf:resource="&marinetlo;#LXusuallyIsBioticComponentOf"/>
+        <rdfs:domain rdf:resource="&marinetlo;#MarineAnimalType"/>
+        <rdfs:range rdf:resource="&marinetlo;#WaterArea"/>
+        <rdfs:range rdf:resource="&marinetloimarine;#Country"/>
+        <rdfs:range rdf:resource="&marinetloimarine;#MarineEcosystem"/>
+        <rdfs:subPropertyOf rdf:resource="&marinetloimarine;#isRelatedTo"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#isPartOf -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#isPartOf">
+        <rdfs:label>isPartOf</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:range rdf:resource="&marinetlo;#WaterArea"/>
+        <rdfs:domain rdf:resource="&marinetlo;#WaterArea"/>
+        <owl:inverseOf rdf:resource="&marinetloimarine;#hasPart"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#isReferedBy -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#isReferedBy">
+        <rdfs:label>isReferedBy</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:range rdf:resource="&marinetloimarine;#ReferenceResource"/>
+        <owl:inverseOf rdf:resource="&marinetloimarine;#isReferenceFor"/>
+        <rdfs:domain rdf:resource="&owl;Thing"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#isReferenceFor -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#isReferenceFor">
+        <rdfs:label>isReferenceFor</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#ReferenceResource"/>
+        <rdfs:range rdf:resource="&owl;Thing"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#isRelatedTo -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#isRelatedTo">
+        <rdfs:label>isRelatedTo</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:range rdf:resource="&owl;Thing"/>
+        <rdfs:domain rdf:resource="&owl;Thing"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#isUsedIn -->
+
+    <owl:ObjectProperty rdf:about="&marinetloimarine;#isUsedIn">
+        <rdfs:label>isUsedIn</rdfs:label>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#CommonNameAssignment"/>
+        <rdfs:range rdf:resource="&marinetloimarine;#Country"/>
+    </owl:ObjectProperty>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Data properties
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#URL -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#URL">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This property assigns Web URI to works, such as texts, artworks. </rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#ReferenceResource"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#accessedDate -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#accessedDate">
+        <rdfs:comment xml:lang="en">This property assigns the accessed data of a Webgraphy Citation. </rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#WebographyCitation"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#accessedFrom -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#accessedFrom">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This property assigns the accessed info  of a Webgraphy Citation. </rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#WebographyCitation"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#assignedCode -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#assignedCode">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This property assigns a code/identifier to a Water Area. </rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#MarineTLOEntity"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#assignedDate -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#assignedDate">
+        <rdfs:comment xml:lang="en">This property assigns the data of the event &quot;Identifier Assignment&quot; . </rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#IdentifierAssignment"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#assignedName -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#assignedName">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#NameAssignment"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#authorName -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#authorName">
+        <rdfs:comment xml:lang="en">This property assigns name of a reference resource. </rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#ReferenceResource"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#date -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#date">
+        <rdfs:comment xml:lang="en">This property assigns date of a reference resource. </rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#ReferenceResource"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#format -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#format">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This property assigns a format (e.g. pdf, word, etc) to a bibliography resource. </rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#BibliographyResource"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#hasAbbreviation -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#hasAbbreviation">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This property assigns the abbreviation of a country (e.g. GR, IT, FR, UK, etc). </rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#Country"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#hasLanguage -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#hasLanguage">
+        <rdfs:comment xml:lang="en">This property assigns the language related to MarineTLO Entity.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#BibliographyResource"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#CommonNameAssignment"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#inSource -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#inSource">
+        <rdfs:comment xml:lang="en">This property assigns the sourse in which a reference resource has been publishied. </rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#ReferenceResource"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#keyWords -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#keyWords">
+        <rdfs:comment xml:lang="en">This property assigns the key words describing a bibliography.</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#BibliographyResource"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#name -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#name">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This property assigns a name to a MarineTLO Entity.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#Actor"/>
+        <rdfs:domain rdf:resource="&marinetlo;#Ecosystem"/>
+        <rdfs:domain rdf:resource="&marinetlo;#WaterArea"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#CommonName"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#Country"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#publisher -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#publisher">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This property assignes the publisher&apos;s description related to a bibliography resource. </rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#BibliographyResource"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#reference -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#reference">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetlo;#Actor"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#remark -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#remark">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This property assigns note to a bibliography resource. </rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#BibliographyResource"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+        <rdfs:subPropertyOf rdf:resource="&owl;topDataProperty"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#right -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#right">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This property assigns the right associated with a bibliography resource.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#BibliographyResource"/>
+        <rdfs:range rdf:resource="&xsd;string"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#title -->
+
+    <owl:DatatypeProperty rdf:about="&marinetloimarine;#title">
+        <rdfs:comment xml:lang="en">This property assigns a title to works, such as texts, artworks or pieces of music. </rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+        <rdfs:domain rdf:resource="&marinetloimarine;#ReferenceResource"/>
+    </owl:DatatypeProperty>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Classes
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Actor -->
+
+    <owl:Class rdf:about="&marinetlo;#Actor">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises people, either individually or in groups, who have the potential to perform intentional actions for which they can be held responsible.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Appellation -->
+
+    <owl:Class rdf:about="&marinetlo;#Appellation">
+        <rdfs:comment xml:lang="en">This class comprises signs, either meaningful or not, or arrangements of signs following a specific syntax, that are used or can be used to refer to and identify a specific instance of some class or category within a certain context.
+Specific subclasses of BC7 Appellation should be used when instances of BC7 Appellation of a characteristic form or format are used for particular objects
+</rdfs:comment>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#AttributeAssignment -->
+
+    <owl:Class rdf:about="&marinetlo;#AttributeAssignment">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:comment xml:lang="en">This class comprises the actions of making assertions about properties of an object or any relation between two items or concepts. 
+
+This class allows the documentation of how the respective assignment came about, and whose opinion it was. All the attributes or properties assigned in such an action can also be seen as directly attached to the respective item or concept, possibly as a collection of contradictory values. All cases of properties in this model that are also described indirectly through an action are characterised as &quot;short cuts&quot; of this action. This redundant modelling of two alternative views is preferred because many implementations may have good reasons to model either the action or the short cut, and the relation between both alternatives can be captured by simple rules
+</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#BioticElementType -->
+
+    <owl:Class rdf:about="&marinetlo;#BioticElementType"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Collection -->
+
+    <owl:Class rdf:about="&marinetlo;#Collection"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ConceptualObject -->
+
+    <owl:Class rdf:about="&marinetlo;#ConceptualObject"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ConceptualObjectType -->
+
+    <owl:Class rdf:about="&marinetlo;#ConceptualObjectType">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Dataset -->
+
+    <owl:Class rdf:about="&marinetlo;#Dataset"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#DigitalObject -->
+
+    <owl:Class rdf:about="&marinetlo;#DigitalObject"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Ecosystem -->
+
+    <owl:Class rdf:about="&marinetlo;#Ecosystem"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#EcosystemType -->
+
+    <owl:Class rdf:about="&marinetlo;#EcosystemType">
+        <rdfs:subClassOf rdf:resource="&marinetlo;#EventsType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#EquipmentType -->
+
+    <owl:Class rdf:about="&marinetlo;#EquipmentType">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#EventsType -->
+
+    <owl:Class rdf:about="&marinetlo;#EventsType">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Identifier -->
+
+    <owl:Class rdf:about="&marinetlo;#Identifier">
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#IdentifierAssignment -->
+
+    <owl:Class rdf:about="&marinetlo;#IdentifierAssignment">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Language -->
+
+    <owl:Class rdf:about="&marinetlo;#Language">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#ManMadeObject -->
+
+    <owl:Class rdf:about="&marinetlo;#ManMadeObject"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#MarineAnimalType -->
+
+    <owl:Class rdf:about="&marinetlo;#MarineAnimalType"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#MarineTLOEntity -->
+
+    <owl:Class rdf:about="&marinetlo;#MarineTLOEntity"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#PhysicalThing -->
+
+    <owl:Class rdf:about="&marinetlo;#PhysicalThing"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#Proposition -->
+
+    <owl:Class rdf:about="&marinetlo;#Proposition"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#TemporalPhenomenon -->
+
+    <owl:Class rdf:about="&marinetlo;#TemporalPhenomenon"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl#WaterArea -->
+
+    <owl:Class rdf:about="&marinetlo;#WaterArea">
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#Area -->
+
+    <owl:Class rdf:about="&marinetloimarine;#Area">
+        <rdfs:label>Area</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#WaterArea"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#BibliographyResource -->
+
+    <owl:Class rdf:about="&marinetloimarine;#BibliographyResource">
+        <rdfs:label>Reference Resource</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#ReferenceResource"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#BibliographyResourceType -->
+
+    <owl:Class rdf:about="&marinetloimarine;#BibliographyResourceType">
+        <rdfs:label>Bibliography Resource Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObjectType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#BiologicalAttributeAssignment -->
+
+    <owl:Class rdf:about="&marinetloimarine;#BiologicalAttributeAssignment">
+        <rdfs:label>BiologicalAttributeAssignment</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#AttributeAssignment"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#CodificationSystem -->
+
+    <owl:Class rdf:about="&marinetloimarine;#CodificationSystem">
+        <rdfs:label>CodificationSystem</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#CommonName -->
+
+    <owl:Class rdf:about="&marinetloimarine;#CommonName">
+        <rdfs:label>Common Name</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Appellation"/>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Proposition"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#CommonNameAssignment -->
+
+    <owl:Class rdf:about="&marinetloimarine;#CommonNameAssignment">
+        <rdfs:label>CommonNameAssignment</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#NameAssignment"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#Country -->
+
+    <owl:Class rdf:about="&marinetloimarine;#Country">
+        <rdfs:label>Country</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#TemporalPhenomenon"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#CountryCodeAssignment -->
+
+    <owl:Class rdf:about="&marinetloimarine;#CountryCodeAssignment">
+        <rdfs:label>CountryCodeAssignment</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#IdentifierAssignment"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#DBpediaMarineAnimalType -->
+
+    <owl:Class rdf:about="&marinetloimarine;#DBpediaMarineAnimalType">
+        <rdfs:label>DBpediaMarineAnimalType</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineAnimalType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#DBpediaSpecies -->
+
+    <owl:Class rdf:about="&marinetloimarine;#DBpediaSpecies">
+        <rdfs:label>DBpediaSpecies</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#DBpediaMarineAnimalType"/>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#MarineSpecies"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#Division -->
+
+    <owl:Class rdf:about="&marinetloimarine;#Division">
+        <rdfs:label>Division</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#WaterArea"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#E31Document -->
+
+    <owl:Class rdf:about="&marinetloimarine;#E31Document">
+        <rdfs:label>E31Document</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#EEZCode -->
+
+    <owl:Class rdf:about="&marinetloimarine;#EEZCode">
+        <rdfs:label>EEZCode</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Identifier"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#EcoscopeMarineAnimalType -->
+
+    <owl:Class rdf:about="&marinetloimarine;#EcoscopeMarineAnimalType">
+        <rdfs:label>Ecoscope Marine Animal Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineAnimalType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#EcoscopeSpecies -->
+
+    <owl:Class rdf:about="&marinetloimarine;#EcoscopeSpecies">
+        <rdfs:label>Ecoscope Species</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#EcoscopeMarineAnimalType"/>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#MarineSpecies"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#EcosystemCodeAssignment -->
+
+    <owl:Class rdf:about="&marinetloimarine;#EcosystemCodeAssignment">
+        <rdfs:label>EcosystemCodeAssignment</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#IdentifierAssignment"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#ExclusiveEconomicZone -->
+
+    <owl:Class rdf:about="&marinetloimarine;#ExclusiveEconomicZone">
+        <rdfs:label>Exclusive Economic Zone</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#TemporalPhenomenon"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#FAOGearTypeIdentifier -->
+
+    <owl:Class rdf:about="&marinetloimarine;#FAOGearTypeIdentifier">
+        <rdfs:label>FAO Gear Type Identifier</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Identifier"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#FAOName -->
+
+    <owl:Class rdf:about="&marinetloimarine;#FAOName">
+        <rdfs:label>FAOName</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Appellation"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#FAOVesselTypeIdentifier -->
+
+    <owl:Class rdf:about="&marinetloimarine;#FAOVesselTypeIdentifier">
+        <rdfs:label>FAO Vessel Type Identifier</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Identifier"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#FLODMarineAnimalType -->
+
+    <owl:Class rdf:about="&marinetloimarine;#FLODMarineAnimalType">
+        <rdfs:label>FLOD Marine Animal Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineAnimalType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#FLODSpecies -->
+
+    <owl:Class rdf:about="&marinetloimarine;#FLODSpecies">
+        <rdfs:label>FLOD Species</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#FLODMarineAnimalType"/>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#MarineSpecies"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#FishBaseMarineAnimalType -->
+
+    <owl:Class rdf:about="&marinetloimarine;#FishBaseMarineAnimalType">
+        <rdfs:label>Fish Base Marine Animal Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineAnimalType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#FishBaseSpecies -->
+
+    <owl:Class rdf:about="&marinetloimarine;#FishBaseSpecies">
+        <rdfs:label>FishBase Species</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#FishBaseMarineAnimalType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#FishingDiscardedExplanation -->
+
+    <owl:Class rdf:about="&marinetloimarine;#FishingDiscardedExplanation">
+        <rdfs:label>Fishing Discarded Explanation</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#GearType -->
+
+    <owl:Class rdf:about="&marinetloimarine;#GearType">
+        <rdfs:label>Gear Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#EquipmentType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#GlobalStatisticLanding -->
+
+    <owl:Class rdf:about="&marinetloimarine;#GlobalStatisticLanding">
+        <rdfs:label>GlobalStatisticLanding</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#AttributeAssignment"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#IdentifierType -->
+
+    <owl:Class rdf:about="&marinetloimarine;#IdentifierType">
+        <rdfs:label>Identifier Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObjectType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#LengthProtocol -->
+
+    <owl:Class rdf:about="&marinetloimarine;#LengthProtocol">
+        <rdfs:label>Length Protocol</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObjectType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#MarineEcosystem -->
+
+    <owl:Class rdf:about="&marinetloimarine;#MarineEcosystem">
+        <rdfs:label>MarineEcosystem</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#Ecosystem"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#MarineSpecies -->
+
+    <owl:Class rdf:about="&marinetloimarine;#MarineSpecies">
+        <rdfs:label>Marine Species</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineAnimalType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#NameAssignment -->
+
+    <owl:Class rdf:about="&marinetloimarine;#NameAssignment">
+        <rdfs:label>NameAssignment</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#IdentifierAssignment"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#ReferenceResource -->
+
+    <owl:Class rdf:about="&marinetloimarine;#ReferenceResource">
+        <rdfs:label>Reference Resource</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#ScientificNameAssignment -->
+
+    <owl:Class rdf:about="&marinetloimarine;#ScientificNameAssignment">
+        <rdfs:label>ScientificNameAssignment</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#NameAssignment"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#StatisticIndicator -->
+
+    <owl:Class rdf:about="&marinetloimarine;#StatisticIndicator">
+        <rdfs:label>Statistic Indicator</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ConceptualObject"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#SubArea -->
+
+    <owl:Class rdf:about="&marinetloimarine;#SubArea">
+        <rdfs:label>Sub Area</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#WaterArea"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#SubDivision -->
+
+    <owl:Class rdf:about="&marinetloimarine;#SubDivision">
+        <rdfs:label>Sub Division</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#WaterArea"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#UpWellingEcosystem -->
+
+    <owl:Class rdf:about="&marinetloimarine;#UpWellingEcosystem">
+        <rdfs:label>UpWellingEcosystem</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#MarineEcosystem"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#Vessel -->
+
+    <owl:Class rdf:about="&marinetloimarine;#Vessel">
+        <rdfs:label>Vessel</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#ManMadeObject"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#VesselCodeAssignment -->
+
+    <owl:Class rdf:about="&marinetloimarine;#VesselCodeAssignment">
+        <rdfs:label>VesselCodeAssignment</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#IdentifierAssignment"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#VesselType -->
+
+    <owl:Class rdf:about="&marinetloimarine;#VesselType">
+        <rdfs:label>Vessel Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#EquipmentType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#WaterAreaCodeAssignment -->
+
+    <owl:Class rdf:about="&marinetloimarine;#WaterAreaCodeAssignment">
+        <rdfs:label>WaterAreaCodeAssignment</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#IdentifierAssignment"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#WebographyCitation -->
+
+    <owl:Class rdf:about="&marinetloimarine;#WebographyCitation">
+        <rdfs:label>Webography Citation</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#ReferenceResource"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#WoRMSMarineAnimalType -->
+
+    <owl:Class rdf:about="&marinetloimarine;#WoRMSMarineAnimalType">
+        <rdfs:label>WoRMS Marine Animal Type</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetlo;#MarineAnimalType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#WoRMSSpecies -->
+
+    <owl:Class rdf:about="&marinetloimarine;#WoRMSSpecies">
+        <rdfs:label>WoRMS Species</rdfs:label>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#MarineSpecies"/>
+        <rdfs:subClassOf rdf:resource="&marinetloimarine;#WoRMSMarineAnimalType"/>
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </owl:Class>
+    
+
+
+    <!-- http://www.w3.org/2000/01/rdf-schema#Class -->
+
+    <owl:Class rdf:about="&rdfs;Class"/>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Individuals
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    
+
+
+    <!-- http://creativecommons.org/licenses/by/3.0/ -->
+
+    <owl:NamedIndividual rdf:about="http://creativecommons.org/licenses/by/3.0/"/>
+    
+
+
+    <!-- http://users.ics.forth.gr/~fafalios/ -->
+
+    <rdf:Description rdf:about="http://users.ics.forth.gr/~fafalios/">
+        <rdf:type rdf:resource="&foaf;Person"/>
+    </rdf:Description>
+    
+
+
+    <!-- http://users.ics.forth.gr/~marketak/pages/aboutme.html -->
+
+    <rdf:Description rdf:about="http://users.ics.forth.gr/~marketak/pages/aboutme.html">
+        <rdf:type rdf:resource="&foaf;Person"/>
+    </rdf:Description>
+    
+
+
+    <!-- http://users.ics.forth.gr/~tzitzik/ -->
+
+    <rdf:Description rdf:about="http://users.ics.forth.gr/~tzitzik/">
+        <rdf:type rdf:resource="&foaf;Person"/>
+    </rdf:Description>
+    
+
+
+    <!-- http://www.fishbase.org/entity#Common_Female_Lenght -->
+
+    <owl:NamedIndividual rdf:about="http://www.fishbase.org/entity#Common_Female_Lenght"/>
+    
+
+
+    <!-- http://www.fishbase.org/entity#Common_Male_Unsexed_Lenght -->
+
+    <owl:NamedIndividual rdf:about="http://www.fishbase.org/entity#Common_Male_Unsexed_Lenght"/>
+    
+
+
+    <!-- http://www.fishbase.org/entity#Female_Lenght -->
+
+    <owl:NamedIndividual rdf:about="http://www.fishbase.org/entity#Female_Lenght"/>
+    
+
+
+    <!-- http://www.fishbase.org/entity#Female_Weight -->
+
+    <owl:NamedIndividual rdf:about="http://www.fishbase.org/entity#Female_Weight"/>
+    
+
+
+    <!-- http://www.fishbase.org/entity#Longevity_Captive -->
+
+    <owl:NamedIndividual rdf:about="http://www.fishbase.org/entity#Longevity_Captive"/>
+    
+
+
+    <!-- http://www.fishbase.org/entity#Longevity_Wild -->
+
+    <owl:NamedIndividual rdf:about="http://www.fishbase.org/entity#Longevity_Wild"/>
+    
+
+
+    <!-- http://www.fishbase.org/entity#Max_Male_Unsexed_Length -->
+
+    <owl:NamedIndividual rdf:about="http://www.fishbase.org/entity#Max_Male_Unsexed_Length"/>
+    
+
+
+    <!-- http://www.fishbase.org/entity#Max_Male_Unsexed_Weight -->
+
+    <owl:NamedIndividual rdf:about="http://www.fishbase.org/entity#Max_Male_Unsexed_Weight"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl -->
+
+    <owl:NamedIndividual rdf:about="http://www.ics.forth.gr/isl"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl -->
+
+    <owl:NamedIndividual rdf:about="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#DBpediaCode -->
+
+    <owl:NamedIndividual rdf:about="&marinetloimarine;#DBpediaCode">
+        <rdf:type rdf:resource="&marinetloimarine;#IdentifierType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#FAOCode -->
+
+    <owl:NamedIndividual rdf:about="&marinetloimarine;#FAOCode">
+        <rdf:type rdf:resource="&marinetloimarine;#IdentifierType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#IRDCode -->
+
+    <owl:NamedIndividual rdf:about="&marinetloimarine;#IRDCode">
+        <rdf:type rdf:resource="&marinetloimarine;#IdentifierType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#WoRMSCode -->
+
+    <owl:NamedIndividual rdf:about="&marinetloimarine;#WoRMSCode">
+        <rdf:type rdf:resource="&marinetloimarine;#IdentifierType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#article -->
+
+    <owl:NamedIndividual rdf:about="&marinetloimarine;#article">
+        <rdf:type rdf:resource="&marinetloimarine;#BibliographyResourceType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#book -->
+
+    <owl:NamedIndividual rdf:about="&marinetloimarine;#book">
+        <rdf:type rdf:resource="&marinetloimarine;#BibliographyResourceType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#bookChapter -->
+
+    <owl:NamedIndividual rdf:about="&marinetloimarine;#bookChapter">
+        <rdf:type rdf:resource="&marinetloimarine;#BibliographyResourceType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#journal -->
+
+    <owl:NamedIndividual rdf:about="&marinetloimarine;#journal">
+        <rdf:type rdf:resource="&marinetloimarine;#BibliographyResourceType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl#report -->
+
+    <owl:NamedIndividual rdf:about="&marinetloimarine;#report">
+        <rdf:type rdf:resource="&marinetloimarine;#BibliographyResourceType"/>
+    </owl:NamedIndividual>
+    
+
+
+    <!-- 
+    ///////////////////////////////////////////////////////////////////////////////////////
+    //
+    // Annotations
+    //
+    ///////////////////////////////////////////////////////////////////////////////////////
+     -->
+
+    <rdf:Description rdf:about="&marinetlo;#O21Triggers">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </rdf:Description>
+    <rdf:Description rdf:about="&marinetlo;#DigitalObjectType">
+        <vs:term_status>testing</vs:term_status>
+        <rdfs:isDefinedBy rdf:resource="http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl"/>
+    </rdf:Description>
+</rdf:RDF>
+
+
+
+<!-- Generated by the OWL API (version 3.3.1957) http://owlapi.sourceforge.net -->
+

ontologies/muto.rdf 215(+215 -0)

diff --git a/ontologies/muto.rdf b/ontologies/muto.rdf
new file mode 100644
index 0000000..09dbad4
--- /dev/null
+++ b/ontologies/muto.rdf
@@ -0,0 +1,215 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<rdf:RDF
+  xmlns:dc="http://purl.org/dc/elements/1.1/"
+  xmlns:dcterms="http://purl.org/dc/terms/"
+  xmlns:foaf="http://xmlns.com/foaf/0.1/"
+  xmlns:owl="http://www.w3.org/2002/07/owl#"	
+  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+  xmlns:sioc="http://rdfs.org/sioc/ns#"
+  xmlns:skos="http://www.w3.org/2004/02/skos/core#"
+  xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
+  <!-- /// OWL DL compliance statements /// -->
+  <!-- Annotation properties -->
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/description"/>
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/licence"/>
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/issued"/>
+  <owl:AnnotationProperty rdf:about="http://xmlns.com/foaf/0.1/homepage"/>
+  <owl:AnnotationProperty rdf:about="http://xmlns.com/foaf/0.1/depiction"/>
+  <!-- Classes -->
+  <owl:Class rdf:about="http://www.w3.org/2004/02/skos/core#Concept"/>
+  <owl:Class rdf:about="http://rdfs.org/sioc/ns#Item"/>
+  <owl:Class rdf:about="http://rdfs.org/sioc/ns#UserAccount"/>
+  <!-- Object properties -->
+  <owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#about"/>
+  <owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_creator"/>
+  <owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#creator_of"/>
+  <!-- Datatype properties -->
+  <owl:DatatypeProperty rdf:about="http://purl.org/dc/terms/created"/>
+  <owl:DatatypeProperty rdf:about="http://purl.org/dc/terms/modified"/>
+  <!-- /// MUTO Core ontology /// -->
+  <owl:Ontology rdf:about="http://purl.org/muto/core">
+    <dc:title>Modular Unified Tagging Ontology (MUTO)</dc:title>
+    <rdfs:label xml:lang="en">MUTO Core Ontology</rdfs:label>
+    <dc:description>The Modular and Unified Tagging Ontology (MUTO) is an ontology for tagging and folksonomies. It is based on a thorough review of earlier tagging ontologies and unifies core concepts in one consistent schema. It supports different forms of tagging, such as common, semantic, group, private, and automatic tagging, and is easily extensible.</dc:description>
+    <dc:creator>Steffen Lohmann</dc:creator>
+    <dcterms:issued>2011-11-16</dcterms:issued>
+    <dcterms:licence>http://creativecommons.org/licenses/by/3.0/</dcterms:licence>
+    <rdfs:seeAlso>http://purl.org/muto/core#</rdfs:seeAlso>
+    <foaf:homepage>http://purl.org/muto</foaf:homepage>
+    <foaf:depiction>http://purl.org/muto/core/muto-compact.png</foaf:depiction>
+    <foaf:depiction>http://purl.org/muto/core/muto-UML.png</foaf:depiction>
+    <owl:versionInfo>Version 1.0 - Global changes (compared to earlier versions): Some properties have been renamed; cardinality constraints in class descriptions (owl:Restriction) have been replaced by global cardinality constraints (owl:FunctionalProperty).</owl:versionInfo>
+  </owl:Ontology>
+  <!-- Classes -->
+  <owl:Class rdf:about="http://purl.org/muto/core#Tagging">
+    <rdfs:label xml:lang="en">Tagging</rdfs:label>
+    <rdfs:comment xml:lang="en">A tagging links a resource to a user account and one or more tags.</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/muto/core#PrivateTagging">
+    <rdfs:label xml:lang="en">Private Tagging</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://purl.org/muto/core#Tagging"/>
+    <rdfs:comment xml:lang="en">A private tagging is a tagging that is only visible to its creator (unless the creator has not granted access to others via muto:grantAccess). Every tagging that is not an instance of muto:PrivateTagging is public by default.</rdfs:comment>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/muto/core#Tag">
+    <rdfs:label xml:lang="en">Tag</rdfs:label>
+    <rdfs:comment xml:lang="en">A Tag consists of an arbitrary text label. Note that tags with the same label are NOT merged in the ontology.</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
+    <owl:versionInfo>Version 1.0: The owl:disjointWith statement was removed to make MUTO conform to OWL Lite (the statement is not essential in this case).</owl:versionInfo>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/muto/core#AutoTag">
+    <rdfs:label xml:lang="en">Automatic Tag</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://purl.org/muto/core#Tag"/>
+    <rdfs:comment xml:lang="en">An automatic tag is a tag that is automatically associated with a resource (e.g. by a tagging system), i.e. it is not entered by a human being.</rdfs:comment>
+    <owl:versionInfo>Version 1.0: muto:AutoTag was a subclass of muto:Tagging (called muto:autoTagging) in earlier versions. Defining it as a subclass of muto:Tag is more appropriate and allows for taggings that contain a combination of manually and automatically created tags.</owl:versionInfo>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:Class>
+  <!-- Object properties of class muto:Tagging -->
+  <owl:ObjectProperty rdf:about="http://purl.org/muto/core#hasTag">
+    <rdfs:label xml:lang="en">has tag</rdfs:label>
+    <rdfs:comment xml:lang="en">A tagging consists of a (theoretically unlimited) number of tags. A tagging may also consist of no tags, e.g. if the system allows its users to mark a resource first and add tags later.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://purl.org/muto/core#Tagging"/>
+    <rdfs:range rdf:resource="http://purl.org/muto/core#Tag"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/muto/core#tagOf">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+    <rdfs:label xml:lang="en">tag of</rdfs:label>
+    <rdfs:comment xml:lang="en">Every tag is linked to exactly one tagging. This results from the fact that tags with same labels are NOT merged in the ontology.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://purl.org/muto/core#Tag"/>
+    <rdfs:range rdf:resource="http://purl.org/muto/core#Tagging"/>
+    <owl:inverseOf rdf:resource="http://purl.org/muto/core#hasTag"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/muto/core#taggedResource">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+    <rdfs:label xml:lang="en">tagged resource</rdfs:label>
+    <rdfs:comment xml:lang="en">Every tagging is linked to exactly one resource. This can be any kind of resource (i.e. all subclasses of rdfs:Resource), including tags and taggings.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://purl.org/muto/core#Tagging"/>
+    <rdfs:subPropertyOf rdf:resource="http://rdfs.org/sioc/ns#about"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/muto/core#taggedWith">
+    <rdfs:label xml:lang="en">tagged with</rdfs:label>
+    <rdfs:comment xml:lang="en">A resource can have several taggings from different users. Tags are never directly linked to resources but can be inferred from the taggings.</rdfs:comment>
+    <rdfs:range rdf:resource="http://purl.org/muto/core#Tagging"/>
+    <owl:inverseOf rdf:resource="http://purl.org/muto/core#taggedResource"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/muto/core#hasCreator">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+    <rdfs:label xml:lang="en">has creator</rdfs:label>
+    <rdfs:comment xml:lang="en">Every tagging is linked to at most one user account. This property can be omitted for automatic taggings. In contrast to its superproperty sioc:has_creator, it is functional and with an explicit domain. Use sioc:member_of to define groups for group tagging or link to foaf:Agent, foaf:Person, or foaf:Group via sioc:account_of.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://purl.org/muto/core#Tagging"/>
+    <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+    <rdfs:subPropertyOf rdf:resource="http://rdfs.org/sioc/ns#has_creator"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/muto/core#creatorOf">
+    <rdfs:label xml:lang="en">creator of</rdfs:label>
+    <rdfs:comment xml:lang="en">A user account can have a (theoretically unlimited) number of taggings. Use sioc:member_of to define groups for group tagging or link to foaf:Agent, foaf:Person, or foaf:Group via sioc:account_of.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+    <rdfs:range rdf:resource="http://purl.org/muto/core#Tagging"/>
+    <rdfs:subPropertyOf rdf:resource="http://rdfs.org/sioc/ns#creator_of"/>
+    <owl:inverseOf rdf:resource="http://purl.org/muto/core#hasCreator"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/muto/core#grantAccess">
+    <rdfs:label xml:lang="en">grant access</rdfs:label>
+    <rdfs:comment xml:lang="en">A (usually private) tagging can be linked to one or more user accounts or user groups that should have access to it (apart from the creator). This property can also be used in public tagging to link a user account or user group to a tagging (e.g. if the creator of a tagging wants to suggest the tagging to another user).</rdfs:comment>
+    <rdfs:domain rdf:resource="http://purl.org/muto/core#Tagging"/>
+    <owl:versionInfo>Version 1.0: The range information has been removed for greater flexibility and OWL Lite conformance (no longer owl:unionOf). Classes from different vocabularies can now be used here - such as sioc:UserAccount, sioc:Usergroup, foaf:OnlineAccount, foaf:Group, or dcterms:Agent -, though we recommend the use of sioc:UserAccount or sioc:Usergroup to remain in the SIOC namespace.</owl:versionInfo>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/muto/core#hasAccess">
+    <rdfs:label xml:lang="en">has access</rdfs:label>
+    <rdfs:comment xml:lang="en">A user account or user group can have access to a private tagging from another user if the access is explicitly permitted by the creator of the tagging. This property can also be used in public tagging to link a user account or user group to a tagging (e.g. if the creator of a tagging has suggested the tagging to another user).</rdfs:comment>
+    <rdfs:range rdf:resource="http://purl.org/muto/core#Tagging"/>
+    <owl:inverseOf rdf:resource="http://purl.org/muto/core#grantAccess"/>
+    <owl:versionInfo>Version 1.0: see muto:grantAccess</owl:versionInfo>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:ObjectProperty>
+  <!-- Datatype properties of class muto:Tagging -->
+  <owl:DatatypeProperty rdf:about="http://purl.org/muto/core#taggingCreated">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+    <rdfs:label xml:lang="en">tagging created</rdfs:label>
+    <rdfs:comment xml:lang="en">Every tagging has exactly one creation date and time. The datatype of this property is xsd:dateTime (in contrast to its superproperty dcterms:created which has range rdfs:Literal).</rdfs:comment>
+    <rdfs:domain rdf:resource="http://purl.org/muto/core#Tagging"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
+    <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/created"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/muto/core#taggingModified">
+    <rdfs:label xml:lang="en">tagging modified</rdfs:label>
+    <rdfs:comment xml:lang="en">A tagging can have multiple modification dates, as the number of times a tagging can be edited (e.g. to add or remove tags) is theoretically unlimited. The datatype of this property is xsd:dateTime (in contrast to it superproperty dcterms:created which has range rdfs:Literal).</rdfs:comment>
+    <rdfs:domain rdf:resource="http://purl.org/muto/core#Tagging"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
+    <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/modified"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:DatatypeProperty>
+  <!-- Datatype properties of class muto:Tag -->
+  <owl:DatatypeProperty rdf:about="http://purl.org/muto/core#tagCreated">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+    <rdfs:label xml:lang="en">tag created</rdfs:label>
+    <rdfs:comment xml:lang="en">The creation date and time of a tag. This property can be omitted if muto:taggingCreated = muto:tagCreated (i.e. in the common case that a tag has been created along with a tagging, not in a later edit of the tagging). The datatype of this property is xsd:dateTime (in contrast to it superproperty dcterms:created which has range rdfs:Literal).</rdfs:comment>
+    <rdfs:domain rdf:resource="http://purl.org/muto/core#Tag"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
+    <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/created"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:DatatypeProperty>
+  <!-- Object properties of class muto:Tag -->
+  <owl:ObjectProperty rdf:about="http://purl.org/muto/core#tagMeaning">
+    <rdfs:label xml:lang="en">tag meaning</rdfs:label>
+    <rdfs:comment xml:lang="en">The meaning of a tag can be expressed by a link to a well-defined resource. This can be any resource that clarifies the meaning of the tag (e.g. some DBpedia resource).</rdfs:comment>
+    <rdfs:domain rdf:resource="http://purl.org/muto/core#Tag"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/muto/core#meaningOf">
+    <rdfs:label xml:lang="en">meaning of</rdfs:label>
+    <rdfs:comment xml:lang="en">The number of tags that can be linked to one and the same meaning is theoretically unlimited.</rdfs:comment>
+    <rdfs:range rdf:resource="http://purl.org/muto/core#Tag"/>
+    <owl:inverseOf rdf:resource="http://purl.org/muto/core#tagMeaning"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/muto/core#autoMeaning">
+    <rdfs:label xml:lang="en">automatic tag meaning</rdfs:label>
+    <rdfs:comment xml:lang="en">This subproperty indicates that the meaning of a tag has been automatically defined (e.g. by a tagging system), i.e. it has not been defined by a human being. The default case is disambiguation by users via muto:tagMeaning.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://purl.org/muto/core#Tag"/>
+    <rdfs:subPropertyOf rdf:resource="http://purl.org/muto/core#tagMeaning"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/muto/core#tagLabel">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+    <rdfs:label xml:lang="en">tag label</rdfs:label>
+    <rdfs:comment xml:lang="en">Every tag has exactly one label (usually the one given by the user) - otherwise it is not a tag. Additional labels can be defined in the resource that is linked via muto:tagMeaning.</rdfs:comment>
+    <owl:versionInfo>Version 1.0: The subproperty relation to rdfs:label has been removed for OWL DL conformance (rdfs:label is an annotation property and one cannot define subproperties for annotation properties in OWL DL).</owl:versionInfo>
+    <rdfs:domain rdf:resource="http://purl.org/muto/core#Tag"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/muto/core#nextTag">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+    <rdfs:label xml:lang="en">next tag</rdfs:label>
+    <rdfs:comment xml:lang="en">This property indicates the tag that follows next in the list of tags. It can be used to describe the order in which the tags have been entered by the user.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://purl.org/muto/core#Tag"/>
+    <rdfs:range rdf:resource="http://purl.org/muto/core#Tag"/>
+    <owl:versionInfo>Version 1.0: Earlier versions of MUTO defined a datatype property muto:tagPosition with integer values which has some drawbacks compared to this solution.</owl:versionInfo>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/muto/core#previousTag">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+    <rdfs:label xml:lang="en">previous tag</rdfs:label>
+    <rdfs:comment xml:lang="en">This property indicates the tag that is preceding in the list of tags. It can be used to describe the order in which the tags have been entered by the user.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://purl.org/muto/core#Tag"/>
+    <rdfs:range rdf:resource="http://purl.org/muto/core#Tag"/>
+    <owl:inverseOf rdf:resource="http://purl.org/muto/core#nextTag"/>
+    <owl:versionInfo>Version 1.0: see muto:nextTag</owl:versionInfo>
+	<rdfs:isDefinedBy rdf:resource="http://purl.org/muto/core#"/>	
+  </owl:ObjectProperty>
+</rdf:RDF>
diff --git a/ontologies/ontovibe/BenchmarkOntology.ttl b/ontologies/ontovibe/BenchmarkOntology.ttl
new file mode 100644
index 0000000..be9cc4a
--- /dev/null
+++ b/ontologies/ontovibe/BenchmarkOntology.ttl
@@ -0,0 +1,427 @@
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix dc: <http://purl.org/dc/elements/1.1/> .
+
+@prefix this: <http://ontovibe.visualdataweb.org#> .
+@prefix other: <http://ontovibe.visualdataweb.org/imported#> .
+
+<http://ontovibe.visualdataweb.org> a owl:Ontology ;
+
+# -- OWL Annotations
+
+	owl:versionInfo "2.2" ;
+	owl:versionIRI <http://ontovibe.visualdataweb.org/2.2> ;
+	owl:imports <http://ontovibe.visualdataweb.org/2.0/imported> ;
+	owl:priorVersion <http://ontovibe.visualdataweb.org/2.1> ;
+	owl:backwardCompatibleWith <http://ontovibe.visualdataweb.org/2.1> ;
+	owl:incompatibleWith <http://ontovibe.visualdataweb.org/minimal> ;
+
+# -- RDFS Annotations
+
+	rdfs:label "Ontology Visualization Benchmark (OntoViBe)" ;
+	rdfs:comment "OntoViBe is a benchmark for testing ontology visualizations. It incorporates a comprehensive set of OWL 2 language constructs and systematic combinations thereof." ;
+
+# -- DC Annotations
+	
+	dc:title "Ontology Visualization Benchmark (OntoViBe)" ;
+	dc:description "OntoViBe is a benchmark for testing ontology visualizations. It incorporates a comprehensive set of OWL 2 language constructs and systematic combinations thereof." ; 
+	dc:creator "Florian Haag" ;
+	dc:creator "Steffen Lohmann" ;
+	dc:contributor "Stefan Negru" ;	
+	dc:date "2015-08-27" ;
+	dc:rights <http://creativecommons.org/licenses/by/4.0/> .
+	
+# -- Classes
+
+this:PlainClass a owl:Class .
+
+this:DeprecatedClass a owl:Class ;
+	owl:deprecated true .
+
+this:Class1 a owl:Class.
+
+this:ComplementClass a owl:Class ;
+	owl:equivalentClass [
+		a owl:Class ;
+		owl:complementOf this:Class1
+	] .
+
+this:UnionClass a owl:Class ;
+	rdfs:comment "This is an English comment on a class expression."@en ;
+	owl:equivalentClass [
+		a owl:Class ;
+		owl:unionOf ( this:Class1 this:DeprecatedClass )
+	] .
+
+this:LargeUnionClass a owl:Class ;
+	owl:equivalentClass [
+		a owl:Class ;
+		owl:unionOf ( this:UnionClass other:ImportedClass this:PropertyOwner )
+	] .
+
+this:IntersectionClass a owl:Class ;
+	owl:equivalentClass [
+		a owl:Class ;
+		owl:intersectionOf ( this:Class1 this:DeprecatedClass )
+	] .
+
+this:LargeIntersectionClass a owl:Class ;
+	owl:equivalentClass [
+		a owl:Class ;
+		owl:intersectionOf ( this:UnionClass other:ImportedClass this:PropertyOwner )
+	] .
+
+this:DisjointUnionClass a owl:Class ;
+	owl:disjointUnionOf ( this:Class1 this:UnionClass ).
+
+this:LargeDisjointUnionClass a owl:Class ;
+	owl:disjointUnionOf ( this:ComplementClass this:IntersectionClass other:DeprecatedImportedClass ).
+
+this:EnumerationClass a owl:Class ;
+	owl:equivalentClass [
+		a owl:Class ;
+		owl:oneOf ( this:MultiSubclassIndividual2 this:MultiSubclassIndividual3 )
+	] .
+
+this:LargeEnumerationClass a owl:Class ;
+	owl:equivalentClass [
+		a owl:Class ;
+		owl:oneOf ( this:MultiSubclassIndividual2 this:MultiSubclassIndividual3 this:AnotherIndividual )
+	] .
+
+this:AnonymousClassAnchor a owl:Class .
+
+this:anonymousComplementClassProperty a owl:ObjectProperty ;
+	rdfs:domain this:AnonymousClassAnchor ;
+	rdfs:range [
+		a owl:Class ;
+		owl:complementOf this:DeprecatedClass
+	].
+
+this:anonymousUnionClassProperty a owl:ObjectProperty ;
+	rdfs:domain this:AnonymousClassAnchor ;
+	rdfs:range [
+		a owl:Class ;
+		owl:unionOf ( this:Class1 this:DeprecatedClass )
+	].
+
+this:anonymousIntersectionClassProperty a owl:ObjectProperty ;
+	rdfs:domain this:AnonymousClassAnchor ;
+	rdfs:range [
+		a owl:Class ;
+		owl:intersectionOf ( this:Class1 this:DeprecatedClass )
+	].
+
+this:anonymousEnumerationClassProperty a owl:ObjectProperty ;
+	rdfs:domain this:AnonymousClassAnchor ;
+	rdfs:range [
+		a owl:Class ;
+		owl:oneOf ( this:MultiSubclassIndividual3 this:AnotherIndividual )
+	].
+
+this:PropertyOwnerType a owl:Class .
+
+this:PropertyOwner a owl:Class ;
+	a this:PropertyOwnerType ;
+	rdfs:subClassOf [
+		owl:onProperty this:customTypeDatatypeProperty ;
+		owl:cardinality 2
+	];
+	rdfs:subClassOf [
+		owl:onProperty this:dummyProperty ;
+		owl:minQualifiedCardinality 3 ;
+		owl:onClass this:Subclass
+	] ;
+	rdfs:subClassOf [
+		owl:onProperty this:classToClassProperty ;
+		owl:cardinality 3
+	].
+
+this:MultiPropertyOwner a owl:Class ;
+	a this:PropertyOwnerType ;
+	rdfs:label "multi-property owner" ;
+	rdfs:comment "This is a comment without a language-tag on a class that also has a label." .
+
+this:DisjointClass a owl:Class ;
+	owl:disjointWith this:LargeUnionClass ;
+	rdfs:label "disjoint class"@en ;
+	rdfs:label "disjunkte Klasse"@de ;
+	rdfs:subClassOf [
+		owl:onProperty this:oppositeDummyProperty ;
+		owl:minCardinality 5
+	] ;
+	rdfs:subClassOf [
+		owl:onProperty this:oppositeDummyProperty ;
+		owl:maxCardinality 15
+	].
+
+_:DisjointClassGroup a owl:AllDisjointClasses ;
+	owl:members ( this:MultiPropertyOwner this:Class1 this:LargeUnionClass ) .
+
+this:Subclass a owl:Class ;
+	rdfs:subClassOf this:DisjointClass .
+
+this:MultiSubclass a owl:Class ;
+	rdfs:subClassOf this:DisjointClass ;
+	rdfs:subClassOf other:DeprecatedImportedClass ;
+	rdfs:comment "This is an English comment on a class that also has a description."@en ;
+	dc:description "This is an English description on a class that also has a comment."@en .
+
+this:SomeValuesFromClass a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:classToClassProperty ;
+		owl:someValuesFrom this:DeprecatedClass
+	].
+
+this:AllValuesFromClass a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:classToClassProperty ;
+		owl:allValuesFrom this:DeprecatedClass
+	].
+
+this:HasValueClass a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:classToClassProperty ;
+		owl:hasValue this:Class1Individual
+	].
+
+this:HasSelfClass a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:classToClassProperty ;
+		owl:hasSelf true
+	].
+
+this:EquivalentDeprecatedClass a owl:Class ;
+	owl:deprecated true ;
+	dc:description "This is an English description in a class that is part of an equivalent class group."@en .
+
+this:EquivalentToDeprecatedClass a owl:Class ;
+	owl:equivalentClass this:EquivalentDeprecatedClass .
+
+this:EquivalentDeprecatedClassInLargeGroup a owl:Class ;
+	owl:deprecated true .
+
+this:EquivalentClassInLargeGroup a owl:Class ;
+	owl:equivalentClass this:EquivalentDeprecatedClassInLargeGroup ;
+	owl:equivalentClass other:EquivalentImportedClassInLargeGroup .
+
+# -- Individuals
+
+this:Class1Individual a this:Class1 .
+
+this:MultiSubclassIndividual1 a this:MultiSubclass ;
+	rdfs:comment "This ia an English comment on an individual."@en .
+this:MultiSubclassIndividual2 a this:MultiSubclass .
+this:MultiSubclassIndividual3 a this:MultiSubclass ;
+	owl:differentFrom this:MultiSubclassIndividual2 ;
+	this:dummyProperty this:MultiSubclassIndividual1 ;
+	this:complementTypeDatatypeProperty 19 ;
+	dc:description "This is a description without a language on an individual." .
+
+this:AnotherIndividual a this:DeprecatedClass ;
+	rdfs:comment "This is an English comment on an individual that also has a description."@en ;
+	dc:description "This is an English description on an individual that also has a comment."@en .
+
+_:DifferentIndividualsGroup a owl:AllDifferent ;
+	owl:members ( this:AnotherIndividual this:MultiSubclassIndividual1 this:MultiSubclassIndividual2 ).
+
+this:SameAsMultiSubclassIndividual2 a this:MultiSubclass ;
+	owl:sameAs this:MultiSubclassIndividual2 .
+
+_:NegativeObjectPropertyAssertion a owl:NegativePropertyAssertion ;
+	owl:sourceIndividual this:MultiSubclassIndividual2 ;
+	owl:assertionProperty this:dummyProperty ;
+	owl:targetIndividual this:AnotherIndividual .
+
+_:NegativeDataPropertyAssertion a owl:NegativePropertyAssertion ;
+	owl:sourceIndividual this:MultiSubclassIndividual2 ;
+	owl:assertionProperty this:complementTypeDatatypeProperty ;
+	owl:targetValue 18 .
+
+# -- Datatypes
+
+this:DivisibleByTwoEnumeration a rdfs:Datatype ;
+	owl:equivalentClass [
+		a rdfs:Datatype ;
+		owl:oneOf ( 2 4 6 8 10 12 14 16 18 20 )
+	].
+
+this:DivisibleByFiveEnumeration a rdfs:Datatype ;
+	owl:equivalentClass [
+		a rdfs:Datatype ;
+		owl:oneOf ( 5 10 15 20 )
+	].
+
+this:UnionDatatype a rdfs:Datatype ;
+	owl:equivalentClass [
+		a rdfs:Datatype ;
+		owl:unionOf ( this:DivisibleByTwoEnumeration this:DivisibleByFiveEnumeration )
+	] .
+
+this:IntersectionDatatype a rdfs:Datatype ;
+	owl:equivalentClass [
+		a rdfs:Datatype ;
+		owl:intersectionOf ( this:DivisibleByTwoEnumeration this:DivisibleByFiveEnumeration )
+	] .
+
+this:ComplementDatatype a rdfs:Datatype ;
+	owl:equivalentClass [
+		a rdfs:Datatype ;
+		owl:datatypeComplementOf this:DivisibleByTwoEnumeration
+	] .
+
+# -- Properties
+
+this:untypedDatatypeProperty a owl:DatatypeProperty ;
+	rdfs:domain this:PropertyOwner .
+
+this:standardTypeDatatypeProperty a owl:DatatypeProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range xsd:integer .
+
+this:customTypeDatatypeProperty a owl:DatatypeProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range this:DivisibleByFiveEnumeration .
+
+this:unionTypeDatatypeProperty a owl:DatatypeProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range this:UnionDatatype ;
+	rdfs:comment "This is an English comment on a property."@en .
+
+this:intersectionTypeDatatypeProperty a owl:DatatypeProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range this:IntersectionDatatype .
+
+this:complementTypeDatatypeProperty a owl:DatatypeProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range this:ComplementDatatype ;
+	rdfs:label "complement-type datatype property" .
+	
+this:importedTypeDatatypeProperty a owl:DatatypeProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range other:DivisibleByThreeEnumeration ;
+	rdfs:label "imported type datatype property"@en ;
+	rdfs:label "propri\u00E9t\u00E9 d'un type de donn\u00E9es import\u00E9"@fr ;
+	rdfs:label "\u4E00\u79CD\u5BFC\u5165\u7C7B\u578B\u7684\u6570\u636E\u7C7B\u578B\u6027\u8D28"@zh-Hans .
+
+this:classToClassProperty a owl:ObjectProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range this:Class1 ;
+	dc:description "Esto es una descripci\u00F3n en espa\u00F1ol de una propiedad con descripciones en varias lenguas."@es ;
+	dc:description "This is an English description of a property with descriptions in several languages."@en .
+
+this:classToUntypedClassProperty a owl:SymmetricProperty ;
+	rdfs:domain this:PropertyOwner .
+
+this:untypedClassToClassProperty a owl:AsymmetricProperty ;
+	rdfs:range this:PropertyOwner .
+
+this:EquivalentToPropertyOwner a owl:Class ;
+	owl:equivalentClass this:PropertyOwner .
+
+this:EquivalentToSubclass a owl:Class ;
+	owl:equivalentClass this:Subclass .
+
+this:AlsoEquivalentToSubclass a owl:Class ;
+	owl:equivalentClass this:Subclass .
+
+this:cyclicProperty a owl:ObjectProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range this:PropertyOwner .
+
+this:cyclicProperty1 a owl:ObjectProperty ;
+	rdfs:domain this:MultiPropertyOwner ;
+	rdfs:range this:MultiPropertyOwner .
+
+_:HasSelfRestriction a owl:Restriction ;
+	owl:onProperty this:cyclicProperty1 ;
+	owl:hasSelf true .
+
+this:cyclicProperty2 a owl:ReflexiveProperty ;
+	rdfs:domain this:MultiPropertyOwner ;
+	rdfs:range this:MultiPropertyOwner ;
+	rdfs:comment "This is an English comment on a property that also has a non-English description."@en ;
+	dc:description "Dies ist eine deutsche Beschreibung einer Eigenschaft, die auch einen nicht in Deutsch verfassten Kommentar enth\u00E4lt."@de.
+
+this:cyclicProperty3 a owl:ObjectProperty ;
+	rdfs:domain this:MultiPropertyOwner ;
+	rdfs:range this:MultiPropertyOwner .
+
+this:classToClassProperty1 a owl:ObjectProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range this:MultiPropertyOwner .
+
+this:classToClassProperty2 a owl:IrreflexiveProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range this:MultiPropertyOwner .
+
+this:deprecatedDatatypeProperty a owl:DatatypeProperty ;
+	owl:deprecated true ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range xsd:date .
+
+this:deprecatedObjectProperty a owl:ObjectProperty ;
+	owl:deprecated true ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range owl:Thing .
+
+this:dummyProperty a owl:ObjectProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range this:DisjointClass .
+
+this:oppositeDummyProperty a owl:ObjectProperty ;
+	rdfs:domain this:DisjointClass ;
+	rdfs:range this:PropertyOwner .
+
+this:equivalentObjectProperty a owl:ObjectProperty ;
+	owl:equivalentProperty this:dummyProperty .
+
+this:subproperty a owl:ObjectProperty ;
+	rdfs:subPropertyOf this:deprecatedObjectProperty .
+
+this:realProperty a owl:DatatypeProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range owl:real .
+
+this:equivalentDataProperty a owl:DatatypeProperty ;
+	owl:equivalentProperty this:realProperty .
+
+this:anotherEquivalentDataProperty a owl:DatatypeProperty ;
+	owl:equivalentProperty this:equivalentDataProperty .
+
+this:rationalProperty a owl:DatatypeProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range owl:rational .
+
+this:FunctionalAnchor a owl:Class .
+
+this:functionalProperty a owl:FunctionalProperty , owl:ObjectProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range this:FunctionalAnchor .
+
+this:inverseFunctionalProperty a owl:InverseFunctionalProperty ;
+	rdfs:domain this:FunctionalAnchor ;
+	rdfs:range this:PropertyOwner .
+
+this:functionalPropertyAsInverse a owl:FunctionalProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range this:FunctionalAnchor ;
+	owl:inverseOf this:inverseFunctionalProperty .
+
+this:functionalDatatypeProperty a owl:FunctionalProperty , owl:DatatypeProperty ;
+	rdfs:domain this:FunctionalAnchor ;
+	rdfs:range xsd:hexBinary .
+
+this:disjointProperty a owl:ObjectProperty ;
+	owl:propertyDisjointWith this:functionalProperty ;
+	rdfs:domain this:PropertyOwner ;
+	rdfs:range this:FunctionalAnchor .
+
+_:DisjointPropertyGroup a owl:AllDisjointProperties ;
+	owl:members ( this:rationalProperty this:realProperty this:deprecatedDatatypeProperty ).
\ No newline at end of file
diff --git a/ontologies/ontovibe/BenchmarkOntologyModule.ttl b/ontologies/ontovibe/BenchmarkOntologyModule.ttl
new file mode 100644
index 0000000..1b35ed9
--- /dev/null
+++ b/ontologies/ontovibe/BenchmarkOntologyModule.ttl
@@ -0,0 +1,43 @@
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+@prefix this: <http://ontovibe.visualdataweb.org/imported#> .
+
+<http://ontovibe.visualdataweb.org/imported> a owl:Ontology ;
+	owl:versionInfo "2.0" ;
+	owl:versionIRI <http://ontovibe.visualdataweb.org/2.0/imported> ;
+	owl:priorVersion <http://ontovibe.visualdataweb.org/1.0/imported> ;
+	owl:backwardCompatibleWith <http://ontovibe.visualdataweb.org/1.0/imported> .
+
+this:ImportedClass a owl:Class .
+
+this:DeprecatedImportedClass a owl:Class ;
+	owl:deprecated true .
+
+this:EquivalentImportedClassInLargeGroup a owl:Class .
+
+this:DivisibleByThreeEnumeration a rdfs:Datatype ;
+	owl:equivalentClass [
+		a rdfs:Datatype ;
+		owl:oneOf ( 3 6 9 12 15 18 )
+	].
+
+this:importedObjectPropertyWithRange a owl:ObjectProperty ;
+	rdfs:range this:ImportedClass .
+
+this:importedObjectPropertyWithDomain a owl:TransitiveProperty ;
+	rdfs:domain this:ImportedClass .
+
+this:importedDatatypeProperty a owl:DatatypeProperty ;
+	rdfs:domain this:ImportedClass ;
+	rdfs:range xsd:integer .
+
+this:deprecatedImportedObjectProperty a owl:ObjectProperty ;
+	rdfs:range this:ImportedClass ;
+	owl:deprecated true .
+
+this:deprecatedImportedDatatypeProperty a owl:DatatypeProperty ;
+	rdfs:range xsd:date ;
+	owl:deprecated true .
\ No newline at end of file
diff --git a/ontologies/ontovibe/ontovibe_cardinalities.ttl b/ontologies/ontovibe/ontovibe_cardinalities.ttl
new file mode 100644
index 0000000..03676ab
--- /dev/null
+++ b/ontologies/ontovibe/ontovibe_cardinalities.ttl
@@ -0,0 +1,810 @@
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+@prefix this: <http://ontovibe.visualdataweb.org/cardinalities#> .
+
+<http://ontovibe.visualdataweb.org/cardinalities> a owl:Ontology ;
+	owl:versionIRI <http://ontovibe.visualdataweb.org/2.0/cardinalities> .
+
+# -- Unqualified Cardinalities
+
+this:Class1a a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:cardinalityAtDomain ] ;
+		owl:cardinality 1
+	] .
+this:Class2a a owl:Class .
+this:Class3a a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtRange ;
+		owl:cardinality 15
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:cardinalityAtDomainAndRange ] ;
+		owl:minCardinality 0
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:singleDatatypeProperty ;
+		owl:cardinality 3
+	] .
+this:Class4a a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtDomainAndRange ;
+		owl:minCardinality 1
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:cardinalityAtSameEnd1 ] ;
+		owl:minCardinality 13
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtSameEnd2 ;
+		owl:maxCardinality 1
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:doubleDatatypeProperty1 ;
+		owl:minCardinality 2
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:doubleDatatypeProperty2 ;
+		owl:cardinality 1
+	] .
+this:Class5a a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:cardinalityAtBothEnds1 ] ;
+		owl:maxCardinality 28
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtBothEnds2 ;
+		owl:minCardinality 0
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtBothEnds2 ;
+		owl:maxCardinality 1
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:parallelDatatypeProperty1 ;
+		owl:minCardinality 15
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:parallelDatatypeProperty1 ;
+		owl:maxCardinality 20
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:parallelDatatypeProperty2 ;
+		owl:minCardinality 15
+	] .
+this:Class6a a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtBothEnds1 ;
+		owl:minCardinality 0
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtBothEnds1 ;
+		owl:maxCardinality 19
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:cardinalityAtBothEnds2 ] ;
+		owl:minCardinality 1
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:cardinalityAtBothEnds2 ] ;
+		owl:maxCardinality 1
+	] .
+this:Class7a a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithCardinality ;
+		owl:minCardinality 1
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithCardinality ;
+		owl:maxCardinality 16
+	] .
+this:Class8a a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithSameCardinality1 ;
+		owl:minCardinality 8
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithSameCardinality1 ;
+		owl:maxCardinality 8
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:inverseWithSameCardinality2 ] ;
+		owl:minCardinality 8
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:inverseWithSameCardinality2 ] ;
+		owl:maxCardinality 8
+	] .
+this:Class9a a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithDifferentCardinality1 ;
+		owl:minCardinality 6
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithDifferentCardinality1 ;
+		owl:maxCardinality 7
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:inverseWithDifferentCardinality2 ] ;
+		owl:minCardinality 8
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:inverseWithDifferentCardinality2 ] ;
+		owl:maxCardinality 9
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:inverseWithBothCardinalities1 ] ;
+		owl:cardinality 7
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithBothCardinalities2 ;
+		owl:minCardinality 18
+	] .
+this:Class10a a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithBothCardinalities1 ;
+		owl:minCardinality 23
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithBothCardinalities1 ;
+		owl:maxCardinality 27
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:inverseWithBothCardinalities2 ] ;
+		owl:cardinality 2
+	] .
+this:Class11a a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:parallel1 ;
+		owl:cardinality 6
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:parallel2 ;
+		owl:maxCardinality 5
+	] .
+this:Class12a a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:propertyFromMultiSubClass ;
+		owl:maxCardinality 100
+	] .
+this:Class12aSub1 a owl:Class ;
+	rdfs:subClassOf this:Class12a ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:propertyFromMultiSubClass ;
+		owl:cardinality 80
+	] .
+this:Class12aSub2 a owl:Class ;
+	rdfs:subClassOf this:Class12a ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:propertyFromMultiSubClass ;
+		owl:cardinality 70
+	] .
+this:Class13a a owl:Class .
+this:Class13aSub a owl:Class ;
+	rdfs:subClassOf this:Class13a ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:propertyFromSubClass ;
+		owl:cardinality 99
+	] .
+this:Class14a a owl:Class .
+
+this:cardinalityAtDomain a owl:ObjectProperty ;
+	rdfs:domain this:Class1a ;
+	rdfs:range this:Class2a .
+
+this:cardinalityAtRange a owl:ObjectProperty ;
+	rdfs:domain this:Class2a ;
+	rdfs:range this:Class3a .
+
+this:cardinalityAtDomainAndRange a owl:ObjectProperty ;
+	rdfs:domain this:Class3a ;
+	rdfs:range this:Class4a .
+
+this:cardinalityAtSameEnd1 a owl:ObjectProperty ;
+	rdfs:domain this:Class4a ;
+	rdfs:range this:Class5a .
+
+this:cardinalityAtSameEnd2 a owl:ObjectProperty ;
+	rdfs:domain this:Class5a ;
+	rdfs:range this:Class4a .
+
+this:cardinalityAtBothEnds1 a owl:ObjectProperty ;
+	rdfs:domain this:Class5a ;
+	rdfs:range this:Class6a .
+
+this:cardinalityAtBothEnds2 a owl:ObjectProperty ;
+	rdfs:domain this:Class6a ;
+	rdfs:range this:Class5a .
+
+this:inverseWithCardinality a owl:ObjectProperty ;
+	rdfs:domain this:Class6a ;
+	rdfs:range this:Class7a .
+
+this:inverseWithoutCardinality a owl:ObjectProperty ;
+	rdfs:domain this:Class7a ;
+	rdfs:range this:Class6a ;
+	owl:inverseOf this:inverseWithCardinality .
+
+this:inverseWithSameCardinality1 a owl:ObjectProperty ;
+	rdfs:domain this:Class7a ;
+	rdfs:range this:Class8a .
+
+this:inverseWithSameCardinality2 a owl:ObjectProperty ;
+	rdfs:domain this:Class8a ;
+	rdfs:range this:Class7a ;
+	owl:inverseOf this:inverseWithSameCardinality1 .
+
+this:inverseWithDifferentCardinality1 a owl:ObjectProperty ;
+	rdfs:domain this:Class8a ;
+	rdfs:range this:Class9a .
+
+this:inverseWithDifferentCardinality2 a owl:ObjectProperty ;
+	rdfs:domain this:Class9a ;
+	rdfs:range this:Class8a ;
+	owl:inverseOf this:inverseWithDifferentCardinality1 .
+
+this:inverseWithBothCardinalities1 a owl:ObjectProperty ;
+	rdfs:domain this:Class9a ;
+	rdfs:range this:Class10a .
+
+this:inverseWithBothCardinalities2 a owl:ObjectProperty ;
+	rdfs:domain this:Class10a ;
+	rdfs:range this:Class9a ;
+	owl:inverseOf this:inverseWithBothCardinalities1 .
+
+this:parallel1 a owl:ObjectProperty ;
+	rdfs:domain this:Class10a ;
+	rdfs:range this:Class11a .
+
+this:parallel2 a owl:ObjectProperty ;
+	rdfs:domain this:Class10a ;
+	rdfs:range this:Class11a .
+
+this:propertyFromMultiSubClass a owl:ObjectProperty ;
+	rdfs:domain this:Class12a ;
+	rdfs:range this:Class13a .
+
+this:propertyFromSubClass a owl:ObjectProperty ;
+	rdfs:domain this:Class13a ;
+	rdfs:range this:Class14a .
+
+this:singleDatatypeProperty a owl:DatatypeProperty ;
+	rdfs:domain this:Class3a ;
+	rdfs:range rdfs:Literal .
+
+this:doubleDatatypeProperty1 a owl:DatatypeProperty ;
+	rdfs:domain this:Class4a ;
+	rdfs:range rdfs:Literal .
+
+this:doubleDatatypeProperty2 a owl:DatatypeProperty ;
+	rdfs:domain this:Class4a ;
+	rdfs:range rdfs:Literal .
+
+this:parallelDatatypeProperty1 a owl:DatatypeProperty ;
+	rdfs:domain this:Class5a ;
+	rdfs:range rdfs:Literal .
+
+this:parallelDatatypeProperty2 a owl:DatatypeProperty ;
+	rdfs:domain this:Class5a ;
+	rdfs:range rdfs:Literal .
+
+# -- Qualified Cardinalities
+
+this:Class1b a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:cardinalityAtDomain_qualified ] ;
+		owl:qualifiedCardinality 1 ;
+		owl:onClass this:Class2bSub
+	] .
+this:Class2b a owl:Class .
+this:Class2bSub a owl:Class ;
+	rdfs:subClassOf this:Class2b .
+this:Class3b a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtRange_qualified ;
+		owl:qualifiedCardinality 15 ;
+		owl:onClass this:Class2bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:cardinalityAtDomainAndRange_qualified ] ;
+		owl:minQualifiedCardinality 0 ;
+		owl:onClass this:Class4bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:singleDatatypeProperty_qualified ;
+		owl:qualifiedCardinality 10 ;
+		owl:onDataRange xsd:positiveInteger
+	] .
+this:Class3bSub a owl:Class ;
+	rdfs:subClassOf this:Class3b .
+this:Class4b a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtDomainAndRange_qualified ;
+		owl:minQualifiedCardinality 1 ;
+		owl:onClass this:Class3bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:cardinalityAtSameEnd1_qualified ] ;
+		owl:minQualifiedCardinality 13 ;
+		owl:onClass this:Class5bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtSameEnd2_qualified ;
+		owl:maxQualifiedCardinality 1 ;
+		owl:onClass this:Class5bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:doubleDatatypeProperty1_qualified ;
+		owl:minQualifiedCardinality 1 ;
+		owl:onDataRange xsd:short
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:doubleDatatypeProperty1_qualified ;
+		owl:maxQualifiedCardinality 4 ;
+		owl:onDataRange xsd:short
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:doubleDatatypeProperty2_qualified ;
+		owl:maxQualifiedCardinality 16 ;
+		owl:onDataRange xsd:negativeInteger
+	] .
+this:Class4bSub a owl:Class ;
+	rdfs:subClassOf this:Class4b .
+this:Class5b a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:cardinalityAtBothEnds1_qualified ] ;
+		owl:maxQualifiedCardinality 28 ;
+		owl:onClass this:Class6bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtBothEnds2_qualified ;
+		owl:minQualifiedCardinality 0 ;
+		owl:onClass this:Class6bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtBothEnds2_qualified ;
+		owl:maxQualifiedCardinality 1 ;
+		owl:onClass this:Class6bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:parallelDatatypeProperty1_qualified ;
+		owl:minQualifiedCardinality 1 ;
+		owl:onDataRange xsd:float
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:parallelDatatypeProperty1_qualified ;
+		owl:maxQualifiedCardinality 21 ;
+		owl:onDataRange xsd:float
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:parallelDatatypeProperty2_qualified ;
+		owl:minQualifiedCardinality 3 ;
+		owl:onDataRange xsd:float
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:parallelDatatypeProperty2_qualified ;
+		owl:maxQualifiedCardinality 6 ;
+		owl:onDataRange xsd:float
+	] .
+this:Class5bSub a owl:Class ;
+	rdfs:subClassOf this:Class5b .
+this:Class6b a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtBothEnds1_qualified ;
+		owl:minQualifiedCardinality 0 ;
+		owl:onClass this:Class5bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:cardinalityAtBothEnds1_qualified ;
+		owl:maxQualifiedCardinality 19 ;
+		owl:onClass this:Class5bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:cardinalityAtBothEnds2_qualified ] ;
+		owl:minQualifiedCardinality 1 ;
+		owl:onClass this:Class5bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:cardinalityAtBothEnds2_qualified ] ;
+		owl:maxQualifiedCardinality 1 ;
+		owl:onClass this:Class5bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:differentlyQualifiedDatatypeProperty_qualified ;
+		owl:qualifiedCardinality 4 ;
+		owl:onDataRange xsd:positiveInteger
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:differentlyQualifiedDatatypeProperty_qualified ;
+		owl:qualifiedCardinality 7 ;
+		owl:onDataRange xsd:negativeInteger
+	] .
+this:Class6bSub a owl:Class ;
+	rdfs:subClassOf this:Class6b .
+this:Class7b a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithCardinality_qualified ;
+		owl:minQualifiedCardinality 1 ;
+		owl:onClass this:Class6bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithCardinality_qualified ;
+		owl:maxQualifiedCardinality 16 ;
+		owl:onClass this:Class6bSub
+	] .
+this:Class7bSub a owl:Class ;
+	rdfs:subClassOf this:Class7b .
+this:Class8b a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithSameCardinality1_qualified ;
+		owl:minQualifiedCardinality 8 ;
+		owl:onClass this:Class7bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithSameCardinality1_qualified ;
+		owl:maxQualifiedCardinality 8 ;
+		owl:onClass this:Class7bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:inverseWithSameCardinality2_qualified ] ;
+		owl:minQualifiedCardinality 8 ;
+		owl:onClass this:Class7bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:inverseWithSameCardinality2_qualified ] ;
+		owl:maxQualifiedCardinality 8 ;
+		owl:onClass this:Class7bSub
+	] .
+this:Class8bSub a owl:Class ;
+	rdfs:subClassOf this:Class8b .
+this:Class9b a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithDifferentCardinality1_qualified ;
+		owl:minQualifiedCardinality 6 ;
+		owl:onClass this:Class8bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithDifferentCardinality1_qualified ;
+		owl:maxQualifiedCardinality 7 ;
+		owl:onClass this:Class8bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:inverseWithDifferentCardinality2_qualified ] ;
+		owl:minQualifiedCardinality 8 ;
+		owl:onClass this:Class8bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:inverseWithDifferentCardinality2_qualified ] ;
+		owl:maxQualifiedCardinality 9 ;
+		owl:onClass this:Class8bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:inverseWithBothCardinalities1_qualified ] ;
+		owl:qualifiedCardinality 7 ;
+		owl:onClass this:Class10bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithBothCardinalities2_qualified ;
+		owl:minQualifiedCardinality 18 ;
+		owl:onClass this:Class10bSub
+	] .
+this:Class9bSub a owl:Class ;
+	rdfs:subClassOf this:Class9b .
+this:Class10b a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithBothCardinalities1_qualified ;
+		owl:minQualifiedCardinality 23 ;
+		owl:onClass this:Class9bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:inverseWithBothCardinalities1_qualified ;
+		owl:maxQualifiedCardinality 27 ;
+		owl:onClass this:Class9bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:inverseWithBothCardinalities2_qualified ] ;
+		owl:qualifiedCardinality 2 ;
+		owl:onClass this:Class9bSub
+	] .
+this:Class10bSub a owl:Class ;
+	rdfs:subClassOf this:Class10b .
+this:Class11b a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:parallel1_qualified ;
+		owl:qualifiedCardinality 6 ;
+		owl:onClass this:Class10bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:parallel2_qualified ;
+		owl:maxQualifiedCardinality 5 ;
+		owl:onClass this:Class10bSub
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:differentlyQualifiedObjectProperty_qualified ] ;
+		owl:qualifiedCardinality 8 ;
+		owl:onClass this:Class12bSub1
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:differentlyQualifiedObjectProperty_qualified ] ;
+		owl:qualifiedCardinality 9 ;
+		owl:onClass this:Class12bSub2
+	] .
+this:Class12b a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:propertyFromMultiSubClass_qualified ;
+		owl:maxQualifiedCardinality 101 ;
+		owl:onClass this:Class13bSub
+	] .
+this:Class12bSub1 a owl:Class ;
+	rdfs:subClassOf this:Class12b ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:propertyFromMultiSubClass_qualified ;
+		owl:qualifiedCardinality 81 ;
+		owl:onClass this:Class13bSub
+	] .
+this:Class12bSub2 a owl:Class ;
+	rdfs:subClassOf this:Class12b ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:propertyFromMultiSubClass_qualified ;
+		owl:cardinality 71
+	] .
+this:Class13b a owl:Class .
+this:Class13bSub a owl:Class ;
+	rdfs:subClassOf this:Class13b ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty this:propertyFromSubClass_qualified ;
+		owl:qualifiedCardinality 98 ;
+		owl:onClass this:Class14bSub
+	] .
+this:Class14b a owl:Class .
+this:Class14bSub a owl:Class ;
+	owl:subClassOf this:Class14b .
+
+this:cardinalityAtDomain_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class1b ;
+	rdfs:range this:Class2b .
+
+this:cardinalityAtRange_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class2b ;
+	rdfs:range this:Class3b .
+
+this:cardinalityAtDomainAndRange_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class3b ;
+	rdfs:range this:Class4b .
+
+this:cardinalityAtSameEnd1_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class4b ;
+	rdfs:range this:Class5b .
+
+this:cardinalityAtSameEnd2_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class5b ;
+	rdfs:range this:Class4b .
+
+this:cardinalityAtBothEnds1_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class5b ;
+	rdfs:range this:Class6b .
+
+this:cardinalityAtBothEnds2_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class6b ;
+	rdfs:range this:Class5b .
+
+this:inverseWithCardinality_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class6b ;
+	rdfs:range this:Class7b .
+
+this:inverseWithoutCardinality_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class7b ;
+	rdfs:range this:Class6b ;
+	owl:inverseOf this:inverseWithCardinality .
+
+this:inverseWithSameCardinality1_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class7b ;
+	rdfs:range this:Class8b .
+
+this:inverseWithSameCardinality2_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class8b ;
+	rdfs:range this:Class7b ;
+	owl:inverseOf this:inverseWithSameCardinality1 .
+
+this:inverseWithDifferentCardinality1_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class8b ;
+	rdfs:range this:Class9b .
+
+this:inverseWithDifferentCardinality2_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class9b ;
+	rdfs:range this:Class8b ;
+	owl:inverseOf this:inverseWithDifferentCardinality1 .
+
+this:inverseWithBothCardinalities1_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class9b ;
+	rdfs:range this:Class10b .
+
+this:inverseWithBothCardinalities2_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class10b ;
+	rdfs:range this:Class9b ;
+	owl:inverseOf this:inverseWithBothCardinalities1 .
+
+this:parallel1_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class10b ;
+	rdfs:range this:Class11b .
+
+this:parallel2_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class10b ;
+	rdfs:range this:Class11b .
+
+this:propertyFromMultiSubClass_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class12b ;
+	rdfs:range this:Class13b .
+
+this:propertyFromSubClass_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class13b ;
+	rdfs:range this:Class14b .
+
+this:differentlyQualifiedObjectProperty_qualified a owl:ObjectProperty ;
+	rdfs:domain this:Class11b ;
+	rdfs:range this:Class12b .
+
+this:singleDatatypeProperty_qualified a owl:DatatypeProperty ;
+	rdfs:domain this:Class3b ;
+	rdfs:range rdfs:Literal .
+
+this:doubleDatatypeProperty1_qualified a owl:DatatypeProperty ;
+	rdfs:domain this:Class4b ;
+	rdfs:range rdfs:Literal .
+
+this:doubleDatatypeProperty2_qualified a owl:DatatypeProperty ;
+	rdfs:domain this:Class4b ;
+	rdfs:range rdfs:Literal .
+
+this:parallelDatatypeProperty1_qualified a owl:DatatypeProperty ;
+	rdfs:domain this:Class5b ;
+	rdfs:range rdfs:Literal .
+
+this:parallelDatatypeProperty2_qualified a owl:DatatypeProperty ;
+	rdfs:domain this:Class5b ;
+	rdfs:range rdfs:Literal .
+
+this:differentlyQualifiedDatatypeProperty_qualified a owl:DatatypeProperty ;
+	rdfs:domain this:Class6b ;
+	rdfs:range rdfs:Literal .
+
+# -- Mixed Cardinalities
+
+this:singleLinkMixedAnchor a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:singleLinkUnqualifiedProperty ] ;
+		owl:minCardinality 14
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:singleLinkQualifiedProperty ] ;
+		owl:maxQualifiedCardinality 16 ;
+		owl:onClass this:Class12bSub1
+	] .
+this:multiLinkMixedAnchor a owl:Class ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:multiLinkUnqualifiedProperty ] ;
+		owl:minCardinality 2
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:multiLinkQualifiedProperty ] ;
+		owl:minCardinality 4
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:multiLinkQualifiedProperty ] ;
+		owl:minQualifiedCardinality 2 ;
+		owl:onClass this:Class12bSub1
+	] ;
+	rdfs:subClassOf [
+		a owl:Restriction ;
+		owl:onProperty [ owl:inverseOf this:multiLinkQualifiedProperty ] ;
+		owl:maxQualifiedCardinality 3 ;
+		owl:onClass this:Class12bSub2
+	] .
+
+this:singleLinkUnqualifiedProperty a owl:ObjectProperty ;
+	rdfs:domain this:singleLinkMixedAnchor ;
+	rdfs:range this:Class10a .
+this:multiLinkUnqualifiedProperty a owl:ObjectProperty ;
+	rdfs:domain this:multiLinkMixedAnchor ;
+	rdfs:range this:Class10a .
+
+this:singleLinkQualifiedProperty a owl:ObjectProperty ;
+	rdfs:domain this:singleLinkMixedAnchor ;
+	rdfs:range this:Class12b .
+this:multiLinkQualifiedProperty a owl:ObjectProperty ;
+	rdfs:domain this:multiLinkMixedAnchor ;
+	rdfs:range this:Class12b .
\ No newline at end of file
diff --git a/ontologies/personasonto.owl b/ontologies/personasonto.owl
new file mode 100644
index 0000000..f349f47
--- /dev/null
+++ b/ontologies/personasonto.owl
@@ -0,0 +1,1935 @@
+<?xml version="1.0"?>
+
+
+<!DOCTYPE Ontology [
+    <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
+    <!ENTITY xml "http://www.w3.org/XML/1998/namespace" >
+    <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
+    <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
+]>
+
+
+<Ontology xmlns="http://www.w3.org/2002/07/owl#"
+     xml:base="http://blankdots.com/open/personasonto.owl"
+     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
+     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+     xmlns:xml="http://www.w3.org/XML/1998/namespace"
+     ontologyIRI="http://blankdots.com/open/personasonto.owl">
+    <Prefix name="" IRI="http://www.w3.org/2002/07/owl#"/>
+    <Prefix name="dc" IRI="http://purl.org/dc/elements/1.1/"/>
+    <Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
+    <Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
+    <Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/>
+    <Prefix name="foaf" IRI="http://xmlns.com/foaf/spec/index.rdf"/>
+    <Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/>
+    <Prefix name="foaf2" IRI="http://xmlns.com/foaf/0.1/"/>
+    <Import>http://protege.stanford.edu/plugins/owl/dc/protege-dc.owl</Import>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">PersonasOnto ontology incorporates concepts and properties used to model personas.</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">The PersonasOnto is depicts the personas domain along with relating concept and properties. A persona is regarded as a user archetype which can be used to &quot;help guide decisions about product features, navigation, interactions, and even visual design&quot; (Goodwin, 2005).
+
+This ontology wants to address some of the issues regarding this methodology like how personas are reconciled with other information and who is responsible for interpreting and validating them.</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="owl:versionInfo"/>
+        <Literal datatypeIRI="&xsd;dateTime">1.5</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="dc:rights"/>
+        <Literal datatypeIRI="&rdf;PlainLiteral">This ontology is distributed under Attribution-ShareAlike 3.0 Unported - http://creativecommons.org/licenses/by-sa/3.0/</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="dc:date"/>
+        <Literal datatypeIRI="&xsd;dateTime">2014-02-28</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="dc:creator"/>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Stefan Negru</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="rdfs:seeAlso"/>
+        <Literal datatypeIRI="&rdf;PlainLiteral">http://blankdots.com/open/schema</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="dc:contributor"/>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Sabin Buraga</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="dc:title"/>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">PersonasOnto</Literal>
+    </Annotation>
+    <Declaration>
+        <Class IRI="#AffectiveState"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#BusinessGoals"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Context"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Corporation"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#CustomerType"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#DevelopmentDisability"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Disability"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Document"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#EducationalOrganization"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Emotion"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#EndGoals"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#ExperienceGoals"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Feeling"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Goals"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#GovermentOrganization"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Group"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#GustatoryImpairment"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#HearingImpairment"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Image"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Intangible"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#IntellectualImpairment"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#InteractiveTask"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#LifeGoals"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#MediumBusiness"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#MentalEmotionalDisorder"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Mood"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#NGO"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#NegativeType"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#NonInteractiveTask"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Organization"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Participant"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Person"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Persona"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#PersonaType"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Personality"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Place"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#PrimaryType"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Product"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Resource"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Scenario"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#SecondaryType"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#ServedType"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#SmallBusiness"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#SomatosensoryImpairment"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#SportsTeam"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#SupplementalType"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Tangible"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Task"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#TechnicalGoals"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Time"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#UsabilityTest"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#VisualImpairment"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#dependsOn"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#depiction"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#depictsDocument"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#depictsImage"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#depictsProduct"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasAffectiveState"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasAffiliation"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasAward"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasBusinessGoal"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasContext"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasDisability"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasEndGoal"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasExperienceGoal"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasGoal"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasInfluence"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasInterest"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasLifeGoal"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasPersonaType"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasPersonality"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasPublications"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasReview"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasTask"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasTechnicalGoal"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasTopicOfInterest"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#includes"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#influencedBy"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#influences"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#involvedIn"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#isContextOf"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#isGoalOf"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#isMemberOf"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#isPartOfTest"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#isTaskFor"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#knows"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#performs"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#uses"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#age"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#birthday"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#details"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#experienceLevel"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#familyName"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#firstName"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#frustrationPoint"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#gender"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#interactionCount"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#location"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#mainPoint"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#maxBustSize"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#maxFeetSize"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#maxHeight"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#maxWaistSize"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#maxWeight"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#minBustSize"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#minFeetSize"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#minHeight"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#minWaistSize"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#minWeight"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#myerBriggs"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#scenarioName"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#sensorData"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#status"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#tagline"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#taskName"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#technicalLevel"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#title"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#userRole"/>
+    </Declaration>
+    <EquivalentClasses>
+        <Class IRI="#AffectiveState"/>
+        <ObjectSomeValuesFrom>
+            <ObjectProperty IRI="#influencedBy"/>
+            <Class IRI="#Personality"/>
+        </ObjectSomeValuesFrom>
+    </EquivalentClasses>
+    <EquivalentClasses>
+        <Class IRI="#Personality"/>
+        <ObjectSomeValuesFrom>
+            <ObjectProperty IRI="#influences"/>
+            <Class IRI="#AffectiveState"/>
+        </ObjectSomeValuesFrom>
+    </EquivalentClasses>
+    <SubClassOf>
+        <Class IRI="#AffectiveState"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#BusinessGoals"/>
+        <Class IRI="#Goals"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Context"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Corporation"/>
+        <Class IRI="#Organization"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#CustomerType"/>
+        <Class IRI="#PersonaType"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#DevelopmentDisability"/>
+        <Class IRI="#Disability"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Disability"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Document"/>
+        <Class IRI="#Resource"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#EducationalOrganization"/>
+        <Class IRI="#Organization"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Emotion"/>
+        <Class IRI="#AffectiveState"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#EndGoals"/>
+        <Class IRI="#Goals"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#ExperienceGoals"/>
+        <Class IRI="#Goals"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Feeling"/>
+        <Class IRI="#AffectiveState"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Goals"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#GovermentOrganization"/>
+        <Class IRI="#Organization"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Group"/>
+        <Class IRI="#Organization"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#GustatoryImpairment"/>
+        <Class IRI="#Disability"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#HearingImpairment"/>
+        <Class IRI="#Disability"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Image"/>
+        <Class IRI="#Resource"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Intangible"/>
+        <Class IRI="#Context"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#IntellectualImpairment"/>
+        <Class IRI="#Disability"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#InteractiveTask"/>
+        <Class IRI="#Task"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#LifeGoals"/>
+        <Class IRI="#Goals"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#MediumBusiness"/>
+        <Class IRI="#Organization"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#MentalEmotionalDisorder"/>
+        <Class IRI="#Disability"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Mood"/>
+        <Class IRI="#AffectiveState"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#NGO"/>
+        <Class IRI="#Organization"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#NegativeType"/>
+        <Class IRI="#PersonaType"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#NonInteractiveTask"/>
+        <Class IRI="#Task"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Organization"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Participant"/>
+        <Class IRI="#Person"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Person"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Persona"/>
+        <Class IRI="#Person"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#PersonaType"/>
+        <Class IRI="#Persona"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Personality"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Place"/>
+        <Class IRI="#Context"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#PrimaryType"/>
+        <Class IRI="#PersonaType"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Product"/>
+        <Class IRI="#Resource"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Resource"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Scenario"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#SecondaryType"/>
+        <Class IRI="#PersonaType"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#ServedType"/>
+        <Class IRI="#PersonaType"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#SmallBusiness"/>
+        <Class IRI="#Organization"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#SomatosensoryImpairment"/>
+        <Class IRI="#Disability"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#SportsTeam"/>
+        <Class IRI="#Organization"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#SupplementalType"/>
+        <Class IRI="#PersonaType"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Tangible"/>
+        <Class IRI="#Context"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Task"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#TechnicalGoals"/>
+        <Class IRI="#Goals"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Time"/>
+        <Class IRI="#Context"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#UsabilityTest"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#VisualImpairment"/>
+        <Class IRI="#Disability"/>
+    </SubClassOf>
+    <DisjointClasses>
+        <Class IRI="#AffectiveState"/>
+        <Class IRI="#Context"/>
+        <Class IRI="#Disability"/>
+        <Class IRI="#Goals"/>
+        <Class IRI="#Organization"/>
+        <Class IRI="#Person"/>
+        <Class IRI="#Personality"/>
+        <Class IRI="#Resource"/>
+        <Class IRI="#Scenario"/>
+        <Class IRI="#Task"/>
+        <Class IRI="#UsabilityTest"/>
+    </DisjointClasses>
+    <DisjointClasses>
+        <Class IRI="#Corporation"/>
+        <Class IRI="#EducationalOrganization"/>
+        <Class IRI="#GovermentOrganization"/>
+        <Class IRI="#Group"/>
+        <Class IRI="#MediumBusiness"/>
+        <Class IRI="#NGO"/>
+        <Class IRI="#SmallBusiness"/>
+        <Class IRI="#SportsTeam"/>
+    </DisjointClasses>
+    <DisjointClasses>
+        <Class IRI="#CustomerType"/>
+        <Class IRI="#NegativeType"/>
+        <Class IRI="#PrimaryType"/>
+        <Class IRI="#SecondaryType"/>
+        <Class IRI="#ServedType"/>
+        <Class IRI="#SupplementalType"/>
+    </DisjointClasses>
+    <DisjointClasses>
+        <Class IRI="#DevelopmentDisability"/>
+        <Class IRI="#GustatoryImpairment"/>
+        <Class IRI="#HearingImpairment"/>
+        <Class IRI="#IntellectualImpairment"/>
+        <Class IRI="#MentalEmotionalDisorder"/>
+        <Class IRI="#SomatosensoryImpairment"/>
+        <Class IRI="#VisualImpairment"/>
+    </DisjointClasses>
+    <DisjointClasses>
+        <Class IRI="#InteractiveTask"/>
+        <Class IRI="#NonInteractiveTask"/>
+    </DisjointClasses>
+    <SubObjectPropertyOf>
+        <ObjectProperty IRI="#depictsDocument"/>
+        <ObjectProperty IRI="#depiction"/>
+    </SubObjectPropertyOf>
+    <SubObjectPropertyOf>
+        <ObjectProperty IRI="#depictsImage"/>
+        <ObjectProperty IRI="#depiction"/>
+    </SubObjectPropertyOf>
+    <SubObjectPropertyOf>
+        <ObjectProperty IRI="#depictsProduct"/>
+        <ObjectProperty IRI="#depiction"/>
+    </SubObjectPropertyOf>
+    <SubObjectPropertyOf>
+        <ObjectProperty IRI="#hasBusinessGoal"/>
+        <ObjectProperty IRI="#hasGoal"/>
+    </SubObjectPropertyOf>
+    <SubObjectPropertyOf>
+        <ObjectProperty IRI="#hasEndGoal"/>
+        <ObjectProperty IRI="#hasGoal"/>
+    </SubObjectPropertyOf>
+    <SubObjectPropertyOf>
+        <ObjectProperty IRI="#hasExperienceGoal"/>
+        <ObjectProperty IRI="#hasGoal"/>
+    </SubObjectPropertyOf>
+    <SubObjectPropertyOf>
+        <ObjectProperty IRI="#hasLifeGoal"/>
+        <ObjectProperty IRI="#hasGoal"/>
+    </SubObjectPropertyOf>
+    <SubObjectPropertyOf>
+        <ObjectProperty IRI="#hasTechnicalGoal"/>
+        <ObjectProperty IRI="#hasGoal"/>
+    </SubObjectPropertyOf>
+    <InverseObjectProperties>
+        <ObjectProperty IRI="#isContextOf"/>
+        <ObjectProperty IRI="#hasContext"/>
+    </InverseObjectProperties>
+    <InverseObjectProperties>
+        <ObjectProperty IRI="#hasGoal"/>
+        <ObjectProperty IRI="#isGoalOf"/>
+    </InverseObjectProperties>
+    <InverseObjectProperties>
+        <ObjectProperty IRI="#isTaskFor"/>
+        <ObjectProperty IRI="#hasTask"/>
+    </InverseObjectProperties>
+    <InverseObjectProperties>
+        <ObjectProperty IRI="#influencedBy"/>
+        <ObjectProperty IRI="#influences"/>
+    </InverseObjectProperties>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#dependsOn"/>
+        <Class IRI="#Task"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#depiction"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#depictsDocument"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#depictsImage"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#depictsProduct"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasAffectiveState"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasAffiliation"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasAward"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasContext"/>
+        <Class IRI="#Scenario"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasDisability"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasGoal"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasInfluence"/>
+        <Class IRI="#Disability"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasInterest"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasPersonaType"/>
+        <ObjectUnionOf>
+            <Class IRI="#Participant"/>
+            <Class IRI="#Person"/>
+        </ObjectUnionOf>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasPersonality"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasPublications"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasReview"/>
+        <ObjectUnionOf>
+            <Class IRI="#Resource"/>
+            <Class IRI="#Scenario"/>
+            <Class IRI="#UsabilityTest"/>
+        </ObjectUnionOf>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasTask"/>
+        <Class IRI="#Scenario"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasTopicOfInterest"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#includes"/>
+        <ObjectUnionOf>
+            <Class IRI="#Intangible"/>
+            <Class IRI="#Tangible"/>
+        </ObjectUnionOf>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#influencedBy"/>
+        <Class IRI="#AffectiveState"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#influences"/>
+        <Class IRI="#Personality"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#involvedIn"/>
+        <Class IRI="#Participant"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#isContextOf"/>
+        <Class IRI="#Context"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#isGoalOf"/>
+        <Class IRI="#Goals"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#isMemberOf"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#isPartOfTest"/>
+        <ObjectUnionOf>
+            <Class IRI="#Participant"/>
+            <Class IRI="#Scenario"/>
+            <Class IRI="#Task"/>
+        </ObjectUnionOf>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#isTaskFor"/>
+        <Class IRI="#Task"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#knows"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#performs"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#uses"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#dependsOn"/>
+        <Class IRI="#Task"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#depiction"/>
+        <Class IRI="#Resource"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#depictsDocument"/>
+        <Class IRI="#Document"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#depictsImage"/>
+        <Class IRI="#Image"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#depictsProduct"/>
+        <Class IRI="#Product"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasAffectiveState"/>
+        <Class IRI="#AffectiveState"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasAffiliation"/>
+        <Class IRI="#Organization"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasAward"/>
+        <Class IRI="#Resource"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasBusinessGoal"/>
+        <Class IRI="#BusinessGoals"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasContext"/>
+        <Class IRI="#Context"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasDisability"/>
+        <Class IRI="#Disability"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasEndGoal"/>
+        <Class IRI="#EndGoals"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasExperienceGoal"/>
+        <Class IRI="#ExperienceGoals"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasGoal"/>
+        <Class IRI="#Goals"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasInfluence"/>
+        <ObjectUnionOf>
+            <Class IRI="#AffectiveState"/>
+            <Class IRI="#Personality"/>
+        </ObjectUnionOf>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasInterest"/>
+        <Class IRI="#Resource"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasLifeGoal"/>
+        <Class IRI="#LifeGoals"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasPersonaType"/>
+        <Class IRI="#PersonaType"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasPersonality"/>
+        <Class IRI="#Personality"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasPublications"/>
+        <Class IRI="#Document"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasReview"/>
+        <Class IRI="#Document"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasTask"/>
+        <Class IRI="#Task"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasTechnicalGoal"/>
+        <Class IRI="#TechnicalGoals"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasTopicOfInterest"/>
+        <Class IRI="#Resource"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#includes"/>
+        <ObjectUnionOf>
+            <Class IRI="#Place"/>
+            <Class IRI="#Time"/>
+        </ObjectUnionOf>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#influencedBy"/>
+        <Class IRI="#Personality"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#influences"/>
+        <Class IRI="#AffectiveState"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#involvedIn"/>
+        <ObjectUnionOf>
+            <Class IRI="#Scenario"/>
+            <Class IRI="#UsabilityTest"/>
+        </ObjectUnionOf>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#isContextOf"/>
+        <Class IRI="#Scenario"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#isGoalOf"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#isMemberOf"/>
+        <Class IRI="#Organization"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#isPartOfTest"/>
+        <Class IRI="#UsabilityTest"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#isTaskFor"/>
+        <Class IRI="#Scenario"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#knows"/>
+        <Class IRI="#Person"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#performs"/>
+        <Class IRI="#Task"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#uses"/>
+        <Class IRI="#Resource"/>
+    </ObjectPropertyRange>
+    <DisjointObjectProperties>
+        <ObjectProperty IRI="#hasBusinessGoal"/>
+        <ObjectProperty IRI="#hasEndGoal"/>
+        <ObjectProperty IRI="#hasExperienceGoal"/>
+        <ObjectProperty IRI="#hasLifeGoal"/>
+        <ObjectProperty IRI="#hasTechnicalGoal"/>
+    </DisjointObjectProperties>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#age"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#details"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#experienceLevel"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#familyName"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#firstName"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#gender"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#maxBustSize"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#maxFeetSize"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#maxHeight"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#maxWaistSize"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#maxWeight"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#minBustSize"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#minFeetSize"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#minHeight"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#minWaistSize"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#minWeight"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#myerBriggs"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#scenarioName"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#status"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#tagline"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#technicalLevel"/>
+    </FunctionalDataProperty>
+    <DataPropertyDomain>
+        <DataProperty IRI="#age"/>
+        <Class IRI="#Person"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#birthday"/>
+        <Class IRI="#Person"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#details"/>
+        <Class abbreviatedIRI="owl:Thing"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#experienceLevel"/>
+        <Class IRI="#Person"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#familyName"/>
+        <Class IRI="#Person"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#firstName"/>
+        <Class IRI="#Person"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#frustrationPoint"/>
+        <Class IRI="#Person"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#gender"/>
+        <Class IRI="#Person"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#interactionCount"/>
+        <Class IRI="#InteractiveTask"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#location"/>
+        <ObjectUnionOf>
+            <Class IRI="#Organization"/>
+            <Class IRI="#Place"/>
+        </ObjectUnionOf>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#mainPoint"/>
+        <Class IRI="#Person"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#maxBustSize"/>
+        <Class IRI="#Persona"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#maxFeetSize"/>
+        <Class IRI="#Persona"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#maxHeight"/>
+        <Class IRI="#Persona"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#maxWaistSize"/>
+        <Class IRI="#Persona"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#maxWeight"/>
+        <Class IRI="#Persona"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#minBustSize"/>
+        <Class IRI="#Persona"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#minFeetSize"/>
+        <Class IRI="#Persona"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#minHeight"/>
+        <Class IRI="#Persona"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#minWaistSize"/>
+        <Class IRI="#Persona"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#minWeight"/>
+        <Class IRI="#Persona"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#myerBriggs"/>
+        <Class IRI="#Personality"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#scenarioName"/>
+        <Class IRI="#Scenario"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#sensorData"/>
+        <Class IRI="#Context"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#status"/>
+        <Class IRI="#AffectiveState"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#tagline"/>
+        <Class IRI="#Persona"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#taskName"/>
+        <Class IRI="#Task"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#technicalLevel"/>
+        <Class IRI="#Person"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#title"/>
+        <Class IRI="#Person"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#userRole"/>
+        <Class IRI="#Participant"/>
+    </DataPropertyDomain>
+    <DataPropertyRange>
+        <DataProperty IRI="#age"/>
+        <Datatype abbreviatedIRI="xsd:float"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#birthday"/>
+        <Datatype abbreviatedIRI="xsd:dateTime"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#details"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#experienceLevel"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#familyName"/>
+        <Datatype abbreviatedIRI="xsd:string"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#firstName"/>
+        <Datatype abbreviatedIRI="xsd:string"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#frustrationPoint"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#gender"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#interactionCount"/>
+        <Datatype abbreviatedIRI="xsd:positiveInteger"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#location"/>
+        <Datatype abbreviatedIRI="xsd:string"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#mainPoint"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#maxBustSize"/>
+        <Datatype abbreviatedIRI="xsd:positiveInteger"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#maxFeetSize"/>
+        <Datatype abbreviatedIRI="xsd:positiveInteger"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#maxHeight"/>
+        <Datatype abbreviatedIRI="xsd:positiveInteger"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#maxWaistSize"/>
+        <Datatype abbreviatedIRI="xsd:positiveInteger"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#maxWeight"/>
+        <Datatype abbreviatedIRI="xsd:positiveInteger"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#minBustSize"/>
+        <Datatype abbreviatedIRI="xsd:positiveInteger"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#minFeetSize"/>
+        <Datatype abbreviatedIRI="xsd:positiveInteger"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#minHeight"/>
+        <Datatype abbreviatedIRI="xsd:positiveInteger"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#minWaistSize"/>
+        <Datatype abbreviatedIRI="xsd:positiveInteger"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#minWeight"/>
+        <Datatype abbreviatedIRI="xsd:positiveInteger"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#myerBriggs"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#scenarioName"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#sensorData"/>
+        <Datatype abbreviatedIRI="xsd:double"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#status"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#tagline"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#taskName"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#technicalLevel"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#title"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#userRole"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DisjointDataProperties>
+        <DataProperty IRI="#experienceLevel"/>
+        <DataProperty IRI="#technicalLevel"/>
+    </DisjointDataProperties>
+    <DisjointDataProperties>
+        <DataProperty IRI="#familyName"/>
+        <DataProperty IRI="#firstName"/>
+    </DisjointDataProperties>
+    <DisjointDataProperties>
+        <DataProperty IRI="#maxBustSize"/>
+        <DataProperty IRI="#maxFeetSize"/>
+        <DataProperty IRI="#maxHeight"/>
+        <DataProperty IRI="#maxWaistSize"/>
+        <DataProperty IRI="#maxWeight"/>
+        <DataProperty IRI="#minBustSize"/>
+        <DataProperty IRI="#minFeetSize"/>
+        <DataProperty IRI="#minHeight"/>
+        <DataProperty IRI="#minWaistSize"/>
+        <DataProperty IRI="#minWeight"/>
+    </DisjointDataProperties>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#AffectiveState</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The affective state of a person at a certain moment and in a certain Context.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#BusinessGoals</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Business goals represent the goals of the organization the persons works for.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Context</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The Context in which a scenario takes place.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Corporation</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A business corporation. </Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#CustomerType</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Are not the end user but the customer of the product, but might be the person making, buying decisions.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#DevelopmentDisability</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Any disability that related to growth and development problems.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Disability</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person’s disabilities mental and/or physical.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Document</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A paper or digital document (web-page, text document etc.).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#EducationalOrganization</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">An educational organization. </Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Emotion</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Emotion encompasses physiological, affective, behavioral, andcognitive components.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#EndGoals</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">End goals represent the user’s motivation for performing the tasks associated with using a specific product.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#ExperienceGoals</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Experience goals are simple, universal, and personal.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Feeling</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Feelings relate more to a property associated to and object or being, than to a person’s state of mind.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Goals</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The goals of a Persona. The goals are divided accordingly, depending on each persona type.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#GovermentOrganization</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A governmental organization or agency. </Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Group</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Any kind of (small or large) group a person might be part of (book club).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#GustatoryImpairment</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Impairment of the sense of smell and taste.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#HearingImpairment</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Conditions in which persons are fully or partially unable to detect or perceive at least some frequencies of sound.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Image</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">An image, which might be used to describe a product or person.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Intangible</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A context might be described by an Intangible enviroment (Operating System, Application etc. -- virtual world).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#IntellectualImpairment</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">This type of impairment ranges from mental retardation to cognitive deficits too mild or too specific.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#InteractiveTask</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">InteractiveTask could be certain action performed by a person (not too often by a machine).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#LifeGoals</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Life goals represent personal aspirations of the user that typically go beyond the context of the product being designed.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#MediumBusiness</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A particular medium sized business or branch of an organization. ( restaurant, medical practice etc.)</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#MentalEmotionalDisorder</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Any mental disorder/illness described as a psychological or behavioral pattern associated with distress or disability that occurs in an person.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Mood</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Are not directed at any object in particular and are experienced as more diffuse, global, and general state.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#NGO</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A Non-Governamental Organization.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#NegativeType</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Are used to remind and communicate, who is NOT the target of the design.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#NonInteractiveTask</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">NonInteractiveTask could be a machine response to that action.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Organization</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The type of Organization a Person belongs to.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Participant</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person that participates in the usability test. Usualy a participant has a diresct correspondent to a Persona type.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Person</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person represents an individual, most likely a human.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Persona</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">As a subclass of Person, the Persona class could be regarded of being a separate identity of a person, although it has the same usage.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#PersonaType</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Each Persona is classified by a PersonaType and a Person might fit into several PersonaTypes.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Personality</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The MyersBriggs personality of a person.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Place</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The appropriate Place which describes the Context. </Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#Place</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A Context might only be described by a certain Place.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#PrimaryType</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">&quot;The goal is to find a single persona from the set whose needs and goals can be completely and happily satisfied by a single interface without disenfranchising any of the other personas&quot;, About Face 2.0, Cooper, pg. 71. This is the Primary Persona Type</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Product</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A physical product or a digital product (Software Application).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Resource</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Type of resources available, physical or digital.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Scenario</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A series of tasks the user performs in a certain context.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#SecondaryType</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The secondary persona&apos;s goals and needs can mostly be met by focusing on the primary persona. Still, there are a few goals specific to them that are not a priority for the primary persona.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#ServedType</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Do not directly use the product you are designing but they are somehow affected by the system.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#SmallBusiness</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A particular small business like a local shop or market (usually under 5 employees).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#SomatosensoryImpairment</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Insensitivity to stimuli such as touch, heat, cold, and pain.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#SportsTeam</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A sports team (football, basketball, bowling etc.).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#SupplementalType</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Needs are completely satisfied by one of the primary interfaces yet they are part of the set or personas to ensure comprehensive representation.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Tangible</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A context might be described by an Tangible enviroment - real world.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Task</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Tasks performed by a Person in a Scenario.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#TechnicalGoals</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Technical goals reflect technical aspects regarding an application/product for example: run in a variety of browser, data privacy
+etc.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#Time</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The appropriate Time which describes the Context. </Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#Time</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A Context might only be described at a certain Time.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#UsabilityTest</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A usability test evaluates the usability of a certain Product in a Scenario.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#VisualImpairment</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Visual impairment refers to vision loss to such a degree as a person needs an additional support to get through its surroundings.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#age</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Age of a person.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#birthday</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Date of birth of a person.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#dependsOn</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The completion of a Task might depend on another Task, as several Tasks are part of a Scenario.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#depiction</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A certain resource might depict a/any thing.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#details</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Any kind of details.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#experienceLevel</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Reflects the experience level of a persona with the application
+or product; proposed levels: Beginner, Intermediate, Advanced.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#experienceLevel</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">It is different from technical level, because a person might be experienced in some product or application but does not have technical skills.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#familyName</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Family or Last name of a person.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#firstName</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">First or Given name of a person.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#frustrationPoint</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Elements of a UI/UX or certain characteristics that frustrate the user or (s)he sees as pain points.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#gender</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Gender of a person.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasAffectiveState</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person might have a certain affective state on a given moment or in a given context.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasAffiliation</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person might have a certain type of affiliation to an organization and might not be member of it.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasAward</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person might have been awarded with some sort of distinction (depicted usually by a trophy or document).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasContext</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A scenario is characterized by a certain context.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasDisability</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person might have a disability.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasGoal</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person might have one or more (short/long term) goals depending on the context.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasInfluence</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The disability of a person migh have an effect on the affective state or personality on the person.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasInterest</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person might be interested in a certain resource (product, application, document).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasPersonaType</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The type of Persona: Primary, Secondary, Negative, Supplemental, Served or Customer.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasPersonality</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person has a certain personality corresponding to Myers Briggs personality classification.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasPublications</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person (of academic, journalistic profession) has published several documents.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasReview</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A resource, scenario or usability test is described, reviewed via a document.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasTask</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A scenario has a set of tasks (or just one). (inverseproperty isTaskfor)</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#hasTopicOfInterest</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person might have a certain topic of interest which is correspondent to a cetain resource.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#includes</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">In order to describe context we consider the medium of interaction Tangible or Intangible which is included in a Place and/or Time.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#influencedBy</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The affective state of a person is influenced by the personality of that person. (inverse property influences)</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#influences</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The personality influences the affective state o a person.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#interactionCount</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A count of specific user actions (comments, facebook likes, tweets, etc.).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#involvedIn</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A participant (a certain user or observer) is involvedIn a scenario or Usability Test.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#isContextOf</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Inverse property of hasContext, isContextof represents the context belonging to a scenario.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#isGoalOf</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Inverse property of hasGoal, isGoalof represents the goal belonging to a person.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#isMemberOf</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person might be memeber of an organization.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#isPartOfTest</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Usability tests have participants (observers and users), tasks and a scenario.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#isTaskFor</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A certain task (or a series of tasks) is (are) part of a scenario.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#knows</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person knows another person (similar to FOAF ontology).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#location</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Geographic location (City/Country).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#mainPoint</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Main points are specific elements to each persona category.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#maxBustSize</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Maximum Bust Size.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#maxFeetSize</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Maximum Feet Size.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#maxHeight</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Maximum Height.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#maxWaistSize</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Maximum Waist Size.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#maxWeight</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Maximum Weight.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#minBustSize</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Minimum Bust Size.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#minFeetSize</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Minimum Feet Size.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#minHeight</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Minimum Height.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#minWaistSize</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Minimum Waist Size.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#minWeight</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Minimum Weight.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#myerBriggs</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Inspired by FOAF Myers Briggs personality classification which includes 16 4-letter textual codes.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#performs</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person performs a task in the usability test or when using a product/application.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#scenarioName</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The name of each scenario.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#sensorData</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Data recieved from a sensor (could be a number, temperature, etc.).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#status</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Marital status or a person.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#tagline</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A tagline specific to a persona.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#taskName</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A generic (short) name for a task.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#technicalLevel</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Reflects the technical level of a person.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#technicalLevel</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">If a person has technical or programming skills it&apos;s relevant.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#title</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Academic, professional or military prefix/suffix for a person. </Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#userRole</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">The role of the user in the application/product.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <IRI>#uses</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">A person makes use of a resource (document, image, product).</Literal>
+    </AnnotationAssertion>
+</Ontology>
+
+
+
+<!-- Generated by the OWL API (version 3.4.2) http://owlapi.sourceforge.net -->
+

ontologies/sioc.rdf 851(+851 -0)

diff --git a/ontologies/sioc.rdf b/ontologies/sioc.rdf
new file mode 100644
index 0000000..38e3df5
--- /dev/null
+++ b/ontologies/sioc.rdf
@@ -0,0 +1,851 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<rdf:RDF
+  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+  xmlns:owl="http://www.w3.org/2002/07/owl#"
+  xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
+  xmlns:foaf="http://xmlns.com/foaf/0.1/"
+  xmlns:wot="http://xmlns.com/wot/0.1/"
+  xmlns:dcterms="http://purl.org/dc/terms/"
+  xmlns:sioc="http://rdfs.org/sioc/ns#"
+>
+
+<!-- OWL-DL Compliance statements -->
+<!-- DC -->
+<rdf:Description rdf:about="http://purl.org/dc/terms/date">
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+</rdf:Description>
+<rdf:Description rdf:about="http://purl.org/dc/terms/title">
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+</rdf:Description>
+<rdf:Description rdf:about="http://purl.org/dc/terms/description">
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+  </rdf:Description>
+<rdf:Description rdf:about="http://purl.org/dc/terms/subject">
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+</rdf:Description>
+<rdf:Description rdf:about="http://purl.org/dc/terms/references">
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+</rdf:Description>
+<!-- FOAF -->
+<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/OnlineAccount">
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+</rdf:Description>
+<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Agent">
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+</rdf:Description>
+<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Document">
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#Class"/>
+</rdf:Description>
+<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/depiction">
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+</rdf:Description>
+<rdf:Description rdf:about="http://xmlns.com/foaf/0.1/account">
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+</rdf:Description>
+
+<!-- SIOC Core Ontology -->
+<owl:Ontology rdf:about="http://rdfs.org/sioc/ns#" rdf:type="http://www.w3.org/2002/07/owl#Thing">
+  <dcterms:title xml:lang="en">SIOC Core Ontology Namespace</dcterms:title>
+  <owl:versionInfo>Revision: 1.35</owl:versionInfo>
+  <dcterms:description xml:lang="en">SIOC (Semantically-Interlinked Online Communities) is an ontology for describing the information in online communities. 
+This information can be used to export information from online communities and to link them together. The scope of the application areas that SIOC can be used for includes (and is not limited to) weblogs, message boards, mailing lists and chat channels.</dcterms:description>
+  <rdfs:seeAlso rdf:resource="http://rdfs.org/sioc/spec" rdfs:label="SIOC Core Ontology Specification"/>
+</owl:Ontology>
+
+<!-- Classes -->
+<owl:Class rdf:about="http://rdfs.org/sioc/ns#Community">
+  <rdfs:label xml:lang="en">Community</rdfs:label>
+  <rdfs:comment xml:lang="en">Community is a high-level concept that defines an online community and what it consists of.</rdfs:comment>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Role"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+</owl:Class>
+
+<owl:Class rdf:about="http://rdfs.org/sioc/ns#Container">
+  <rdfs:label xml:lang="en">Container</rdfs:label>
+  <rdfs:comment xml:lang="en">An area in which content Items are contained.</rdfs:comment>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Role"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Usergroup"/>
+</owl:Class>
+
+<owl:Class rdf:about="http://rdfs.org/sioc/ns#Forum">
+  <rdfs:label xml:lang="en">Forum</rdfs:label>
+  <rdfs:comment xml:lang="en">A discussion area on which Posts or entries are made.</rdfs:comment>
+  <rdfs:subClassOf rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:Class>
+
+<owl:Class rdf:about="http://rdfs.org/sioc/ns#Item">
+  <rdfs:label xml:lang="en">Item</rdfs:label>
+  <rdfs:comment xml:lang="en">An Item is something which can be in a Container.</rdfs:comment>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Role"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Space"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Usergroup"/>
+</owl:Class>
+
+<owl:Class rdf:about="http://rdfs.org/sioc/ns#Post">
+  <rdfs:label xml:lang="en">Post</rdfs:label>
+  <rdfs:comment xml:lang="en">An article or message that can be posted to a Forum.</rdfs:comment>
+  <rdfs:subClassOf rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:Class>
+
+<owl:Class rdf:about="http://rdfs.org/sioc/ns#Role">
+  <rdfs:label xml:lang="en">Role</rdfs:label>
+  <rdfs:comment xml:lang="en">A Role is a function of a UserAccount within a scope of a particular Forum, Site, etc.</rdfs:comment>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Space"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Usergroup"/>
+</owl:Class>
+
+<owl:Class rdf:about="http://rdfs.org/sioc/ns#Space">
+  <rdfs:label xml:lang="en">Space</rdfs:label>
+  <rdfs:comment xml:lang="en">A Space is a place where data resides, e.g. on a website, desktop, fileshare, etc.</rdfs:comment>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Role"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Usergroup"/>
+</owl:Class>
+
+<owl:Class rdf:about="http://rdfs.org/sioc/ns#Site">
+  <rdfs:label xml:lang="en">Site</rdfs:label>
+  <rdfs:comment xml:lang="en">A Site can be the location of an online community or set of communities, with UserAccounts and Usergroups creating Items in a set of Containers. It can be thought of as a web-accessible data Space.</rdfs:comment>
+  <rdfs:subClassOf rdf:resource="http://rdfs.org/sioc/ns#Space"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:Class>
+
+<owl:Class rdf:about="http://rdfs.org/sioc/ns#Thread">
+  <rdfs:label xml:lang="en">Thread</rdfs:label>
+  <rdfs:comment xml:lang="en">A container for a series of threaded discussion Posts or Items.</rdfs:comment>
+  <rdfs:subClassOf rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:Class>
+
+<owl:Class rdf:about="http://rdfs.org/sioc/ns#UserAccount">
+  <rdfs:label xml:lang="en">User Account</rdfs:label>
+  <rdfs:comment xml:lang="en">A user account in an online community site.</rdfs:comment>
+  <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Role"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Space"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Usergroup"/>
+</owl:Class>
+
+<owl:Class rdf:about="http://rdfs.org/sioc/ns#Usergroup">
+  <rdfs:label xml:lang="en">Usergroup</rdfs:label>
+  <rdfs:comment xml:lang="en">A set of UserAccounts whose owners have a common purpose or interest. Can be used for access control purposes.</rdfs:comment>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Role"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Space"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+</owl:Class>
+
+<!-- Properties -->
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#about">
+  <rdfs:label xml:lang="en">about</rdfs:label>
+  <rdfs:comment xml:lang="en">Specifies that this Item is about a particular resource, e.g. a Post describing a book, hotel, etc.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#account_of">
+  <rdfs:label xml:lang="en">account of</rdfs:label>
+  <rdfs:comment xml:lang="en">Refers to the foaf:Agent or foaf:Person who owns this sioc:UserAccount.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:inverseOf rdf:resource="http://xmlns.com/foaf/0.1/account"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#addressed_to">
+  <rdfs:label xml:lang="en">addressed to</rdfs:label>
+  <rdfs:comment xml:lang="en">Refers to who (e.g. a UserAccount, e-mail address, etc.) a particular Item is addressed to.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<!-- @@todo: moving this property to the access module ? -->
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#administrator_of">
+  <rdfs:label xml:lang="en">administrator of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_administrator"/>
+  <rdfs:comment xml:lang="en">A Site that the UserAccount is an administrator of.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Site"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#attachment">
+  <rdfs:label xml:lang="en">attachment</rdfs:label>
+  <rdfs:comment xml:lang="en">The URI of a file attached to an Item.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#avatar">
+  <rdfs:label xml:lang="en">avatar</rdfs:label>
+  <rdfs:comment xml:lang="en">An image or depiction used to represent this UserAccount.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/depiction"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#container_of">
+  <rdfs:label xml:lang="en">container of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_container"/>
+  <rdfs:comment xml:lang="en">An Item that this Container contains.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#content">
+  <rdfs:label xml:lang="en">content</rdfs:label>
+  <rdfs:comment xml:lang="en">The content of the Item in plain text format.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#creator_of">
+  <rdfs:label xml:lang="en">creator of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_creator"/>
+  <rdfs:comment xml:lang="en">A resource that the UserAccount is a creator of.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:TransitiveProperty rdf:about="http://rdfs.org/sioc/ns#earlier_version">
+  <rdfs:comment xml:lang="en">Links to a previous (older) revision of this Item or Post.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <rdfs:label xml:lang="en">earlier version</rdfs:label>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#later_version"/>
+</owl:TransitiveProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#email">
+  <rdfs:label xml:lang="en">email</rdfs:label>
+  <rdfs:comment xml:lang="en">An electronic mail address of the UserAccount.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#email_sha1">
+  <rdfs:label xml:lang="en">email sha1</rdfs:label>
+  <rdfs:comment xml:lang="en">An electronic mail address of the UserAccount, encoded using SHA1.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#embeds_knowledge">
+  <rdfs:label xml:lang="en">embeds knowledge</rdfs:label>
+  <rdfs:comment xml:lang="en">This links Items to embedded statements, facts and structured content.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2004/03/trix/rdfg-1/Graph"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#feed">
+  <rdfs:label xml:lang="en">feed</rdfs:label>
+  <rdfs:comment xml:lang="en">A feed (e.g. RSS, Atom, etc.) pertaining to this resource (e.g. for a Forum, Site, UserAccount, etc.).</rdfs:comment>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#follows">
+  <rdfs:label xml:lang="en">follows</rdfs:label>
+  <rdfs:comment xml:lang="en">Indicates that one UserAccount follows another UserAccount (e.g. for microblog posts or other content item updates).</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<!-- @@todo: moving this property to the access module ? -->
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#function_of">
+  <rdfs:label xml:lang="en">function of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_function"/>
+  <rdfs:comment xml:lang="en">A UserAccount that has this Role.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Role"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_administrator">
+  <rdfs:label xml:lang="en">has administrator</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#administrator_of"/>
+  <rdfs:comment xml:lang="en">A UserAccount that is an administrator of this Site.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Site"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_container">
+  <rdfs:label xml:lang="en">has container</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#container_of"/>
+  <rdfs:comment xml:lang="en">The Container to which this Item belongs.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_creator">
+  <rdfs:label xml:lang="en">has creator</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#creator_of"/>
+  <rdfs:comment xml:lang="en">This is the UserAccount that made this resource.</rdfs:comment>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_discussion">
+  <rdfs:comment xml:lang="en">The discussion that is related to this Item.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <rdfs:label xml:lang="en">has discussion</rdfs:label>
+</owl:ObjectProperty>
+
+<!-- @@todo: moving this property to the access module ? -->
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_function">
+  <rdfs:label xml:lang="en">has function</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#function_of"/>
+  <rdfs:comment xml:lang="en">A Role that this UserAccount has.</rdfs:comment>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Role"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_host">
+  <rdfs:label xml:lang="en">has host</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#host_of"/>
+  <rdfs:comment xml:lang="en">The Site that hosts this Forum.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Forum"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Site"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_member">
+  <rdfs:label xml:lang="en">has member</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#member_of"/>
+  <rdfs:comment xml:lang="en">A UserAccount that is a member of this Usergroup.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Usergroup"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<!-- @@todo: moving this property to the access module ? -->
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_moderator">
+  <rdfs:label xml:lang="en">has moderator</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+  <rdfs:comment xml:lang="en">A UserAccount that is a moderator of this Forum.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Forum"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_modifier">
+  <rdfs:label xml:lang="en">has modifier</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#modifier_of"/>
+  <rdfs:comment xml:lang="en">A UserAccount that modified this Item.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_owner">
+  <rdfs:label xml:lang="en">has owner</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#owner_of"/>
+  <rdfs:comment xml:lang="en">A UserAccount that this resource is owned by.</rdfs:comment>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_parent">
+  <rdfs:label xml:lang="en">has parent</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#parent_of"/>
+  <rdfs:comment xml:lang="en">A Container or Forum that this Container or Forum is a child of.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_reply">
+  <rdfs:label xml:lang="en">has reply</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#reply_of"/>
+  <rdfs:subPropertyOf rdf:resource="http://rdfs.org/sioc/ns#related_to"/>
+  <rdfs:comment xml:lang="en">Points to an Item or Post that is a reply or response to this Item or Post.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<!-- @@todo: moving this property to the access module ? -->
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_scope">
+  <rdfs:label xml:lang="en">has scope</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#scope_of"/>
+  <rdfs:comment xml:lang="en">A resource that this Role applies to.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Role"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_space">
+  <rdfs:label xml:lang="en">has space</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#space_of"/>
+  <rdfs:comment xml:lang="en">A data Space which this resource is a part of.</rdfs:comment>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Space"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_subscriber">
+  <rdfs:label xml:lang="en">has subscriber</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#subscriber_of"/>
+  <rdfs:comment xml:lang="en">A UserAccount that is subscribed to this Container.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <rdfs:seeAlso rdf:resource="http://rdfs.org/sioc/ns#feed"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#has_usergroup">
+  <rdfs:label xml:lang="en">has usergroup</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#usergroup_of"/>
+  <rdfs:comment xml:lang="en">Points to a Usergroup that has certain access to this Space.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Space"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Usergroup"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#host_of">
+  <rdfs:label xml:lang="en">host of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_host"/>
+  <rdfs:comment xml:lang="en">A Forum that is hosted on this Site.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Site"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Forum"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#id">
+  <rdfs:label xml:lang="en">id</rdfs:label>
+  <rdfs:comment xml:lang="en">An identifier of a SIOC concept instance. For example, a user ID. Must be unique for instances of each type of SIOC concept within the same site.</rdfs:comment>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#ip_address">
+  <rdfs:label xml:lang="en">ip address</rdfs:label>
+  <rdfs:comment xml:lang="en">The IP address used when creating this Item. This can be associated with a creator. Some wiki articles list the IP addresses for the creator or modifiers when the usernames are absent.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#last_activity_date">
+  <rdfs:label xml:lang="en">last activity date</rdfs:label>
+  <rdfs:comment xml:lang="en">The date and time of the last activity associated with a SIOC concept instance, and expressed in ISO 8601 format. This could be due to a reply Post or Comment, a modification to an Item, etc.</rdfs:comment>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#last_item_date">
+  <rdfs:label xml:lang="en">last item date</rdfs:label>
+  <rdfs:comment xml:lang="en">The date and time of the last Post (or Item) in a Forum (or a Container), in ISO 8601 format.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#last_reply_date">
+  <rdfs:label xml:lang="en">last reply date</rdfs:label>
+  <rdfs:comment xml:lang="en">The date and time of the last reply Post or Comment, which could be associated with a starter Item or Post or with a Thread, and expressed in ISO 8601 format.</rdfs:comment>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/date"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:TransitiveProperty rdf:about="http://rdfs.org/sioc/ns#later_version">
+  <rdfs:comment xml:lang="en">Links to a later (newer) revision of this Item or Post.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <rdfs:label xml:lang="en">later version</rdfs:label>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#earlier_version"/>
+</owl:TransitiveProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#latest_version">
+  <rdfs:comment xml:lang="en">Links to the latest revision of this Item or Post.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <rdfs:label xml:lang="en">latest version</rdfs:label>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#link">
+  <rdfs:label xml:lang="en">link</rdfs:label>
+  <rdfs:comment xml:lang="en">A URI of a document which contains this SIOC object.</rdfs:comment>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#links_to">
+  <rdfs:label xml:lang="en">links to</rdfs:label>
+  <rdfs:comment xml:lang="en">Links extracted from hyperlinks within a SIOC concept, e.g. Post or Site.</rdfs:comment>
+  <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/references"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#member_of">
+  <rdfs:label xml:lang="en">member of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_member"/>
+  <rdfs:comment xml:lang="en">A Usergroup that this UserAccount is a member of.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Usergroup"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#moderator_of">
+  <rdfs:label xml:lang="en">moderator of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_moderator"/>
+  <rdfs:comment xml:lang="en">A Forum that a UserAccount is a moderator of.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Forum"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#modifier_of">
+  <rdfs:label xml:lang="en">modifier of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_modifier"/>
+  <rdfs:comment xml:lang="en">An Item that this UserAccount has modified.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#name">
+  <rdfs:label xml:lang="en">name</rdfs:label>
+  <rdfs:comment xml:lang="en">The name of a SIOC concept instance, e.g. a username for a UserAccount, group name for a Usergroup, etc.</rdfs:comment>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#next_by_date">
+  <rdfs:label xml:lang="en">next by date</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#previous_by_date"/>
+  <rdfs:comment xml:lang="en">Next Item or Post in a given Container sorted by date.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#next_version">
+  <rdfs:label xml:lang="en">next version</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#previous_version"/>
+  <rdfs:comment xml:lang="en">Links to the next revision of this Item or Post.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <rdfs:subPropertyOf rdf:resource="http://rdfs.org/sioc/ns#later_version"/>
+</owl:ObjectProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#note">
+  <rdfs:label xml:lang="en">note</rdfs:label>
+  <rdfs:comment xml:lang="en">A note associated with this resource, for example, if it has been edited by a UserAccount.</rdfs:comment>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#num_authors">
+  <rdfs:label xml:lang="en">num authors</rdfs:label>
+  <rdfs:comment xml:lang="en">The number of unique authors (UserAccounts and unregistered posters) who have contributed to this Item, Thread, Post, etc.</rdfs:comment>
+  <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#num_items">
+  <rdfs:label xml:lang="en">num items</rdfs:label>
+  <rdfs:comment xml:lang="en">The number of Posts (or Items) in a Forum (or a Container).</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#num_replies">
+  <rdfs:label xml:lang="en">num replies</rdfs:label>
+  <rdfs:comment xml:lang="en">The number of replies that this Item, Thread, Post, etc. has. Useful for when the reply structure is absent.</rdfs:comment>
+  <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#num_threads">
+  <rdfs:label xml:lang="en">num threads</rdfs:label>
+  <rdfs:comment xml:lang="en">The number of Threads (AKA discussion topics) in a Forum.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Forum"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:DatatypeProperty rdf:about="http://rdfs.org/sioc/ns#num_views">
+  <rdfs:label xml:lang="en">num views</rdfs:label>
+  <rdfs:comment xml:lang="en">The number of times this Item, Thread, UserAccount profile, etc. has been viewed.</rdfs:comment>
+  <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:DatatypeProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#owner_of">
+  <rdfs:label xml:lang="en">owner of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_owner"/>
+  <rdfs:comment xml:lang="en">A resource owned by a particular UserAccount, for example, a weblog or image gallery.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#parent_of">
+  <rdfs:label xml:lang="en">parent of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_parent"/>
+  <rdfs:comment xml:lang="en">A child Container or Forum that this Container or Forum is a parent of.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#previous_by_date">
+  <rdfs:label xml:lang="en">previous by date</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#next_by_date"/>
+  <rdfs:comment xml:lang="en">Previous Item or Post in a given Container sorted by date.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#previous_version">
+  <rdfs:label xml:lang="en">previous version</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#next_version"/>
+  <rdfs:comment xml:lang="en">Links to the previous revision of this Item or Post.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <rdfs:subPropertyOf rdf:resource="http://rdfs.org/sioc/ns#earlier_version"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#related_to">
+  <rdfs:label xml:lang="en">related to</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+  <rdfs:comment xml:lang="en">Related Posts for this Post, perhaps determined implicitly from topics or references.</rdfs:comment>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#reply_of">
+  <rdfs:label xml:lang="en">reply of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_reply"/>
+  <rdfs:subPropertyOf rdf:resource="http://rdfs.org/sioc/ns#related_to"/>
+  <rdfs:comment xml:lang="en">Links to an Item or Post which this Item or Post is a reply to.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<!-- @@todo: moving this property to the access module ? -->
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#scope_of">
+  <rdfs:label xml:lang="en">scope of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_scope"/>
+  <rdfs:comment xml:lang="en">A Role that has a scope of this resource.</rdfs:comment>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Role"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:SymmetricProperty rdf:about="http://rdfs.org/sioc/ns#sibling">
+  <rdfs:label xml:lang="en">sibling</rdfs:label>
+  <rdfs:comment xml:lang="en">An Item may have a sibling or a twin that exists in a different Container, but the siblings may differ in some small way (for example, language, category, etc.). The sibling of this Item should be self-describing (that is, it should contain all available information).</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:SymmetricProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#space_of">
+  <rdfs:label xml:lang="en">space of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_space"/>
+  <rdfs:comment xml:lang="en">A resource which belongs to this data Space.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Space"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#subscriber_of">
+  <rdfs:label xml:lang="en">subscriber of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_subscriber"/>
+  <rdfs:comment xml:lang="en">A Container that a UserAccount is subscribed to.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <rdfs:seeAlso rdf:resource="http://rdfs.org/sioc/ns#feed"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#topic">
+  <rdfs:label xml:lang="en">topic</rdfs:label>
+  <rdfs:comment xml:lang="en">A topic of interest, linking to the appropriate URI, e.g. in the Open Directory Project or of a SKOS category.</rdfs:comment>
+  <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/subject"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<owl:ObjectProperty rdf:about="http://rdfs.org/sioc/ns#usergroup_of">
+  <rdfs:label xml:lang="en">usergroup of</rdfs:label>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_usergroup"/>
+  <rdfs:comment xml:lang="en">A Space that the Usergroup has access to.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Usergroup"/>
+  <rdfs:range rdf:resource="http://rdfs.org/sioc/ns#Space"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+</owl:ObjectProperty>
+
+<!-- Deprecated -->
+
+<owl:DeprecatedClass rdf:about="http://rdfs.org/sioc/ns#User">
+  <rdfs:label xml:lang="en">User</rdfs:label>
+  <rdfs:comment xml:lang="en">UserAccount is now preferred. This is a deprecated class for a User in an online community site.</rdfs:comment>
+  <owl:equivalentClass rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/OnlineAccount"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Container"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Item"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Role"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Space"/>
+  <owl:disjointWith rdf:resource="http://rdfs.org/sioc/ns#Usergroup"/>
+  <owl:versionInfo>This class is deprecated. Use sioc:UserAccount from the SIOC ontology instead.</owl:versionInfo>
+</owl:DeprecatedClass>
+
+<owl:DeprecatedProperty rdf:about="http://rdfs.org/sioc/ns#title">
+  <rdfs:label xml:lang="en">title</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+  <rdfs:comment xml:lang="en">This is the title (subject line) of the Post. Note that for a Post within a threaded discussion that has no parents, it would detail the topic thread.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Post"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:versionInfo>This property is deprecated. Use dcterms:title from the Dublin Core ontology instead.</owl:versionInfo>
+</owl:DeprecatedProperty>
+
+<owl:DeprecatedProperty rdf:about="http://rdfs.org/sioc/ns#content_encoded">
+  <rdfs:label xml:lang="en">content encoded</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+  <rdfs:comment xml:lang="en">The encoded content of the Post, contained in CDATA areas.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Post"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:versionInfo>This property is deprecated. Use content:encoded from the RSS 1.0 content module instead.</owl:versionInfo>
+</owl:DeprecatedProperty>
+
+<owl:DeprecatedProperty rdf:about="http://rdfs.org/sioc/ns#created_at">
+  <rdfs:label xml:lang="en">created at</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+  <rdfs:comment xml:lang="en">When this was created, in ISO 8601 format.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Post"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:versionInfo>This property is deprecated. Use dcterms:created from the Dublin Core ontology instead.</owl:versionInfo>
+</owl:DeprecatedProperty>
+
+<owl:DeprecatedProperty rdf:about="http://rdfs.org/sioc/ns#description">
+  <rdfs:label xml:lang="en">description</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+  <rdfs:comment xml:lang="en">The content of the Post.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Post"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:versionInfo>This property is deprecated. Use sioc:content or other methods (AtomOwl, content:encoded from RSS 1.0, etc.) instead.</owl:versionInfo>
+</owl:DeprecatedProperty>
+
+<owl:DeprecatedProperty rdf:about="http://rdfs.org/sioc/ns#first_name">
+  <rdfs:label xml:lang="en">first name</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+  <rdfs:comment xml:lang="en">First (real) name of this User. Synonyms include given name or christian name.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:versionInfo>This property is deprecated. Use foaf:name or foaf:firstName from the FOAF vocabulary instead.</owl:versionInfo>
+</owl:DeprecatedProperty>
+
+<owl:DeprecatedProperty rdf:about="http://rdfs.org/sioc/ns#group_of">
+  <rdfs:label xml:lang="en">group of</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_group"/>
+  <owl:versionInfo>This property has been renamed. Use sioc:usergroup_of instead.</owl:versionInfo>
+</owl:DeprecatedProperty>
+
+
+<owl:DeprecatedProperty rdf:about="http://rdfs.org/sioc/ns#has_group">
+  <rdfs:label xml:lang="en">has group</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#group_of"/>
+  <owl:versionInfo>This property has been renamed. Use sioc:has_usergroup instead.</owl:versionInfo>
+</owl:DeprecatedProperty>
+
+<owl:DeprecatedProperty rdf:about="http://rdfs.org/sioc/ns#has_part">
+  <rdfs:label xml:lang="en">has part</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#part_of"/>
+  <rdfs:comment xml:lang="en">An resource that is a part of this subject.</rdfs:comment>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:versionInfo>This property is deprecated. Use dcterms:hasPart from the Dublin Core ontology instead.</owl:versionInfo>
+</owl:DeprecatedProperty>
+
+<owl:DeprecatedProperty rdf:about="http://rdfs.org/sioc/ns#last_name">
+  <rdfs:label xml:lang="en">last name</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+  <rdfs:comment xml:lang="en">Last (real) name of this user. Synonyms include surname or family name.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#UserAccount"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:versionInfo>This property is deprecated. Use foaf:name or foaf:surname from the FOAF vocabulary instead.</owl:versionInfo>
+</owl:DeprecatedProperty>
+
+<owl:DeprecatedProperty rdf:about="http://rdfs.org/sioc/ns#modified_at">
+  <rdfs:label xml:lang="en">modified at</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+  <rdfs:comment xml:lang="en">When this was modified, in ISO 8601 format.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Post"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:versionInfo>This property is deprecated. Use dcterms:modified from the Dublin Core ontology instead.</owl:versionInfo>
+</owl:DeprecatedProperty>
+
+<owl:DeprecatedProperty rdf:about="http://rdfs.org/sioc/ns#part_of">
+  <rdfs:label xml:lang="en">part of</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+  <owl:inverseOf rdf:resource="http://rdfs.org/sioc/ns#has_part"/>
+  <rdfs:comment xml:lang="en">A resource that the subject is a part of.</rdfs:comment>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:versionInfo>This property is deprecated. Use dcterms:isPartOf from the Dublin Core ontology instead.</owl:versionInfo>
+</owl:DeprecatedProperty>
+
+<owl:DeprecatedProperty rdf:about="http://rdfs.org/sioc/ns#reference">
+  <rdfs:label xml:lang="en">reference</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+  <rdfs:comment xml:lang="en">Links either created explicitly or extracted implicitly on the HTML level from the Post.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Post"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:versionInfo>Renamed to sioc:links_to.</owl:versionInfo>
+</owl:DeprecatedProperty>
+
+<owl:DeprecatedProperty rdf:about="http://rdfs.org/sioc/ns#subject">
+  <rdfs:label xml:lang="en">subject</rdfs:label>
+  <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+  <rdfs:comment xml:lang="en">Keyword(s) describing subject of the Post.</rdfs:comment>
+  <rdfs:domain rdf:resource="http://rdfs.org/sioc/ns#Post"/>
+  <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+  <rdfs:isDefinedBy rdf:resource="http://rdfs.org/sioc/ns#"/>
+  <owl:versionInfo>This property is deprecated. Use dcterms:subject from the Dublin Core ontology for text keywords and sioc:topic if the subject can be represented by a URI instead.</owl:versionInfo>
+</owl:DeprecatedProperty>
+
+</rdf:RDF>
diff --git a/ontologies/StackExchange.ttl b/ontologies/StackExchange.ttl
new file mode 100644
index 0000000..0e1caa5
--- /dev/null
+++ b/ontologies/StackExchange.ttl
@@ -0,0 +1,207 @@
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix dc: <http://purl.org/dc/elements/1.1/> .
+@prefix foaf: <http://xmlns.com/foaf/0.1/> .
+
+@prefix se-type: <http://rdf.vis.uni-stuttgart.de/stackexchange/t/> .
+@prefix se-prop: <http://rdf.vis.uni-stuttgart.de/stackexchange/p/> .
+
+<http://rdf.vis.uni-stuttgart.de/stackexchange> a owl:Ontology ;
+	owl:versionInfo "1.0" ;
+	dc:title "StackExchange Data Ontology" .
+	
+se-type:Comment a owl:Class .
+se-type:Closure a owl:Class .
+se-type:Locking a owl:Class .
+se-type:Reopening a owl:Class .
+se-type:Unlocking a owl:Class .
+se-type:Question a owl:Class .
+se-type:Answer a owl:Class .
+se-type:TagDescription a owl:Class .
+se-type:TagExcerpt a owl:Class .
+se-type:Tag a owl:Class .
+se-type:User a owl:Class .
+se-type:Deletion a owl:Class .
+se-type:Undeletion a owl:Class .
+se-type:Protection a owl:Class .
+se-type:Unprotection a owl:Class .
+se-type:SiteInfo a owl:Class .
+se-type:StartOfBounty a owl:Class .
+se-type:EndOfBounty a owl:Class .
+se-type:Badge a owl:Class .
+se-type:CloseReason a owl:Class .
+se-type:Account a owl:Class .
+
+se-prop:site a owl:ObjectProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:Comment se-type:Question se-type:Answer se-type:TagDescription se-type:TagExcerpt se-type:Tag se-type:User foaf:Person se-type:SiteInfo se-type:Badge )
+	] ;
+	rdfs:range se-type:SiteInfo .
+
+se-prop:score a owl:DatatypeProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:Comment se-type:Question se-type:Answer se-type:TagDescription se-type:TagExcerpt se-type:SiteInfo )
+	] ;
+	rdfs:range xsd:integer .
+
+se-prop:owner a owl:ObjectProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:Comment se-type:Question se-type:Answer se-type:TagDescription se-type:TagExcerpt se-type:SiteInfo )
+	] ;
+	rdfs:range se-type:User . # TODO: verify!
+
+se-prop:reason a owl:ObjectProperty ;
+	rdfs:domain se-type:Closure ;
+	rdfs:range se-type:CloseReason .
+
+se-prop:participant a owl:ObjectProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:Closure se-type:Locking se-type:Reopening se-type:Unlocking se-type:Deletion se-type:Undeletion se-type:Protection se-type:Unprotection )
+	] ;
+	rdfs:range se-type:User .
+
+se-prop:comment a owl:ObjectProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:Question se-type:Answer )
+	] ;
+	rdfs:range se-type:Comment .
+
+se-prop:viewCount a owl:DatatypeProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:Question se-type:User foaf:Person )
+	] ;
+	rdfs:range xsd:integer .
+
+se-prop:tag a owl:ObjectProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:Question se-type:Answer )
+	] ;
+	rdfs:range se-type:Tag . # TODO: verify!
+
+se-prop:answer a owl:ObjectProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:Question se-type:EndOfBounty )
+	] ;
+	rdfs:range se-type:Answer .
+
+se-prop:accepted a owl:ObjectProperty ;
+	rdfs:domain se-type:Question ;
+	rdfs:range se-type:Answer . # TODO: verify!
+
+se-prop:last-edited a owl:DatatypeProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:Question se-type:Answer se-type:TagDescription se-type:TagExcerpt se-type:SiteInfo )
+	] ;
+	rdfs:range xsd:dateTime . # TODO: verify!
+
+se-prop:duplicate a owl:ObjectProperty ;
+	rdfs:domain se-type:Question ;
+	rdfs:range se-type:Question . # TODO: verify!
+
+se-prop:event a owl:ObjectProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:Question se-type:Answer )
+	] ;
+	rdfs:range [
+		a owl:Class ;
+		owl:unionOf ( se-type:Closure se-type:Locking se-type:Reopening se-type:Unlocking se-type:Deletion se-type:Undeletion se-type:Protection se-type:Unprotection )
+	] .
+
+se-prop:tag-excerpt a owl:ObjectProperty ;
+	rdfs:domain se-type:Tag ;
+	rdfs:range se-type:TagExcerpt .
+
+se-prop:tag-description a owl:ObjectProperty ;
+	rdfs:domain se-type:Tag ;
+	rdfs:range se-type:TagDescription .
+
+se-prop:badge a owl:ObjectProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:User foaf:Person )
+	] ;
+	rdfs:range se-type:Badge .
+
+se-prop:reputation a owl:DatatypeProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:User foaf:Person )
+	] ;
+	rdfs:range xsd:integer .
+
+se-prop:reputation a owl:DatatypeProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:User foaf:Person )
+	] . # TODO: find out range!
+
+se-prop:up-votes a owl:DatatypeProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:User foaf:Person )
+	] ;
+	rdfs:range xsd:integer .
+
+se-prop:down-votes a owl:DatatypeProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:User foaf:Person )
+	] ;
+	rdfs:range xsd:integer .
+
+se-prop:account a owl:ObjectProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:User foaf:Person )
+	] ;
+	rdfs:range se-type:Account .
+
+se-prop:last-seen a owl:DatatypeProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:User foaf:Person )
+	] ;
+	rdfs:range xsd:dateTime .
+
+se-prop:favorite a owl:ObjectProperty ;
+	rdfs:domain [
+		a owl:Class ;
+		owl:unionOf ( se-type:User foaf:Person )
+	] ;
+	rdfs:range se-type:Question . # TODO: verify!
+
+se-prop:is-meta a owl:DatatypeProperty ;
+	rdfs:domain se-type:SiteInfo ;
+	rdfs:range xsd:boolean .
+
+se-prop:parent a owl:ObjectProperty ;
+	rdfs:domain se-type:SiteInfo ;
+	rdfs:range se-type:SiteInfo .
+
+se-prop:post a owl:ObjectProperty ;
+	rdfs:domain se-type:StartOfBounty ;
+	rdfs:range se-type:Question . # TODO: verify!
+
+se-prop:donor a owl:ObjectProperty ;
+	rdfs:domain se-type:StartOfBounty ;
+	rdfs:range se-type:User . # TODO: verify!
+
+se-prop:offered-amount a owl:DatatypeProperty ;
+	rdfs:domain se-type:StartOfBounty ;
+	rdfs:range xsd:integer .
+
+se-prop:transferred-bounty a owl:DatatypeProperty ;
+	rdfs:domain se-type:EndOfBounty ;
+	rdfs:range xsd:integer .

ontologies/tagont.owl 247(+247 -0)

diff --git a/ontologies/tagont.owl b/ontologies/tagont.owl
new file mode 100644
index 0000000..2a313bd
--- /dev/null
+++ b/ontologies/tagont.owl
@@ -0,0 +1,247 @@
+<?xml version="1.0"?>
+<rdf:RDF
+    xmlns:dcmitype="http://purl.org/dc/dcmitype/"
+    xmlns:foaf="http://xmlns.com/foaf/0.1/"
+    xmlns:wordnet="http://xmlns.com/wordnet/1.6/"
+    xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+    xmlns:owl="http://www.w3.org/2002/07/owl#"
+    xmlns="http://bubb.ghb.fh-furtwangen.de/TagOnt/tagont.owl#"
+    xmlns:j.0="http://purl.org/dc/terms/"
+    xmlns:contact="http://www.w3.org/2000/10/swap/pim/contact#"
+    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+    xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
+    xmlns:pos="http://www.w3.org/2003/01/geo/wgs84_pos#"
+    xmlns:daml="http://www.daml.org/2001/03/daml+oil#"
+    xmlns:dc="http://purl.org/dc/elements/1.1/"
+  xml:base="http://bubb.ghb.fh-furtwangen.de/TagOnt/tagont.owl">
+  <owl:Ontology rdf:about="">
+    <owl:imports rdf:resource="http://purl.org/dc/dcmitype/"/>
+    <owl:imports rdf:resource="http://purl.org/dc/elements/1.1/"/>
+    <owl:imports rdf:resource="http://www.mindswap.org/2003/owl/foaf"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >An ontology describing the concept of a tagging</rdfs:comment>
+    <owl:imports rdf:resource="http://purl.org/dc/terms"/>
+    <owl:imports rdf:resource="http://www.w3.org/2004/02/skos/core"/>
+  </owl:Ontology>
+  <owl:Class rdf:ID="VisibilityEnum">
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Tagging"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Denotes the visibility of a Tagging. Can be one of {Private Public Protected}. The application using this ontology has to take care of handling the authentication etc.</rdfs:comment>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Visibility</rdfs:label>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Tagger"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="ServiceDomain"/>
+    </owl:disjointWith>
+    <owl:equivalentClass>
+      <owl:Class>
+        <owl:oneOf rdf:parseType="Collection">
+          <VisibilityEnum rdf:ID="Private"/>
+          <VisibilityEnum rdf:ID="Public"/>
+          <VisibilityEnum rdf:ID="Protected"/>
+        </owl:oneOf>
+      </owl:Class>
+    </owl:equivalentClass>
+    <owl:disjointWith>
+      <owl:Class rdf:ID="Tag"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Tagger">
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ServiceDomain"/>
+    </owl:disjointWith>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Group"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Tagging"/>
+    </owl:disjointWith>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >any foaf:Person or foaf:Group who has at least one tagging is a Tagger.</rdfs:comment>
+    <owl:equivalentClass>
+      <owl:Class>
+        <owl:intersectionOf rdf:parseType="Collection">
+          <owl:Restriction>
+            <owl:someValuesFrom>
+              <owl:Class rdf:about="#Tagging"/>
+            </owl:someValuesFrom>
+            <owl:onProperty>
+              <owl:FunctionalProperty rdf:ID="hasTagging"/>
+            </owl:onProperty>
+          </owl:Restriction>
+          <owl:Class>
+            <owl:unionOf rdf:parseType="Collection">
+              <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Group"/>
+              <rdf:Description rdf:about="http://xmlns.com/foaf/0.1/Person"/>
+            </owl:unionOf>
+          </owl:Class>
+        </owl:intersectionOf>
+      </owl:Class>
+    </owl:equivalentClass>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Tagger</rdfs:label>
+    <owl:disjointWith rdf:resource="#VisibilityEnum"/>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Tag"/>
+    </owl:disjointWith>
+  </owl:Class>
+  <owl:Class rdf:about="#Tag">
+    <owl:disjointWith rdf:resource="#VisibilityEnum"/>
+    <rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Tag</rdfs:label>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >represents a single tag or keyword. Each tag has a unique URI. Equal tags (e.g. "san francisco" and "san fran") can be semantically related via the sameTag property. Semantic relations, such as broader and narrower terms (e.g. "blue" is kind of "color"), can be expressed with the SKOS core ontology (e.g. http://www.w3.org/2004/02/skos/core#broader). Therefore Tag is a subclass of SKOS core Concept.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ServiceDomain"/>
+    </owl:disjointWith>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#Tagging"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#Tagger"/>
+  </owl:Class>
+  <owl:Class rdf:about="#Tagging">
+    <owl:disjointWith rdf:resource="#Tagger"/>
+    <owl:disjointWith rdf:resource="#Tag"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Denotes the concept of a tagging: a Tagging consists of at least the basic tuple {tagger, resource, tags}. All other properties are optional. Furthermore Tagging follows the ValuePartition pattern, which means that it can only have values from either PublicTagging, PrivateTagging or ProtectedTagging.</rdfs:comment>
+    <owl:disjointWith>
+      <owl:Class rdf:about="#ServiceDomain"/>
+    </owl:disjointWith>
+    <owl:disjointWith rdf:resource="#VisibilityEnum"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Tagging</rdfs:label>
+  </owl:Class>
+  <owl:Class rdf:about="#ServiceDomain">
+    <owl:disjointWith rdf:resource="#VisibilityEnum"/>
+    <owl:disjointWith rdf:resource="#Tag"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >the domain (or even community) in which the tagging occured (e.g. delicious, flickr). specifiying a domain allows for cross-application tagging without losing the context in which the tagging has been done.</rdfs:comment>
+    <owl:disjointWith rdf:resource="#Tagging"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Service Domain</rdfs:label>
+    <owl:disjointWith rdf:resource="#Tagger"/>
+  </owl:Class>
+  <owl:ObjectProperty rdf:ID="hasTaggedResource">
+    <rdfs:domain rdf:resource="#Tagging"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >taggedResource</rdfs:label>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >specifies the resource being tagged</rdfs:comment>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:ID="hasType">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >type of the resource, e.g. image, text, ... this should be decided from the system (e.g. based on the MIME type), not from the user. thus, a tagged resource can have only one type.</rdfs:comment>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >type</rdfs:label>
+    <rdfs:range rdf:resource="http://purl.org/dc/terms/DCMIType"/>
+    <owl:equivalentProperty rdf:resource="http://purl.org/dc/elements/1.1/type"/>
+    <rdfs:domain rdf:resource="#Tagging"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:ID="hasTag">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >specifies the tag that belongs to the tagging. Each tagging can have multiple tags</rdfs:comment>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >tag</rdfs:label>
+    <rdfs:domain rdf:resource="#Tagging"/>
+    <rdfs:range rdf:resource="#Tag"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:ID="hasServiceDomain">
+    <rdfs:range rdf:resource="#ServiceDomain"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >domain</rdfs:label>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >specifies that a tagging happens in the context of a specific domain (i.e. flickr, delicious). a tagging can also belong to multiple domains (e.g. multiple social bookmarking tools), which allows for cross-application tagging.</rdfs:comment>
+    <rdfs:domain rdf:resource="#Tagging"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:ID="hasVisibility">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >denotes the visibility of the tagging (Private, Public or Protected)</rdfs:comment>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Visibility</rdfs:label>
+    <rdfs:range rdf:resource="#VisibilityEnum"/>
+    <rdfs:domain rdf:resource="#Tagging"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:ID="hasServiceHomepage">
+    <rdfs:domain rdf:resource="#ServiceDomain"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >the homepage URI of a ServiceDomain (i.e. a service which allows for tagging resources).</rdfs:comment>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/homepage"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >service homepage</rdfs:label>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:ID="hasTagLabel">
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >tag name</rdfs:label>
+    <rdfs:domain rdf:resource="#Tag"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >denotes the name (displayname) of a tag. A Tag can have multiple tag names which include variations of the same name (i.e. "c++", "cplusplus", "c_plus_plus",...). Thus one can infer that they all denote the same tag.</rdfs:comment>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/name"/>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:ID="hasNote">
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >additional notes to be added to a tagging (e.g. "picture of my cat mauzi")</rdfs:comment>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Notes</rdfs:label>
+    <rdfs:domain rdf:resource="#Tagging"/>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:ID="isTaggedOn">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >date</rdfs:label>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >specifies the date and time of the tagging</rdfs:comment>
+    <rdfs:domain rdf:resource="#Tagging"/>
+    <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/created"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:ID="hasServiceName">
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/name"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:domain rdf:resource="#ServiceDomain"/>
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >Service Name</rdfs:label>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >denotes the name of a tagging service provider, e.g. flickR</rdfs:comment>
+  </owl:DatatypeProperty>
+  <owl:SymmetricProperty rdf:ID="sameTag">
+    <rdfs:domain rdf:resource="#Tag"/>
+    <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#sameAs"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >denotes equality between two tags with different URIs.</rdfs:comment>
+  </owl:SymmetricProperty>
+  <owl:FunctionalProperty rdf:ID="prefTagLabel">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:domain rdf:resource="#Tag"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >if a tag has multiple name, then you should provide a preferred name, which will be displayed. If a Tag has only one tagName, then prefTagName should have the same value.</rdfs:comment>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:subPropertyOf rdf:resource="#hasTagLabel"/>
+  </owl:FunctionalProperty>
+  <owl:FunctionalProperty rdf:about="#hasTagging">
+    <rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >has Tagging</rdfs:label>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Group"/>
+    <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string"
+    >relates a Tagger to his Taggings.</rdfs:comment>
+    <rdfs:range rdf:resource="#Tagging"/>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+  </owl:FunctionalProperty>
+  <j.0:DCMIType rdf:ID="BlogEntry">
+    <rdfs:subClassOf rdf:resource="http://purl.org/dc/dcmitype/Text"/>
+    <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
+  </j.0:DCMIType>
+  <j.0:DCMIType rdf:ID="NewsEntry">
+    <rdfs:subClassOf rdf:resource="http://purl.org/dc/dcmitype/Text"/>
+    <rdf:type rdf:resource="http://www.w3.org/2000/01/rdf-schema#Class"/>
+  </j.0:DCMIType>
+</rdf:RDF>
+
+<!-- Created with TopBraid Composer 1.1.1 -->
diff --git a/ontologies/temp_simple.ttl b/ontologies/temp_simple.ttl
new file mode 100644
index 0000000..85683b8
--- /dev/null
+++ b/ontologies/temp_simple.ttl
@@ -0,0 +1,164 @@
+@prefix :      <http://simon.yl.lee#> .
+@prefix rdfs:  <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix swrl:  <http://www.w3.org/2003/11/swrl#> .
+@prefix protege: <http://protege.stanford.edu/plugins/owl/protege#> .
+@prefix s:     <http://simon.yl.lee#> .
+@prefix xsp:   <http://www.owl-ontologies.com/2005/08/07/xsp.owl#> .
+@prefix swrlb: <http://www.w3.org/2003/11/swrlb#> .
+@prefix xsd:   <http://www.w3.org/2001/XMLSchema#> .
+@prefix owl:   <http://www.w3.org/2002/07/owl#> .
+@prefix rdf:   <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix xml:   <http://www.w3.org/XML/1998/namespace> .
+
+s:hasFather  a                    owl:ObjectProperty ;
+        rdfs:domain               s:Person ;
+        rdfs:range                s:Man ;
+        rdfs:subPropertyOf        s:hasFather , owl:topObjectProperty ;
+        owl:equivalentProperty    s:hasFather ;
+        owl:inverseOf             s:fatherOf ;
+        owl:propertyDisjointWith  owl:bottomObjectProperty .
+
+owl:topDataProperty  a            owl:DatatypeProperty ;
+        rdfs:subPropertyOf        owl:topDataProperty ;
+        owl:equivalentProperty    owl:topDataProperty ;
+        owl:propertyDisjointWith  owl:bottomDataProperty .
+
+s:hasChildren  a                  owl:ObjectProperty ;
+        rdfs:domain               s:Person ;
+        rdfs:range                s:Person ;
+        rdfs:subPropertyOf        s:hasChildren , owl:topObjectProperty ;
+        owl:equivalentProperty    s:hasChildren ;
+        owl:propertyDisjointWith  owl:bottomObjectProperty .
+
+s:name  a                         owl:DatatypeProperty ;
+        rdfs:subPropertyOf        s:name , owl:topDataProperty ;
+        owl:equivalentProperty    s:name ;
+        owl:propertyDisjointWith  owl:bottomDataProperty .
+
+s:Jack  a              owl:Thing , s:Person , s:Man , owl:NamedIndividual ;
+        s:fatherOf     s:Bob ;
+        s:hasChildren  s:Bob ;
+        s:hasMarried   s:Alice ;
+        s:name         "Jack"^^xsd:string ;
+        owl:sameAs     s:Jack .
+
+owl:Nothing  a               owl:Class ;
+        rdfs:subClassOf      s:Woman , owl:Thing , s:Person , s:Man ;
+        owl:complementOf     owl:Thing ;
+        owl:disjointWith     s:Woman , owl:Nothing , owl:Thing , s:Person , s:Man ;
+        owl:equivalentClass  owl:Nothing .
+
+owl:bottomObjectProperty
+        a                         owl:ObjectProperty , owl:SymmetricProperty , owl:AsymmetricProperty , owl:IrreflexiveProperty ;
+        rdfs:domain               s:Woman , s:Person , s:Man ;
+        rdfs:range                s:Woman , s:Person , s:Man ;
+        rdfs:subPropertyOf        s:motherOf , s:fatherOf , s:hasFather , s:hasChildren , owl:topObjectProperty , s:hasMonther , s:hasMarried , owl:bottomObjectProperty ;
+        owl:equivalentProperty    owl:bottomObjectProperty ;
+        owl:propertyDisjointWith  s:fatherOf , s:motherOf , s:hasFather , s:hasChildren , owl:topObjectProperty , s:hasMonther , s:hasMarried , owl:bottomObjectProperty .
+
+owl:bottomDataProperty
+        a                         owl:DatatypeProperty ;
+        rdfs:subPropertyOf        s:name , owl:topDataProperty , owl:bottomDataProperty ;
+        owl:equivalentProperty    owl:bottomDataProperty ;
+        owl:propertyDisjointWith  s:name , owl:topDataProperty , owl:bottomDataProperty .
+
+s:Person  a                  owl:Class ;
+        rdfs:subClassOf      owl:Thing ;
+        owl:disjointWith     owl:Nothing ;
+        owl:equivalentClass  s:Person .
+
+s:fatherOf  a                     owl:ObjectProperty ;
+        rdfs:domain               s:Man ;
+        rdfs:range                s:Person ;
+        rdfs:subPropertyOf        s:fatherOf , owl:topObjectProperty ;
+        owl:equivalentProperty    s:fatherOf ;
+        owl:inverseOf             s:hasFather ;
+        owl:propertyDisjointWith  owl:bottomObjectProperty .
+
+s:Woman  a                   owl:Class ;
+        rdfs:subClassOf      owl:Thing , s:Person ;
+        owl:disjointWith     owl:Nothing ;
+        owl:equivalentClass  s:Woman .
+
+owl:Thing  a                 owl:Class ;
+        owl:complementOf     owl:Nothing ;
+        owl:disjointWith     owl:Nothing ;
+        owl:equivalentClass  owl:Thing .
+
+owl:topObjectProperty
+        a                         owl:ObjectProperty , owl:TransitiveProperty , owl:SymmetricProperty , owl:ReflexiveProperty ;
+        rdfs:subPropertyOf        owl:topObjectProperty ;
+        owl:equivalentProperty    owl:topObjectProperty ;
+        owl:propertyDisjointWith  owl:bottomObjectProperty .
+
+s:motherOf  a                     owl:ObjectProperty ;
+        rdfs:domain               s:Person ;
+        rdfs:range                s:Woman ;
+        rdfs:subPropertyOf        s:motherOf , owl:topObjectProperty ;
+        owl:equivalentProperty    s:motherOf ;
+        owl:inverseOf             s:hasMonther ;
+        owl:propertyDisjointWith  owl:bottomObjectProperty .
+
+s:Alice  a            s:Woman , owl:Thing , s:Person , owl:NamedIndividual ;
+        s:hasMarried  s:Jack ;
+        s:name        "Alice"^^xsd:string ;
+        owl:sameAs    s:Alice .
+
+s:hasMarried  a                   owl:ObjectProperty , owl:SymmetricProperty ;
+        rdfs:domain               s:Person ;
+        rdfs:range                s:Person ;
+        rdfs:subPropertyOf        owl:topObjectProperty , s:hasMarried ;
+        owl:equivalentProperty    s:hasMarried ;
+        owl:inverseOf             s:hasMarried ;
+        owl:propertyDisjointWith  owl:bottomObjectProperty .
+
+s:Man   a                    owl:Class ;
+        rdfs:subClassOf      owl:Thing , s:Person ;
+        owl:disjointWith     owl:Nothing ;
+        owl:equivalentClass  s:Man .
+
+s:Bob   a            owl:Thing , s:Person , s:Man , owl:NamedIndividual ;
+        s:hasFather  s:Jack ;
+        s:name       "Bob"^^xsd:string ;
+        owl:sameAs   s:Bob .
+
+s:hasMonther  a                   owl:ObjectProperty ;
+        rdfs:domain               s:Woman ;
+        rdfs:range                s:Person ;
+        rdfs:subPropertyOf        owl:topObjectProperty , s:hasMonther ;
+        owl:equivalentProperty    s:hasMonther ;
+        owl:inverseOf             s:motherOf ;
+        owl:propertyDisjointWith  owl:bottomObjectProperty .
+
+<child>  a      swrl:Variable .
+
+<http://simon.yl.lee>
+        a       owl:Ontology .
+
+<nullRule-1>  a    swrl:Imp ;
+        swrl:body  [ a          swrl:AtomList ;
+                     rdf:first  [ a                       swrl:IndividualPropertyAtom ;
+                                  swrl:argument1          <person> ;
+                                  swrl:argument2          <child> ;
+                                  swrl:propertyPredicate  s:hasChildren
+                                ] ;
+                     rdf:rest   [ a          swrl:AtomList ;
+                                  rdf:first  [ a                    swrl:ClassAtom ;
+                                               swrl:argument1       <person> ;
+                                               swrl:classPredicate  s:Man
+                                             ] ;
+                                  rdf:rest   ()
+                                
+                                ]
+                   ] ;
+        swrl:head  [ a          swrl:AtomList ;
+                     rdf:first  [ a                       swrl:IndividualPropertyAtom ;
+                                  swrl:argument1          <person> ;
+                                  swrl:argument2          <child> ;
+                                  swrl:propertyPredicate  s:fatherOf
+                                ] ;
+                     rdf:rest   ()
+                   
+                   ] .
+
+<person>  a     swrl:Variable .

ontologies/test.ttl 64(+64 -0)

diff --git a/ontologies/test.ttl b/ontologies/test.ttl
new file mode 100644
index 0000000..ba5498c
--- /dev/null
+++ b/ontologies/test.ttl
@@ -0,0 +1,64 @@
+@prefix : <http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/38/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix xml: <http://www.w3.org/XML/1998/namespace> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@base <http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/38/> .
+
+<http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/38/> rdf:type owl:Ontology .
+
+
+#################################################################
+#
+#    Data properties
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/38/dataComplementOfProperty
+
+:dataComplementOfProperty rdf:type owl:DatatypeProperty ;
+                          
+                          rdfs:domain :Class1 ;
+                          
+                          rdfs:range [ rdf:type rdfs:Datatype ;
+                                       owl:datatypeComplementOf xsd:string
+                                     ] .
+
+
+
+
+
+#################################################################
+#
+#    Classes
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/38/Class1
+
+:Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/38/NoObjectComplementOf
+
+:NoObjectComplementOf rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontobench-1.1.0-SNAPSHOT/ontology/38/ObjectComplementOf
+
+:ObjectComplementOf rdf:type owl:Class ;
+                    
+                    rdfs:subClassOf [ rdf:type owl:Class ;
+                                      owl:complementOf :NoObjectComplementOf
+                                    ] .
+
+
+
+
+###  Generated by the OWL API (version 4.1.0) https://github.com/owlcs/owlapi
+

ontologies/testing.owl 792(+792 -0)

diff --git a/ontologies/testing.owl b/ontologies/testing.owl
new file mode 100644
index 0000000..1fb8bd9
--- /dev/null
+++ b/ontologies/testing.owl
@@ -0,0 +1,792 @@
+<?xml version="1.0"?>
+
+
+<!DOCTYPE Ontology [
+    <!ENTITY xsd "http://www.w3.org/2001/XMLSchema#" >
+    <!ENTITY xml "http://www.w3.org/XML/1998/namespace" >
+    <!ENTITY rdfs "http://www.w3.org/2000/01/rdf-schema#" >
+    <!ENTITY rdf "http://www.w3.org/1999/02/22-rdf-syntax-ns#" >
+]>
+
+
+<Ontology xmlns="http://www.w3.org/2002/07/owl#"
+     xml:base="http://purl.org/muto/core"
+     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+     xmlns:xml="http://www.w3.org/XML/1998/namespace"
+     xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
+     xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+     ontologyIRI="http://purl.org/muto/core">
+    <Prefix name="" IRI="http://www.w3.org/2002/07/owl#"/>
+    <Prefix name="dc" IRI="http://purl.org/dc/elements/1.1/"/>
+    <Prefix name="owl" IRI="http://www.w3.org/2002/07/owl#"/>
+    <Prefix name="rdf" IRI="http://www.w3.org/1999/02/22-rdf-syntax-ns#"/>
+    <Prefix name="xsd" IRI="http://www.w3.org/2001/XMLSchema#"/>
+    <Prefix name="foaf" IRI="http://xmlns.com/foaf/0.1/"/>
+    <Prefix name="rdfs" IRI="http://www.w3.org/2000/01/rdf-schema#"/>
+    <Prefix name="sioc" IRI="http://rdfs.org/sioc/ns#"/>
+    <Prefix name="skos" IRI="http://www.w3.org/2004/02/skos/core#"/>
+    <Prefix name="dcterms" IRI="http://purl.org/dc/terms/"/>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="dc:creator"/>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Eduard Marbach</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty IRI="#contributor"/>
+        <IRI>http://test.link.me</IRI>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Fallback Title</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="dc:title"/>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Test Ontology</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">Test ontology to find all different examples for the OWL Converter.</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty IRI="#contributor"/>
+        <Literal datatypeIRI="&rdf;PlainLiteral">http://test.de</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty IRI="#contributor"/>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Test Contributor</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="dcterms:issued"/>
+        <Literal datatypeIRI="&rdf;PlainLiteral">2015-01-06</Literal>
+    </Annotation>
+    <Annotation>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">TO</Literal>
+    </Annotation>
+    <Declaration>
+        <Class IRI="#AutoTag"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#PrivateTagging"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Tag"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Tagging"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#TestClass"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#TestClass2"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#TestClass3"/>
+    </Declaration>
+    <Declaration>
+        <Class IRI="#Testklasse4"/>
+    </Declaration>
+    <Declaration>
+        <Class abbreviatedIRI="sioc:Item"/>
+    </Declaration>
+    <Declaration>
+        <Class abbreviatedIRI="sioc:UserAccount"/>
+    </Declaration>
+    <Declaration>
+        <Class abbreviatedIRI="skos:Concept"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#autoMeaning"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#creatorOf"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#grantAccess"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasAccess"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasCreator"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#hasTag"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#meaningOf"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#multiRange"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#nextTag"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#previousTag"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#tagMeaning"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#tagOf"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#taggedResource"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty IRI="#taggedWith"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty abbreviatedIRI="sioc:about"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty abbreviatedIRI="sioc:creator_of"/>
+    </Declaration>
+    <Declaration>
+        <ObjectProperty abbreviatedIRI="sioc:has_creator"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty abbreviatedIRI="dcterms:created"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty abbreviatedIRI="dcterms:modified"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#tagCreated"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#tagLabel"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#taggingCreated"/>
+    </Declaration>
+    <Declaration>
+        <DataProperty IRI="#taggingModified"/>
+    </Declaration>
+    <Declaration>
+        <NamedIndividual IRI="#Testklasse4"/>
+    </Declaration>
+    <Declaration>
+        <AnnotationProperty IRI="eduard#mytest"/>
+    </Declaration>
+    <Declaration>
+        <AnnotationProperty abbreviatedIRI="dc:creator"/>
+    </Declaration>
+    <Declaration>
+        <AnnotationProperty abbreviatedIRI="dc:description"/>
+    </Declaration>
+    <Declaration>
+        <AnnotationProperty abbreviatedIRI="dc:title"/>
+    </Declaration>
+    <Declaration>
+        <AnnotationProperty abbreviatedIRI="dcterms:issued"/>
+    </Declaration>
+    <Declaration>
+        <AnnotationProperty abbreviatedIRI="dcterms:licence"/>
+    </Declaration>
+    <Declaration>
+        <AnnotationProperty IRI="#contributor"/>
+    </Declaration>
+    <Declaration>
+        <AnnotationProperty abbreviatedIRI="foaf:depiction"/>
+    </Declaration>
+    <Declaration>
+        <AnnotationProperty abbreviatedIRI="foaf:homepage"/>
+    </Declaration>
+    <SubClassOf>
+        <Class IRI="#AutoTag"/>
+        <Class IRI="#Tag"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#PrivateTagging"/>
+        <Class IRI="#Tagging"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Tag"/>
+        <Class abbreviatedIRI="skos:Concept"/>
+    </SubClassOf>
+    <SubClassOf>
+        <Class IRI="#Tagging"/>
+        <Class abbreviatedIRI="sioc:Item"/>
+    </SubClassOf>
+    <ClassAssertion>
+        <Class IRI="#TestClass"/>
+        <NamedIndividual IRI="#Testklasse4"/>
+    </ClassAssertion>
+    <SubObjectPropertyOf>
+        <ObjectProperty IRI="#autoMeaning"/>
+        <ObjectProperty IRI="#tagMeaning"/>
+    </SubObjectPropertyOf>
+    <SubObjectPropertyOf>
+        <ObjectProperty IRI="#creatorOf"/>
+        <ObjectProperty abbreviatedIRI="sioc:creator_of"/>
+    </SubObjectPropertyOf>
+    <SubObjectPropertyOf>
+        <ObjectProperty IRI="#hasCreator"/>
+        <ObjectProperty abbreviatedIRI="sioc:has_creator"/>
+    </SubObjectPropertyOf>
+    <SubObjectPropertyOf>
+        <ObjectProperty IRI="#taggedResource"/>
+        <ObjectProperty abbreviatedIRI="sioc:about"/>
+    </SubObjectPropertyOf>
+    <InverseObjectProperties>
+        <ObjectProperty IRI="#creatorOf"/>
+        <ObjectProperty IRI="#hasCreator"/>
+    </InverseObjectProperties>
+    <InverseObjectProperties>
+        <ObjectProperty IRI="#hasAccess"/>
+        <ObjectProperty IRI="#grantAccess"/>
+    </InverseObjectProperties>
+    <InverseObjectProperties>
+        <ObjectProperty IRI="#tagOf"/>
+        <ObjectProperty IRI="#hasTag"/>
+    </InverseObjectProperties>
+    <InverseObjectProperties>
+        <ObjectProperty IRI="#tagMeaning"/>
+        <ObjectProperty IRI="#meaningOf"/>
+    </InverseObjectProperties>
+    <InverseObjectProperties>
+        <ObjectProperty IRI="#nextTag"/>
+        <ObjectProperty IRI="#previousTag"/>
+    </InverseObjectProperties>
+    <InverseObjectProperties>
+        <ObjectProperty IRI="#taggedWith"/>
+        <ObjectProperty IRI="#taggedResource"/>
+    </InverseObjectProperties>
+    <FunctionalObjectProperty>
+        <ObjectProperty IRI="#hasCreator"/>
+    </FunctionalObjectProperty>
+    <FunctionalObjectProperty>
+        <ObjectProperty IRI="#nextTag"/>
+    </FunctionalObjectProperty>
+    <FunctionalObjectProperty>
+        <ObjectProperty IRI="#previousTag"/>
+    </FunctionalObjectProperty>
+    <FunctionalObjectProperty>
+        <ObjectProperty IRI="#tagOf"/>
+    </FunctionalObjectProperty>
+    <FunctionalObjectProperty>
+        <ObjectProperty IRI="#taggedResource"/>
+    </FunctionalObjectProperty>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#autoMeaning"/>
+        <Class IRI="#Tag"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#creatorOf"/>
+        <Class abbreviatedIRI="sioc:UserAccount"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#grantAccess"/>
+        <Class IRI="#Tagging"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasCreator"/>
+        <Class IRI="#Tagging"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#hasTag"/>
+        <Class IRI="#Tagging"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#multiRange"/>
+        <Class IRI="#TestClass"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#multiRange"/>
+        <Class IRI="#Testklasse4"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#nextTag"/>
+        <Class IRI="#Tag"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#previousTag"/>
+        <Class IRI="#Tag"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#tagMeaning"/>
+        <Class IRI="#Tag"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#tagOf"/>
+        <Class IRI="#Tag"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyDomain>
+        <ObjectProperty IRI="#taggedResource"/>
+        <Class IRI="#Tagging"/>
+    </ObjectPropertyDomain>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#creatorOf"/>
+        <Class IRI="#Tagging"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasAccess"/>
+        <Class IRI="#Tagging"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasCreator"/>
+        <Class abbreviatedIRI="sioc:UserAccount"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#hasTag"/>
+        <Class IRI="#Tag"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#meaningOf"/>
+        <Class IRI="#Tag"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#multiRange"/>
+        <Class IRI="#TestClass2"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#multiRange"/>
+        <Class IRI="#TestClass3"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#nextTag"/>
+        <Class IRI="#Tag"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#previousTag"/>
+        <Class IRI="#Tag"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#tagOf"/>
+        <Class IRI="#Tagging"/>
+    </ObjectPropertyRange>
+    <ObjectPropertyRange>
+        <ObjectProperty IRI="#taggedWith"/>
+        <Class IRI="#Tagging"/>
+    </ObjectPropertyRange>
+    <SubDataPropertyOf>
+        <DataProperty IRI="#tagCreated"/>
+        <DataProperty abbreviatedIRI="dcterms:created"/>
+    </SubDataPropertyOf>
+    <SubDataPropertyOf>
+        <DataProperty IRI="#taggingCreated"/>
+        <DataProperty abbreviatedIRI="dcterms:created"/>
+    </SubDataPropertyOf>
+    <SubDataPropertyOf>
+        <DataProperty IRI="#taggingModified"/>
+        <DataProperty abbreviatedIRI="dcterms:modified"/>
+    </SubDataPropertyOf>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#tagCreated"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#tagLabel"/>
+    </FunctionalDataProperty>
+    <FunctionalDataProperty>
+        <DataProperty IRI="#taggingCreated"/>
+    </FunctionalDataProperty>
+    <DataPropertyDomain>
+        <DataProperty IRI="#tagCreated"/>
+        <Class IRI="#Tag"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#tagLabel"/>
+        <Class IRI="#Tag"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#taggingCreated"/>
+        <Class IRI="#Tagging"/>
+    </DataPropertyDomain>
+    <DataPropertyDomain>
+        <DataProperty IRI="#taggingModified"/>
+        <Class IRI="#Tagging"/>
+    </DataPropertyDomain>
+    <DataPropertyRange>
+        <DataProperty IRI="#tagCreated"/>
+        <Datatype abbreviatedIRI="xsd:dateTime"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#tagLabel"/>
+        <Datatype abbreviatedIRI="rdfs:Literal"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#taggingCreated"/>
+        <Datatype abbreviatedIRI="xsd:dateTime"/>
+    </DataPropertyRange>
+    <DataPropertyRange>
+        <DataProperty IRI="#taggingModified"/>
+        <Datatype abbreviatedIRI="xsd:dateTime"/>
+    </DataPropertyRange>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#AutoTag</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">An automatic tag is a tag that is automatically associated with a resource (e.g. by a tagging system), i.e. it is not entered by a human being.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#AutoTag</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#AutoTag</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">Automatic Tag</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="owl:versionInfo"/>
+        <IRI>#AutoTag</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Version 1.0: muto:AutoTag was a subclass of muto:Tagging (called muto:autoTagging) in earlier versions. Defining it as a subclass of muto:Tag is more appropriate and allows for taggings that contain a combination of manually and automatically created tags.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#PrivateTagging</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">A private tagging is a tagging that is only visible to its creator (unless the creator has not granted access to others via muto:grantAccess). Every tagging that is not an instance of muto:PrivateTagging is public by default.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#PrivateTagging</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#PrivateTagging</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">Private Tagging</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#Tag</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">A Tag consists of an arbitrary text label. Note that tags with the same label are NOT merged in the ontology.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#Tag</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#Tag</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">Tag</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="owl:versionInfo"/>
+        <IRI>#Tag</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Version 1.0: The owl:disjointWith statement was removed to make MUTO conform to OWL Lite (the statement is not essential in this case).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#Tagging</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">A tagging links a resource to a user account and one or more tags.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#Tagging</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#Tagging</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">Tagging</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#TestClass</IRI>
+        <Literal xml:lang="de" datatypeIRI="&rdf;PlainLiteral">Testklasse</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#autoMeaning</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">This subproperty indicates that the meaning of a tag has been automatically defined (e.g. by a tagging system), i.e. it has not been defined by a human being. The default case is disambiguation by users via muto:tagMeaning.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#autoMeaning</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#autoMeaning</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">automatic tag meaning</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#creatorOf</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">A user account can have a (theoretically unlimited) number of taggings. Use sioc:member_of to define groups for group tagging or link to foaf:Agent, foaf:Person, or foaf:Group via sioc:account_of.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#creatorOf</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#creatorOf</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">creator of</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#grantAccess</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">A (usually private) tagging can be linked to one or more user accounts or user groups that should have access to it (apart from the creator). This property can also be used in public tagging to link a user account or user group to a tagging (e.g. if the creator of a tagging wants to suggest the tagging to another user).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#grantAccess</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#grantAccess</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">grant access</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="owl:versionInfo"/>
+        <IRI>#grantAccess</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Version 1.0: The range information has been removed for greater flexibility and OWL Lite conformance (no longer owl:unionOf). Classes from different vocabularies can now be used here - such as sioc:UserAccount, sioc:Usergroup, foaf:OnlineAccount, foaf:Group, or dcterms:Agent -, though we recommend the use of sioc:UserAccount or sioc:Usergroup to remain in the SIOC namespace.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#hasAccess</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">A user account or user group can have access to a private tagging from another user if the access is explicitly permitted by the creator of the tagging. This property can also be used in public tagging to link a user account or user group to a tagging (e.g. if the creator of a tagging has suggested the tagging to another user).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#hasAccess</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#hasAccess</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">has access</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="owl:versionInfo"/>
+        <IRI>#hasAccess</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Version 1.0: see muto:grantAccess</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#hasCreator</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">Every tagging is linked to at most one user account. This property can be omitted for automatic taggings. In contrast to its superproperty sioc:has_creator, it is functional and with an explicit domain. Use sioc:member_of to define groups for group tagging or link to foaf:Agent, foaf:Person, or foaf:Group via sioc:account_of.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#hasCreator</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#hasCreator</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">has creator</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#hasTag</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">A tagging consists of a (theoretically unlimited) number of tags. A tagging may also consist of no tags, e.g. if the system allows its users to mark a resource first and add tags later.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#hasTag</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#hasTag</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">has tag</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#meaningOf</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">The number of tags that can be linked to one and the same meaning is theoretically unlimited.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#meaningOf</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#meaningOf</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">meaning of</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#nextTag</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">This property indicates the tag that follows next in the list of tags. It can be used to describe the order in which the tags have been entered by the user.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#nextTag</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#nextTag</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">next tag</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="owl:versionInfo"/>
+        <IRI>#nextTag</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Version 1.0: Earlier versions of MUTO defined a datatype property muto:tagPosition with integer values which has some drawbacks compared to this solution.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#previousTag</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">This property indicates the tag that is preceding in the list of tags. It can be used to describe the order in which the tags have been entered by the user.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#previousTag</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#previousTag</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">previous tag</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="owl:versionInfo"/>
+        <IRI>#previousTag</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Version 1.0: see muto:nextTag</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#tagCreated</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">The creation date and time of a tag. This property can be omitted if muto:taggingCreated = muto:tagCreated (i.e. in the common case that a tag has been created along with a tagging, not in a later edit of the tagging). The datatype of this property is xsd:dateTime (in contrast to it superproperty dcterms:created which has range rdfs:Literal).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#tagCreated</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#tagCreated</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">tag created</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#tagLabel</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">Every tag has exactly one label (usually the one given by the user) - otherwise it is not a tag. Additional labels can be defined in the resource that is linked via muto:tagMeaning.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#tagLabel</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#tagLabel</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">tag label</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="owl:versionInfo"/>
+        <IRI>#tagLabel</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Version 1.0: The subproperty relation to rdfs:label has been removed for OWL DL conformance (rdfs:label is an annotation property and one cannot define subproperties for annotation properties in OWL DL).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#tagMeaning</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">The meaning of a tag can be expressed by a link to a well-defined resource. This can be any resource that clarifies the meaning of the tag (e.g. some DBpedia resource).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#tagMeaning</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#tagMeaning</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">tag meaning</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#tagOf</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">Every tag is linked to exactly one tagging. This results from the fact that tags with same labels are NOT merged in the ontology.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#tagOf</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#tagOf</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">tag of</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty IRI="eduard#mytest"/>
+        <IRI>#taggedResource</IRI>
+        <Literal datatypeIRI="&rdf;PlainLiteral">WTF</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#taggedResource</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">Every tagging is linked to exactly one resource. This can be any kind of resource (i.e. all subclasses of rdfs:Resource), including tags and taggings.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#taggedResource</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#taggedResource</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">tagged resource</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#taggedWith</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">A resource can have several taggings from different users. Tags are never directly linked to resources but can be inferred from the taggings.</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#taggedWith</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#taggedWith</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">tagged with</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#taggingCreated</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">Every tagging has exactly one creation date and time. The datatype of this property is xsd:dateTime (in contrast to its superproperty dcterms:created which has range rdfs:Literal).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#taggingCreated</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#taggingCreated</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">tagging created</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:comment"/>
+        <IRI>#taggingModified</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">A tagging can have multiple modification dates, as the number of times a tagging can be edited (e.g. to add or remove tags) is theoretically unlimited. The datatype of this property is xsd:dateTime (in contrast to it superproperty dcterms:created which has range rdfs:Literal).</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:isDefinedBy"/>
+        <IRI>#taggingModified</IRI>
+        <IRI>#</IRI>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <IRI>#taggingModified</IRI>
+        <Literal xml:lang="en" datatypeIRI="&rdf;PlainLiteral">tagging modified</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <AnonymousIndividual nodeID="_:http://purl.org/muto/core#genid1818884576203567"/>
+        <Literal datatypeIRI="&rdf;PlainLiteral">Fallback?</Literal>
+    </AnnotationAssertion>
+    <AnnotationAssertion>
+        <AnnotationProperty abbreviatedIRI="rdfs:label"/>
+        <AnonymousIndividual nodeID="_:http://purl.org/muto/core#genid1818910758131297"/>
+        <Literal datatypeIRI="&rdf;PlainLiteral">What?</Literal>
+    </AnnotationAssertion>
+</Ontology>
+
+
+
+<!-- Generated by the OWL API (version 3.5.0) http://owlapi.sourceforge.net -->
+

ontologies/v1.owl 2413(+2413 -0)

diff --git a/ontologies/v1.owl b/ontologies/v1.owl
new file mode 100644
index 0000000..febf7ff
--- /dev/null
+++ b/ontologies/v1.owl
@@ -0,0 +1,2413 @@
+<?xml version="1.0" encoding="utf-8"?>
+<rdf:RDF
+  xmlns:foaf="http://xmlns.com/foaf/0.1/"
+  xmlns:owl="http://www.w3.org/2002/07/owl#"
+  xmlns:gr="http://purl.org/goodrelations/v1#"
+  xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+  xmlns:dc="http://purl.org/dc/elements/1.1/"
+  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+  xmlns:dcterms="http://purl.org/dc/terms/"
+>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#availabilityStarts">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
+    <rdfs:label xml:lang="en">availability starts (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This property specifies the beginning of the availability of the gr:ProductOrService included in the gr:Offering.
+The difference to the properties gr:validFrom and gr:validThrough is that those specify the period of time during which the offer is valid and can be accepted.
+
+Example: I offer to lease my boat for the period of August 1 - August 31, 2010, but you must accept by offer no later than July 15.
+
+A time-zone should be specified. For a time in GMT/UTC, simply add a "Z" following the time:
+
+2008-05-30T09:30:10Z.
+
+Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:
+
+2008-05-30T09:30:10-09:00
+
+or
+
+2008-05-30T09:30:10+09:00.
+
+Note: There is another property gr:availableAtOrFrom, which is used to indicate the gr:Location (e.g. store or shop) from which the goods would be available.</rdfs:comment>
+    <rdfs:isDefinedBy>
+      <owl:Ontology rdf:about="http://purl.org/goodrelations/v1">
+        <dc:title xml:lang="en">The GoodRelations Vocabulary for Semantic Web-based E-Commerce</dc:title>
+        <dc:subject xml:lang="en">E-Commerce, E-Business, GoodRelations, Microdata, Ontology, Semantic SEO, RDFa, Linked Data, RDF, Semantic Web, Recommender Systems</dc:subject>
+        <rdfs:label xml:lang="en">GoodRelations Ontology</rdfs:label>
+        <dc:creator xml:lang="en">Martin Hepp</dc:creator>
+        <owl:versionInfo xml:lang="en">V 1.0, Release 2011-10-01</owl:versionInfo>
+        <dc:rights xml:lang="en">The GoodRelations ontology is available under the Creative Commons Attribution 3.0 Unported license; see http://creativecommons.org/licenses/by/3.0/. In a nutshell, you are free to copy, distribute and transmit the work; to remix/adapt the work (e.g. to import the ontology and create specializations of its elements), as long as you attribute the work in the manner specified by the author or licensor (but not in any way that suggests that they endorse you or your use of the work). Proper Attribution: Simply include the statement "This work is based on the GoodRelations ontology, developed by Martin Hepp" and link back to http://purl.org/goodrelations/</dc:rights>
+        <dcterms:license rdf:resource="http://creativecommons.org/licenses/by/3.0/"/>
+        <rdfs:comment xml:lang="en">The GoodRelations ontology provides the vocabulary for annotating e-commerce offerings (1) to sell, lease, repair, dispose, or maintain commodity products and (2) to provide commodity services.
+
+GoodRelations allows describing the relationship between (1) Web resources, (2) offerings made by those Web resources, (3) legal entities, (4) prices, (5) terms and conditions, and the aforementioned ontologies for products and services (6).
+ 
+For more information, see http://purl.org/goodrelations/
+
+Note: The base URI of GoodRelations is http://purl.org/goodrelations/v1. Please make sure you are only using element identifiers in this namespace, e.g. http://purl.org/goodrelations/v1#BusinessEntity. There may be copies of the ontology file on the Web which can be retrieved from other locations, BUT THOSE LOCATIONS MUST NOT BE USED AS THE BASIS OF IDENTIFIERS.
+
+If you use GoodRelations for scientific purposes, please cite our paper:
+
+Hepp, Martin: GoodRelations: An Ontology for Describing Products and Services Offers on the Web, Proceedings of the 16th International Conference on Knowledge Engineering and Knowledge Management (EKAW2008), September 29 - October 3, 2008, Acitrezza, Italy, Springer LNCS, Vol. 5268, pp. 332-347.
+
+PDF at http://www.heppnetz.de/publications/</rdfs:comment>
+        <dc:contributor xml:lang="en">Work on the GoodRelations ontology and related research and development has been partly supported by the Austrian BMVIT/FFG under the FIT-IT Semantic Systems project myOntology (grant no. 812515/9284), by a Young Researcher's Grant (Nachwuchsfoerderung 2005-2006) from the Leopold-Franzens-Universitaet Innsbruck, by the European Commission under the project SUPER (FP6-026850), and by the German Federal Ministry of Research (BMBF) by a grant under the KMU Innovativ program as part of the Intelligent Match project (FKZ 01IS10022B). The</dc:contributor>
+        <foaf:homepage rdf:resource="http://purl.org/goodrelations/"/>
+      </owl:Ontology>
+    </rdfs:isDefinedBy>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#availableAtOrFrom">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <rdfs:label xml:lang="en">available at or from (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This states that a particular gr:Offering is available at or from the given gr:Location (e.g. shop or branch).</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#taxID">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:label xml:lang="en">Tax ID (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+          <rdf:Description rdf:about="http://schema.org/Person"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The Tax / Fiscal ID of the gr:BusinessEntity, e.g. the TIN in the US or the CIF/NIF in Spain. It is usually assigned by the country of residence</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#seeks">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <rdfs:label xml:lang="en">seeks (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+          <rdf:Description rdf:about="http://schema.org/Person"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This links a gr:BusinessEntity to gr:Offering nodes that describe what the business entity is interested in (i.e., the buy side). If you want to express interest in offering something, use gr:offers instead. Note that this substitutes the former gr:BusinessFunction gr:Buy, which is now deprecated.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <gr:BusinessEntityType rdf:about="http://purl.org/goodrelations/v1#Reseller">
+    <rdfs:comment xml:lang="en">The gr:BusinessEntityType representing such agents that are purchasing the scope of products included in the gr:Offering for resale on the market. Resellers are also businesses, i.e., they are officially registered with the public administration and strive for profits by their activities.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Reseller (business entity type)</rdfs:label>
+  </gr:BusinessEntityType>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#amountOfThisGood">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
+    <rdfs:label xml:lang="en">amount of this good (1..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+    <rdfs:comment xml:lang="en">This property specifies the quantity of the goods included in the gr:Offering via this gr:TypeAndQuantityNode. The quantity is given in the unit of measurement attached to the gr:TypeAndQuantityNode.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#serialNumber">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:label xml:lang="en">serial number (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Individual"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The serial number or any alphanumeric identifier of a particular product. Note that serial number are unique only for the same brand or the same model, so you cannot infer from two occurrences of the same serial number that the objects to which they are attached are identical.
+
+This property can also be attached to a gr:Offering in cases where the included products are not modeled in more detail.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasISICv4">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
+    <rdfs:label xml:lang="en">has ISIC v4 (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Location"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+          <rdf:Description rdf:about="http://schema.org/Place"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The International Standard of Industrial Classification of All Economic Activities (ISIC), Revision 4 code for a particular gr:BusinessEntity or gr:Location. See http://unstats.un.org/unsd/cr/registry/isic-4.asp for more information.
+
+Note: While ISIC codes are sometimes misused for classifying products or services, they are designed and suited only for classifying business establishments.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#opens">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#time"/>
+    <rdfs:label xml:lang="en">opens (1..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <rdfs:comment xml:lang="en">The opening hour of the gr:Location on the given gr:DayOfWeek.
+If no time-zone suffix is included, the time is given in the local time valid at the gr:Location.
+
+For a time in GMT/UTC, simply add a "Z" following the time:
+
+09:30:10Z.
+
+Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:
+
+09:30:10-09:00
+
+or
+
+09:30:10+09:00.
+
+Note 1: Use 00:00:00 for the first second of the respective day and 23:59:59 for the last second of that day.
+Note 2: If a store opens at 17:00 on Saturdays and closes at 03:00:00 a.m. next morning, use 17:00:00 - 23:59:59 for Saturday and 00:00:00 - 03:00:00 for Sunday.
+Note 3: If the shop re-opens on the same day of the week or set of days of the week, you must create a second instance of gr:OpeningHoursSpecification.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasNAICS">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
+    <rdfs:label xml:lang="en">has NAICS (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The North American Industry Classification System (NAICS) code for a particular gr:BusinessEntity.
+See http://www.census.gov/eos/www/naics/ for more details.
+
+Note: While NAICS codes are sometimes misused for classifying products or services, they are designed and suited only for classifying business establishments.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#legalName">
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:label xml:lang="en">legal name (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The legal name of the gr:BusinessEntity.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <gr:DeliveryModeParcelService rdf:about="http://purl.org/goodrelations/v1#FederalExpress">
+    <rdfs:comment xml:lang="en">Delivery via the parcel service Federal Express.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Federal Express (delivery method)</rdfs:label>
+  </gr:DeliveryModeParcelService>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasMPN">
+    <rdfs:subPropertyOf>
+      <owl:DatatypeProperty rdf:about="http://schema.org/productID"/>
+    </rdfs:subPropertyOf>
+    <rdfs:label xml:lang="en">has MPN (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The Manufacturer Part Number or MPN is a unique identifier for a product, service, or bundle from the perspective of a particular manufacturer. MPNs can be assigned to products or product datasheets, or bundles. Accordingly, the domain of this property is the union of gr:ProductOrService (the common superclass of goods and datasheets), and gr:Offering.
+
+Important: Be careful when assuming two products or services instances or offering instances to be identical based on the MPN. Since MPNs are unique only for the same gr:BusinessEntity, this holds only when the two MPN values refer to the same gr:BusinessEntity. Such can be done by taking into account the provenance of the data. 
+
+Usually, the properties gr:hasEAN_UCC-13 and gr:hasGTIN-14 are much more reliable identifiers, because they are globally unique.
+
+See also http://en.wikipedia.org/wiki/Part_number</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#vatID">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:label xml:lang="en">VAT ID (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+          <rdf:Description rdf:about="http://schema.org/Person"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The Value-added Tax ID of the gr:BusinessEntity. See http://en.wikipedia.org/wiki/Value_added_tax_identification_number for details.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <gr:DeliveryModeParcelService rdf:about="http://purl.org/goodrelations/v1#DHL">
+    <rdfs:comment xml:lang="en">Delivery via the parcel service DHL.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">DHL (delivery method)</rdfs:label>
+  </gr:DeliveryModeParcelService>
+  <gr:DeliveryMethod rdf:about="http://purl.org/goodrelations/v1#DeliveryModeMail">
+    <rdfs:comment xml:lang="en">Delivery via regular mail service (private or public postal services).</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Delivery mode mail (delivery method)</rdfs:label>
+  </gr:DeliveryMethod>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#category">
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:label xml:lang="en">category (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Location"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+          <rdf:Description rdf:about="http://schema.org/Place"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The name of a category to which this gr:ProductOrService, gr:Offering, gr:BusinessEntity, or gr:Location belongs.
+	
+Note 1: For products, it is better to add an rdf:type statement referring to a GoodRelations-compliant ontology for vertical industries instead, but if you just have a short text label, gr:category is simpler.
+Note 2: You can use greater signs or slashes to informally indicate a category hierarchy, e.g. "restaurants/asian_restaurants" or "cables &gt; usb_cables"
+</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasPOS">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <rdfs:label xml:lang="en">has POS (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This property states that the respective gr:Location is a point of sale for the respective gr:BusinessEntity. It allows linking those two types of entities without the need for a particular gr:Offering.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#availabilityEnds">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
+    <rdfs:label xml:lang="en">availability ends (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This property specifies the end of the availability of the gr:ProductOrService included in the gr:Offering.
+The difference to the properties gr:validFrom and gr:validThrough is that those specify the period of time during which the offer is valid and can be accepted.
+
+Example: I offer to lease my boat for the period of August 1 - August 31, 2010, but you must accept by offer no later than July 15.
+
+A time-zone should be specified. For a time in GMT/UTC, simply add a "Z" following the time:
+
+2008-05-30T09:30:10Z.
+
+Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:
+
+2008-05-30T09:30:10-09:00
+
+or
+
+2008-05-30T09:30:10+09:00.
+
+Note: There is another property gr:availableAtOrFrom, which is used to indicate the gr:Location (e.g. store or shop) from which the goods would be available.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#eligibleCustomerTypes">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <rdfs:label xml:lang="en">eligible customer types (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The types of customers (gr:BusinessEntityType) for which the given gr:Offering is valid.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <gr:PaymentMethod rdf:about="http://purl.org/goodrelations/v1#ByInvoice">
+    <rdfs:comment xml:lang="en">Payment by bank transfer after delivery, i.e., the offering gr:BusinessEntity will deliver first, inform the buying party about the due amount and their bank account details, and expect payment shortly after delivery.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">By invoice (payment method)</rdfs:label>
+  </gr:PaymentMethod>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasInventoryLevel">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValueFloat"/>
+    <rdfs:label xml:lang="en">has inventory level (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#SomeItems"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This property specifies the current approximate inventory level for gr:SomeItems. The unit of measurement and the point value or interval are indicated using the attached gr:QuantitativeValueFloat instance.
+
+This property can also be attached to a gr:Offering in cases where the included products are not modeled in more detail.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#isSimilarTo">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <rdfs:label xml:lang="en">is similar to (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This states that a given gr:ProductOrService is similar to another product or service. Of course, this is a subjective statement; when interpreting it, the trust in the origin of the statement should be taken into account.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <gr:BusinessFunction rdf:about="http://purl.org/goodrelations/v1#Maintain">
+    <rdfs:comment xml:lang="en">This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) typical maintenance tasks for the specified gr:ProductOrService. Maintenance tasks are actions that undo or compensate for wear or other deterioriation caused by regular usage, in order to restore the originally intended function of the product, or to prevent outage or malfunction.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Maintain (business function)</rdfs:label>
+  </gr:BusinessFunction>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasOpeningHoursSpecification">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <rdfs:label xml:lang="en">has opening hours specification (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Location"/>
+          <rdf:Description rdf:about="http://schema.org/Place"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This property links a gr:Location to a gr:OpeningHoursSpecification.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#validThrough">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
+    <rdfs:label xml:lang="en">valid through (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#PriceSpecification"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#License"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This property specifies the end of the validity of the gr:Offering, gr:PriceSpecification, gr:License, or gr:OpeningHoursSpecification.
+A time-zone should be specified. For a time in GMT/UTC, simply add a "Z" following the time:
+
+2008-05-30T09:30:10Z.
+
+Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:
+
+2008-05-30T09:30:10-09:00
+
+or
+2008-05-30T09:30:10+09:00.
+
+Note 1: If multiple contradicting instances of a gr:Offering, gr:PriceSpecification, or gr:OpeningHoursSpecification exist, it is a good heuristics to assume that
+1. Information with validity information for the respective period of time ranks higher than information without validity information.
+2. Among conflicting nodes both having validity information, the one with the shorter validity span ranks higher.
+Note 2: For Google, attaching a gr:validThrough statement to a gr:UnitPriceSpecification is mandatory. 
+</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <gr:PaymentMethodCreditCard rdf:about="http://purl.org/goodrelations/v1#AmericanExpress">
+    <rdfs:comment xml:lang="en">Payment by credit or debit cards issued by the American Express network.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">American Express (payment method)</rdfs:label>
+  </gr:PaymentMethodCreditCard>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#appliesToPaymentMethod">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <rdfs:label xml:lang="en">applies to payment method (1..*)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#PaymentChargeSpecification"/>
+    <rdfs:comment xml:lang="en">This property specifies the gr:PaymentMethod to which the gr:PaymentChargeSpecification applies.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#isConsumableFor">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <rdfs:label xml:lang="en">is consumable for (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This states that a particular gr:ProductOrService is a consumable for another product or service.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasValueFloat">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
+    <rdfs:label xml:lang="en">has value float (0..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValueFloat"/>
+    <rdfs:comment xml:lang="en">This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValueFloat are identical and have the respective float value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:subPropertyOf>
+      <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasMaxValueFloat">
+        <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
+        <rdfs:label xml:lang="en">has max value float (1..1)</rdfs:label>
+        <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValueFloat"/>
+        <rdfs:comment xml:lang="en">This property captures the upper limit of a gr:QuantitativeValueFloat instance.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+        <rdfs:subPropertyOf rdf:resource="http://purl.org/goodrelations/v1#hasMaxValue"/>
+      </owl:DatatypeProperty>
+    </rdfs:subPropertyOf>
+    <rdfs:subPropertyOf>
+      <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasMinValueFloat">
+        <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
+        <rdfs:label xml:lang="en">has min value float (1..1)</rdfs:label>
+        <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValueFloat"/>
+        <rdfs:comment xml:lang="en">This property captures the lower limit of a gr:QuantitativeValueFloat instance.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+        <rdfs:subPropertyOf rdf:resource="http://purl.org/goodrelations/v1#hasMinValue"/>
+      </owl:DatatypeProperty>
+    </rdfs:subPropertyOf>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#closes">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#time"/>
+    <rdfs:label xml:lang="en">closes (1..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <rdfs:comment xml:lang="en">The closing  hour of the gr:Location on the given gr:DayOfWeek.
+If no time-zone suffix is included, the time is given in the local time valid at the gr:Location.
+
+For a time in GMT/UTC, simply add a "Z" following the time:
+
+09:30:10Z.
+
+Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:
+
+09:30:10-09:00
+
+09:30:10+09:00.
+
+Note 1: Use 00:00:00 for the first second of the respective day and 23:59:59 for the last second of that day.
+Note 2: If a store opens at 17:00 on Saturdays and closes at 03:00:00 a.m. next morning, use two instances of this class, one with 17:00:00 - 23:59:59 for Saturday and another one with 00:00:00 - 03:00:00 for Sunday.
+Note 3: If the shop re-opens on the same day of the week or set of days of the week, you must create a second instance of gr:OpeningHoursSpecification.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <gr:PaymentMethod rdf:about="http://purl.org/goodrelations/v1#PaySwarm">
+    <rdfs:comment xml:lang="en">Payment via the PaySwarm distributed micropayment service.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">PaySwarm (payment method)</rdfs:label>
+  </gr:PaymentMethod>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#advanceBookingRequirement">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValueInteger"/>
+    <rdfs:label xml:lang="en">advance booking requirement (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The minimal and maximal amount of time that is required between accepting the gr:Offering and the actual usage of the resource or service. This is mostly relevant for offers regarding hotel rooms, the rental of objects, or the provisioning of services. The duration is specified relatively to the beginning of the usage of the contracted object. It is represented by attaching an instance of the class gr:QuantitativeValueInteger. The lower and upper boundaries are specified using the properties gr:hasMinValueInteger and gr:hasMaxValueInteger to that instance. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON (months), DAY (days), HUR (hours), or MIN (minutes).
+
+The difference to the gr:validFrom and gr:validThrough properties is that those specify the interval during which the gr:Offering is valid, while gr:advanceBookingRequirement specifies the acceptable relative amount of time between accepting the offer and the fulfilment or usage.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#eligibleTransactionVolume">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <rdfs:label xml:lang="en">eligible transaction volume (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#PriceSpecification"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This property can be used to indicate the transaction volume, in a monetary unit, for which the gr:Offering or gr:PriceSpecification is valid. This is mostly used to specify a minimal purchasing volume, to express free shipping above a certain order volume, or to limit the acceptance of credit cards to purchases above a certain amount.
+
+The object is a gr:PriceSpecification that uses the properties gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue to indicate the lower and upper boundaries and gr:hasCurrency to indicate the currency using the ISO 4217 standard (3 characters).</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#durationOfWarrantyInMonths">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
+    <rdfs:label xml:lang="en">duration of warranty in months (0..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <rdfs:comment xml:lang="en">This property specifies the duration of the gr:WarrantyPromise in months.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasGlobalLocationNumber">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:label xml:lang="en">has Global Location Number (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Location"/>
+          <rdf:Description rdf:about="http://schema.org/Place"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The Global Location Number (GLN, sometimes also referred to as International Location Number or ILN) of the respective gr:BusinessEntity or gr:Location.
+The Global Location Number is a thirteen-digit number used to identify parties and physical locations.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#isVariantOf">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#ProductOrServiceModel"/>
+    <rdfs:label xml:lang="en">is variant of (0..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#ProductOrServiceModel"/>
+    <rdfs:comment xml:lang="en">This states that a particular gr:ProductOrServiceModel is a variant of another product or service model. It is pretty safe to infer that the variant inherits all gr:quantitativeProductOrServiceProperty, gr:qualitativeProductOrServiceProperty, and gr:datatypeProductOrServiceProperty values that are defined for the first gr:ProductOrServiceModel.
+
+Example:
+foo:Red_Ford_T_Model gr:isVariantOf foo:Ford_T_Model</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasGTIN-8">
+    <rdfs:subPropertyOf rdf:resource="http://schema.org/productID"/>
+    <rdfs:label xml:lang="en">has GTIN-8 (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The 8-digit Global Trade Item Number (GTIN-8) of the given gr:ProductOrService or gr:Offering, also known as EAN/UCC-8 (8-digit EAN).</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+  </owl:DatatypeProperty>
+  <gr:WarrantyScope rdf:about="http://purl.org/goodrelations/v1#PartsAndLabor-PickUp">
+    <rdfs:comment xml:lang="en">In case of a defect or malfunction, the buying party has the right to request from the selling gr:Business Entity to pick-up the good from its current location to a suitable service location, where the functionality of the good will be restored. All transportation, labor, parts, and materials needed to fix the problem will be covered by the selling business entity or one of its partnering business entities.
+  
+Note: This is just a rough classification for filtering offers. It is up to the buying party to check the exact scope and terms and conditions of the gr:WarrantyPromise.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Parts and labor / pick up (warranty scope)</rdfs:label>
+  </gr:WarrantyScope>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasPriceSpecification">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <rdfs:label xml:lang="en">has price specification (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This links a gr:Offering to a gr:PriceSpecification or specifications. There can be unit price specifications, payment charge specifications, and delivery charge specifications. For each type, multiple specifications for the same gr:Offering are possible, e.g. for different quantity ranges or for different currencies, or for different combinations of gr:DeliveryMethod and target destinations.
+
+Recommended retail prices etc. can be marked by the gr:priceType property of the gr:UnitPriceSpecification.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <gr:PaymentMethodCreditCard rdf:about="http://purl.org/goodrelations/v1#JCB">
+    <rdfs:comment xml:lang="en">Payment by credit or debit cards issued by the JCB network.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">JCB (payment method)</rdfs:label>
+  </gr:PaymentMethodCreditCard>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#depth">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <rdfs:label xml:lang="en">depth (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The depth of the product.
+Typical unit code(s): CMT for centimeters, INH for inches</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:subPropertyOf>
+      <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#quantitativeProductOrServiceProperty">
+        <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+        <rdfs:label xml:lang="en">quantitative product or service property (0..*)</rdfs:label>
+        <rdfs:domain>
+          <owl:Class>
+            <owl:unionOf rdf:parseType="Collection">
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+              <rdf:Description rdf:about="http://schema.org/Product"/>
+            </owl:unionOf>
+          </owl:Class>
+        </rdfs:domain>
+        <rdfs:comment xml:lang="en">This is the super property of all quantitative  properties for products and services. All properties in product or service ontologies that specify quantitative characteristics, for which an interval is at least theoretically an appropriate value, are subproperties of this property.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+      </owl:ObjectProperty>
+    </rdfs:subPropertyOf>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasValueInteger">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
+    <rdfs:label xml:lang="en">has value integer (0..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValueInteger"/>
+    <rdfs:comment xml:lang="en">This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValueInteger are identical and have the respective integer value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:subPropertyOf>
+      <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasMinValueInteger">
+        <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
+        <rdfs:label xml:lang="en">has min value integer (1..1)</rdfs:label>
+        <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValueInteger"/>
+        <rdfs:comment xml:lang="en">This property captures the lower limit of a gr:QuantitativeValueInteger instance.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+        <rdfs:subPropertyOf rdf:resource="http://purl.org/goodrelations/v1#hasMinValue"/>
+      </owl:DatatypeProperty>
+    </rdfs:subPropertyOf>
+    <rdfs:subPropertyOf>
+      <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasMaxValueInteger">
+        <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
+        <rdfs:label xml:lang="en">has max value integer (1..1)</rdfs:label>
+        <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValueInteger"/>
+        <rdfs:comment xml:lang="en">This property captures the upper limit of a gr:QuantitativeValueInteger instance.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+        <rdfs:subPropertyOf rdf:resource="http://purl.org/goodrelations/v1#hasMaxValue"/>
+      </owl:DatatypeProperty>
+    </rdfs:subPropertyOf>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://schema.org/manufacturer">
+    <owl:equivalentProperty>
+      <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasManufacturer">
+        <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+        <rdfs:label xml:lang="en">has manufacturer (0..1)</rdfs:label>
+        <rdfs:domain>
+          <owl:Class>
+            <owl:unionOf rdf:parseType="Collection">
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+              <rdf:Description rdf:about="http://schema.org/Product"/>
+            </owl:unionOf>
+          </owl:Class>
+        </rdfs:domain>
+        <rdfs:comment xml:lang="en">This object property links a gr:ProductOrService to the gr:BusinessEntity that produces it. Mostly used with gr:ProductOrServiceModel.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+      </owl:ObjectProperty>
+    </owl:equivalentProperty>
+  </owl:ObjectProperty>
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/title"/>
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/creator"/>
+  <owl:DatatypeProperty rdf:about="http://schema.org/description">
+    <owl:equivalentProperty>
+      <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#description">
+        <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+        <rdfs:label xml:lang="en">description (0..1)</rdfs:label>
+        <rdfs:domain>
+          <owl:Class>
+            <owl:unionOf rdf:parseType="Collection">
+              <rdf:Description rdf:about="http://www.w3.org/2002/07/owl#Thing"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Brand"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessFunction"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#DayOfWeek"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#DeliveryChargeSpecification"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#DeliveryModeParcelService"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Individual"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Location"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#PaymentChargeSpecification"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#PaymentMethod"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#PaymentMethodCreditCard"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#PriceSpecification"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrServiceModel"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#QualitativeValue"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#QuantitativeValueFloat"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#QuantitativeValueInteger"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#SomeItems"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#UnitPriceSpecification"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#WarrantyScope"/>
+            </owl:unionOf>
+          </owl:Class>
+        </rdfs:domain>
+        <rdfs:comment xml:lang="en">A short textual description of the resource. 
+
+This property is semantically equivalent to rdfs:comment and just meant as a handy shortcut for marking up data.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+      </owl:DatatypeProperty>
+    </owl:equivalentProperty>
+  </owl:DatatypeProperty>
+  <gr:PaymentMethod rdf:about="http://purl.org/goodrelations/v1#Cash">
+    <rdfs:comment xml:lang="en">Payment by cash upon delivery or pickup.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Cash (payment method)</rdfs:label>
+  </gr:PaymentMethod>
+  <gr:PaymentMethodCreditCard rdf:about="http://purl.org/goodrelations/v1#DinersClub">
+    <rdfs:comment xml:lang="en">Payment by credit or debit cards issued by the Diner's Club network.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Diners Club (payment method)</rdfs:label>
+  </gr:PaymentMethodCreditCard>
+  <gr:BusinessFunction rdf:about="http://purl.org/goodrelations/v1#Dispose">
+    <rdfs:comment xml:lang="en">This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the acceptance of the specified gr:ProductOrService for proper disposal, recycling, or any other kind of allowed usages, freeing the current owner from all rights and obligations of ownership.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Dispose (business function)</rdfs:label>
+  </gr:BusinessFunction>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#billingIncrement">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
+    <rdfs:label xml:lang="en">billing increment (0..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#UnitPriceSpecification"/>
+    <rdfs:comment xml:lang="en">This property specifies the minimal quantity and rounding increment that will be the basis for the billing. 
+The unit of measurement is specified by the UN/CEFACT code attached to the gr:UnitPriceSpecification via the gr:hasUnitOfMeasurement property.
+
+Examples: 
+- The price for gasoline is 4 USD per gallon at the pump, but you will be charged in units of 0.1 gallons.
+- The price for legal consulting is 100 USD per hour, but you will be charged in units of 15 minutes.
+
+This property makes sense only for instances of gr:Offering that include not more than one type of good or service.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#isListPrice">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
+    <rdfs:label xml:lang="en">is list price (DEPRECATED)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#UnitPriceSpecification"/>
+    <rdfs:comment xml:lang="en">This boolean attribute indicates whether a gr:UnitPriceSpecification is a list price (usually a vendor recommendation) or not. "true"  indicates it is a list price, "false" indicates it is not.
+DEPRECATED. Use the gr:priceType property instead.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#color">
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:label xml:lang="en">color (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The color of the product.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:subPropertyOf>
+      <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#datatypeProductOrServiceProperty">
+        <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+        <rdfs:label xml:lang="en">datatype product or service property (0..*)</rdfs:label>
+        <rdfs:domain>
+          <owl:Class>
+            <owl:unionOf rdf:parseType="Collection">
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+              <rdf:Description rdf:about="http://schema.org/Product"/>
+            </owl:unionOf>
+          </owl:Class>
+        </rdfs:domain>
+        <rdfs:comment xml:lang="en">This property is the super property for all pure datatype properties that can be used to describe a gr:ProductOrService.
+
+In products and services ontologies, only such properties that are no quantitative properties and that have no predefined gr:QualitativeValue instances are subproperties of this property. In practice, this refers to a few integer properties for which the integer value represents qualitative aspects, for string datatypes (as long as no predefined values exist), for boolean datatype properties, and for dates and times.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+      </owl:DatatypeProperty>
+    </rdfs:subPropertyOf>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#isAccessoryOrSparePartFor">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <rdfs:label xml:lang="en">is accessory or spare part for (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This states that a particular gr:ProductOrService is an accessory or spare part for another product or service.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasDUNS">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:label xml:lang="en">has DUNS (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The Dun &amp; Bradstreet DUNS number for identifying a gr:BusinessEntity. The Dun &amp; Bradstreet DUNS is a nine-digit number used to identify legal entities (but usually not branches or locations of logistical importance only).</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#typeOfGood">
+    <rdfs:range>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Individual"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#SomeItems"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:range>
+    <rdfs:label xml:lang="en">type of good (1..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+    <rdfs:comment xml:lang="en">This specifies the gr:ProductOrService that the gr:TypeAndQuantityNode is referring to.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#deliveryLeadTime">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValueInteger"/>
+    <rdfs:label xml:lang="en">delivery lead time (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This property can be used to indicate the promised delay between the receipt of the order and the goods leaving the warehouse.
+
+The duration is specified by attaching an instance of gr:QuantitativeValueInteger. The lower and upper boundaries are specified using the properties gr:hasMinValueInteger and gr:hasMaxValueInteger to that instance. A point value can be modeled with the gr:hasValueInteger property. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON (months), DAY (days), HUR (hours), or MIN (minutes).</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasStockKeepingUnit">
+    <rdfs:subPropertyOf rdf:resource="http://schema.org/productID"/>
+    <rdfs:label xml:lang="en">has Stock Keeping Unit (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The Stock Keeping Unit, or SKU is a unique identifier for a product, service, or bundle from the perspective of a particular supplier, i.e. SKUs are mostly assigned and serialized at the merchant level. 
+Examples of SKUs are the ordering or parts numbers used by a particular Web shop or catalog.
+
+Consequently, the domain of gr:hasStockKeepingUnit is the union of the classes gr:Offering and gr:ProductOrService. 
+If attached to a gr:Offering, the SKU will usually reflect a merchant-specific identifier, i.e. one valid only for that particular retailer or shop. 
+If attached to a gr:ProductOrServiceModel, the SKU can reflect either the identifier used by the merchant or the part number used by the official manufacturer of that part. For the latter, gr:hasMPN is a better choice.
+
+Important: Be careful when assuming two products or services instances or offering instances to be identical based on the SKU. Since SKUs are unique only for the same gr:BusinessEntity, this can be assumed only when you are sure that the two SKU values refer to the same business entity. Such can be done by taking into account the provenance of the data. As long as instances of gr:Offering are concerned, you can also check that the offerings are being offered by the same gr:Business Entity.
+
+Usually, the properties gr:hasEAN_UCC-13 and gr:hasGTIN-14 are much more reliable identifiers, because they are globally unique.
+
+See also http://en.wikipedia.org/wiki/Stock_Keeping_Unit.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#qualitativeProductOrServiceProperty">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+    <rdfs:label xml:lang="en">qualitative product or service property (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This is the super property of all qualitative properties for products and services. All properties in product or service ontologies for which gr:QualitativeValue instances are specified are subproperties of this property.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <gr:Offering>
+    <gr:description>VGhlIFNldmVuIE5vYWhpZGUgTGF3cw0KMS4gQmVsaWVmIGluIEctZA0KMi4gUmVzcGVjdCBHLWQgYW5kIHByYWlzZSBoaW0NCjMuIFJlc3BlY3QgaHVtYW4gbGlmZQ0KNC4gUmVzcGVjdCB0aGUgZmFtaWx5DQo1LiBSZXNwZWN0IGh1bWFuIGJlaW5ncw0KNi4gSGF2ZSBhIGp1ZGljaWFsIHN5c3RlbQ0KNy4gUmVzcGVjdCBhbGwgY3JlYXR1cmVz</gr:description>
+    <gr:category>42</gr:category>
+  </gr:Offering>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#availableDeliveryMethods">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <rdfs:label xml:lang="en">available delivery methods (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This specifies the gr:DeliveryMethod or methods available for a given gr:Offering.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <gr:BusinessFunction rdf:about="http://purl.org/goodrelations/v1#Repair">
+    <rdfs:comment xml:lang="en">This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the evaluation of the chances for repairing, and, if positive, repair of the specified gr:ProductOrService. Repairing means actions that restore the originally intended function of a product that suffers from outage or malfunction.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Repair (business function)</rdfs:label>
+  </gr:BusinessFunction>
+  <gr:PaymentMethod rdf:about="http://purl.org/goodrelations/v1#GoogleCheckout">
+    <rdfs:comment xml:lang="en">Payment via the Google Checkout payment service.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Google Checkout (payment method)</rdfs:label>
+  </gr:PaymentMethod>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#includes">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <rdfs:label xml:lang="en">includes (0..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <rdfs:comment xml:lang="en">This object property is a shortcut for the original gr:includesObject property for the common case of having exactly one single gr:ProductOrService instance included in an Offering. 
+
+When linking to an instance of gr:SomeItems or gr:Individual, it is equivalent to using a gr:TypeAndQuantityNode with gr:hasUnitOfMeasurement="C62"^^xsd:string and gr:amountOfThisGood="1.0"^^xsd:float for that good.
+
+When linking to a gr:ProductOrServiceModel, it is equivalent to 
+1. defining an blank node for a gr:SomeItems
+2. linking that blank node via gr:hasMakeAndModel to the gr:ProductOrServiceModel, and
+3. linking from the gr:Offering to that blank node using another blank node of type gr:TypeAndQuantityNode with gr:hasUnitOfMeasurement="C62"^^xsd:string and gr:amountOfThisGood="1.0"^^xsd:float for that good.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <gr:BusinessEntityType rdf:about="http://purl.org/goodrelations/v1#Business">
+    <rdfs:comment xml:lang="en">The gr:BusinessEntityType representing such agents that are themselves offering commercial services or products on the market. Usually, businesses are characterized by the fact that they are officially registered with the public administration and strive for profits by their activities.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Business (business entity type)</rdfs:label>
+  </gr:BusinessEntityType>
+  <gr:BusinessFunction rdf:about="http://purl.org/goodrelations/v1#Sell">
+    <rdfs:comment xml:lang="en">This gr:BusinessFunction indicates that the gr:BusinessEntity offers to permanently transfer all property rights on the specified gr:ProductOrService.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Sell (business function)</rdfs:label>
+  </gr:BusinessFunction>
+  <owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#deprecated"/>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasValue">
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:label xml:lang="en">has value (0..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <rdfs:comment xml:lang="en">This subproperty specifies that the upper and lower limit of the given gr:QuantitativeValue are identical and have the respective value. It is a shortcut for such cases where a quantitative property is (at least practically) a single point value and not an interval.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:subPropertyOf>
+      <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasMaxValue">
+        <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+        <rdfs:label xml:lang="en">has max value (0..1)</rdfs:label>
+        <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+        <rdfs:comment xml:lang="en">This property captures the upper limit of a gr:QuantitativeValue instance.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+      </owl:DatatypeProperty>
+    </rdfs:subPropertyOf>
+    <rdfs:subPropertyOf>
+      <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasMinValue">
+        <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+        <rdfs:label xml:lang="en">has min value (0..1)</rdfs:label>
+        <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+        <rdfs:comment xml:lang="en">This property captures the lower limit of a gr:QuantitativeValue instance.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+      </owl:DatatypeProperty>
+    </rdfs:subPropertyOf>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasBrand">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <rdfs:label xml:lang="en">has brand (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This specifies the brand or brands (gr:Brand) associated with a gr:ProductOrService, or the brand or brands maintained by a gr:BusinessEntity.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <gr:PaymentMethod rdf:about="http://purl.org/goodrelations/v1#ByBankTransferInAdvance">
+    <rdfs:comment xml:lang="en">Payment by bank transfer in advance, i.e., the offering gr:BusinessEntity will inform the buying party about their bank account details and will deliver the goods upon receipt of the due amount.
+This is equivalent to payment by wire transfer.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">By bank transfer in advance (payment method)</rdfs:label>
+  </gr:PaymentMethod>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasOpeningHoursDayOfWeek">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <rdfs:label xml:lang="en">has opening hours day of week (1..*)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <rdfs:comment xml:lang="en">This specifies the gr:DayOfWeek to which the gr:OpeningHoursSpecification is related.
+
+Note: Use multiple instances of gr:OpeningHoursSpecification for specifying the opening hours for multiple days if the opening hours differ.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#priceType">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:label xml:lang="en">price type (0..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#UnitPriceSpecification"/>
+    <rdfs:comment xml:lang="en">This attribute can be used to distinguish multiple different price specifications for the same gr:Offering. It supersedes the former gr:isListPrice property. The following values are recommended:
+
+The absence of this property marks the actual sales price.
+
+SRP: "suggested retail price" - applicable for all sorts of a non-binding retail price recommendations, e.g. such published by the manufacturer or the distributor. This value replaces the former gr:isListPrice property.
+
+INVOICE: The invoice price, mostly used in the car industry - this is the price a dealer pays to the manufacturer, excluding rebates and charges.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <gr:DeliveryMethod rdf:about="http://purl.org/goodrelations/v1#DeliveryModeOwnFleet">
+    <rdfs:comment xml:lang="en">Delivery of the goods by using a fleet of vehicles either owned and operated or subcontracted by the gr:BusinessEntity.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Delivery mode own fleet (delivery method)</rdfs:label>
+  </gr:DeliveryMethod>
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/rights"/>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#eligibleRegions">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:label xml:lang="en">eligible regions (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#DeliveryChargeSpecification"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#License"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This property specifies the geo-political region or regions for which the gr:Offering, gr:License, or gr:DeliveryChargeSpecification is valid using the two-character version of ISO 3166-1 (ISO 3166-1 alpha-2)  for regions or ISO 3166-2 , which breaks down the countries from ISO 3166-1 into administrative subdivisions.
+
+Important: Do NOT use 3-letter ISO 3166-1 codes!</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <gr:PaymentMethodCreditCard rdf:about="http://purl.org/goodrelations/v1#VISA">
+    <rdfs:comment xml:lang="en">Payment by credit or debit cards issued by the VISA network.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">VISA (payment method)</rdfs:label>
+  </gr:PaymentMethodCreditCard>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#valueReference">
+    <rdfs:range>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#QualitativeValue"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:range>
+    <rdfs:label xml:lang="en">value reference (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#QualitativeValue"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The superclass of properties that link a gr:QuantitativeValue or a gr:QualitativeValue to a second gr:QuantitativeValue or a gr:QualitativeValue that provides additional information on the original value. A good modeling practice is to define specializations of this property (e.g. foo:referenceTemperature) for your particular domain.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#validFrom">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
+    <rdfs:label xml:lang="en">valid from (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#PriceSpecification"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#License"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This property specifies the beginning of the validity of the gr:Offering, gr:PriceSpecification, gr:License, or gr:OpeningHoursSpecification.
+A time-zone should be specified. For a time in GMT/UTC, simply add a "Z" following the time:
+
+2008-05-30T09:30:10Z.
+
+Alternatively, you can specify an offset from the UTC time by adding a positive or negative time following the time:
+
+2008-05-30T09:30:10-09:00
+
+or
+
+2008-05-30T09:30:10+09:00.
+
+Note: If multiple contradicting instances of a gr:Offering, gr:PriceSpecification, or gr:OpeningHoursSpecification exist, it is a good heuristics to assume that
+1. Information with validity information for the respective period of time ranks higher than information without validity information.
+2. Among conflicting nodes both having validity information, the one with the shorter validity span ranks higher.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <gr:DeliveryMethod rdf:about="http://purl.org/goodrelations/v1#DeliveryModeDirectDownload">
+    <rdfs:comment xml:lang="en">Delivery of the goods via direct download from the Internet, i.e., the offering gr:BusinessEntity provides the buying party with details on how to retrieve the goods online. Connection fees and other costs of using the infrastructure are to be carried by the buying party.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Delivery mode direct download (delivery method)</rdfs:label>
+  </gr:DeliveryMethod>
+  <gr:DeliveryModeParcelService rdf:about="http://purl.org/goodrelations/v1#UPS">
+    <rdfs:comment xml:lang="en">Delivery via the parcel service UPS.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">UPS (delivery method)</rdfs:label>
+  </gr:DeliveryModeParcelService>
+  <gr:BusinessFunction rdf:about="http://purl.org/goodrelations/v1#ConstructionInstallation">
+    <rdfs:comment xml:lang="en">This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the construction and/or installation of the specified gr:ProductOrService at the customer's location.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Construction / installation (business function)</rdfs:label>
+  </gr:BusinessFunction>
+  <gr:PaymentMethod rdf:about="http://purl.org/goodrelations/v1#CheckInAdvance">
+    <rdfs:comment xml:lang="en">Payment by sending a check in advance, i.e., the offering gr:BusinessEntity will deliver the goods upon receipt of a check over the due amount. There are variations in handling payment by check - sometimes, shipment will be upon receipt of the check as a document, sometimes the shipment will take place only upon successful crediting of the check.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Check in advance (payment method)</rdfs:label>
+  </gr:PaymentMethod>
+  <owl:DatatypeProperty rdf:about="http://schema.org/name">
+    <owl:equivalentProperty>
+      <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#name">
+        <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+        <rdfs:label xml:lang="en">name (0..1)</rdfs:label>
+        <rdfs:domain>
+          <owl:Class>
+            <owl:unionOf rdf:parseType="Collection">
+              <rdf:Description rdf:about="http://www.w3.org/2002/07/owl#Thing"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Brand"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessFunction"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#DayOfWeek"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#DeliveryChargeSpecification"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#DeliveryModeParcelService"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Individual"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Location"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#PaymentChargeSpecification"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#PaymentMethod"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#PaymentMethodCreditCard"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#PriceSpecification"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrServiceModel"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#QualitativeValue"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#QuantitativeValueFloat"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#QuantitativeValueInteger"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#SomeItems"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#UnitPriceSpecification"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+              <rdf:Description rdf:about="http://purl.org/goodrelations/v1#WarrantyScope"/>
+            </owl:unionOf>
+          </owl:Class>
+        </rdfs:domain>
+        <rdfs:comment xml:lang="en">A short text describing the respective resource.
+
+This property is semantically equivalent to dcterms:title and rdfs:label and just meant as a handy shortcut for marking up data.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+      </owl:DatatypeProperty>
+    </owl:equivalentProperty>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasWarrantyPromise">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <rdfs:label xml:lang="en">has warranty promise (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This specifies the gr:WarrantyPromise made by the gr:BusinessEntity for the given gr:Offering.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasGTIN-14">
+    <rdfs:subPropertyOf rdf:resource="http://schema.org/productID"/>
+    <rdfs:label xml:lang="en">has GTIN-14 (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The Global Trade Item Number (GTIN-14) of the given gr:ProductOrService or gr:Offering.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+  </owl:DatatypeProperty>
+  <gr:BusinessFunction rdf:about="http://purl.org/goodrelations/v1#LeaseOut">
+    <rdfs:comment xml:lang="en">This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the temporary right to use the specified gr:ProductOrService.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Lease Out (business function)</rdfs:label>
+  </gr:BusinessFunction>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasCurrencyValue">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
+    <rdfs:label xml:lang="en">has currency value (0..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <rdfs:comment xml:lang="en">This property specifies the amount of money for a price per unit, shipping charges, or payment charges. The currency and other relevant details are attached to the respective gr:PriceSpecification etc.
+
+For a gr:UnitPriceSpecification, this is the price for one unit or bundle (as specified in the unit of measurement of the unit price specification) of the respective gr:ProductOrService. For a gr:DeliveryChargeSpecification or a gr:PaymentChargeSpecification, it is the price per delivery or payment.
+
+GoodRelations also supports giving price information as intervals only. If this is needed, use gr:hasMaxCurrencyValue for the upper bound and gr:hasMinCurrencyValue for the lower bound. 
+
+Using gr:hasCurrencyValue sets the upper and lower bounds to the same given value, i.e., x gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x gr:hasMaxCurrencyValue y.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:subPropertyOf>
+      <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasMinCurrencyValue">
+        <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
+        <rdfs:label xml:lang="en">has min currency value (1..1)</rdfs:label>
+        <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+        <rdfs:comment xml:lang="en">This property specifies the LOWER BOUND of the amount of money for a price RANGE per unit, shipping charges, or payment charges. The currency and other relevant details are attached to the respective gr:PriceSpecification etc.
+For a gr:UnitPriceSpecification, this is the LOWER BOUND for the price for one unit or bundle (as specified in the unit of measurement of the unit price specification) of the respective gr:ProductOrService. For a gr:DeliveryChargeSpecification or a gr:PaymentChargeSpecification, it is the LOWER BOUND of the price per delivery or payment.
+
+Using gr:hasCurrencyValue sets the upper and lower bounds to the same given value, i.e., x gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x gr:hasMaxCurrencyValue y.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+      </owl:DatatypeProperty>
+    </rdfs:subPropertyOf>
+    <rdfs:subPropertyOf>
+      <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasMaxCurrencyValue">
+        <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
+        <rdfs:label xml:lang="en">has max currency value (1..1)</rdfs:label>
+        <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+        <rdfs:comment xml:lang="en">This property specifies the UPPER BOUND of the amount of money for a price RANGE per unit, shipping charges, or payment charges. The currency and other relevant details are attached to the respective gr:PriceSpecification etc.
+For a gr:UnitPriceSpecification, this is the UPPER BOUND for the price for one unit or bundle (as specified in the unit of measurement of the unit price specification) of the respective gr:ProductOrService. For a gr:DeliveryChargeSpecification or a gr:PaymentChargeSpecification, it is the UPPER BOUND of the price per delivery or payment.
+
+Using gr:hasCurrencyValue sets the upper and lower bounds to the same given value, i.e., x gr:hasCurrencyValue y implies x gr:hasMinCurrencyValue y, x gr:hasMaxCurrencyValue y.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+      </owl:DatatypeProperty>
+    </rdfs:subPropertyOf>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasCurrency">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:label xml:lang="en">has currency (1..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <rdfs:comment xml:lang="en">The currency for all prices in the gr:PriceSpecification given using the ISO 4217 standard (3 characters).</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <gr:BusinessFunction rdf:about="http://purl.org/goodrelations/v1#Buy">
+    <rdfs:comment xml:lang="en">This gr:BusinessFunction indicates that the gr:BusinessEntity is in general interested in purchasing the specified gr:ProductOrService.
+DEPRECATED. Use gr:seeks instead.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <rdfs:label xml:lang="en">Buy (business function, DEPRECATED)</rdfs:label>
+  </gr:BusinessFunction>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasMakeAndModel">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#ProductOrServiceModel"/>
+    <rdfs:label xml:lang="en">has make and model (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Individual"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#SomeItems"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This states that an actual product instance (gr:Individual) or a placeholder instance for multiple, unidentified such instances (gr:SomeItems) is one occurence of a particular gr:ProductOrServiceModel.
+
+Example: myFordT hasMakeAndModel FordT.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <gr:WarrantyScope rdf:about="http://purl.org/goodrelations/v1#PartsAndLabor-BringIn">
+    <rdfs:comment xml:lang="en">In case of a defect or malfunction, the buying party has the right to transport the good to a service location determined by the the selling gr:BusinessEntity and will not be be charged for labor, parts, and materials needed to fix the problem. All those costs will be covered by the selling business entity or one of its partnering business entities.
+
+Note: This is just a rough classification for filtering offers. It is up to the buying party to check the exact scope and terms and conditions of the gr:WarrantyPromise.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Parts and labor / bring-in (warranty scope)</rdfs:label>
+  </gr:WarrantyScope>
+  <gr:BusinessEntityType rdf:about="http://purl.org/goodrelations/v1#Enduser">
+    <rdfs:comment xml:lang="en">The gr:BusinessEntityType representing such agents that are purchasing the good or service for private consumption, in particular not for resale or for usage within an industrial enterprise. By default, a Business Entity is an Enduser.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Enduser (business entity type)</rdfs:label>
+  </gr:BusinessEntityType>
+  <owl:AnnotationProperty rdf:about="http://purl.org/goodrelations/v1#relatedWebService">
+    <rdfs:comment xml:lang="en">The URI of a SOAP or REST Web Service from which additional information about the gr:BusinessEntity, gr:Offering, gr:PriceSpecification, or gr:ProductOrService, or any other element,  can be obtained. The recommended range is xsd:anyURI i.e., the URI of a SOAP or REST Web Service.
+
+In principle, any existing or upcoming vocabulary for Web Services can be used in combination with GoodRelations, because the association between (a) the service description and (b) the GoodRelations description can be found via the Web Service URI value used with this gr:relatedWebService property.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">related Web Service (0..*)</rdfs:label>
+  </owl:AnnotationProperty>
+  <gr:DayOfWeek rdf:about="http://purl.org/goodrelations/v1#PublicHolidays">
+    <rdfs:comment xml:lang="en">A placeholder for all official public holidays at the gr:Location. This allows specifying the opening hours on public holidays. If a given day is a public holiday, this specification supersedes the opening hours for the respective day of the week.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Public holidays (day of week)</rdfs:label>
+    <gr:displayPosition rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">8</gr:displayPosition>
+  </gr:DayOfWeek>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#valueAddedTaxIncluded">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#boolean"/>
+    <rdfs:label xml:lang="en">value added tax included (0..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <rdfs:comment xml:lang="en">This property specifies whether the applicable value-added tax (VAT)  is included in the price of the gr:PriceSpecification or not.
+
+Note: This is a simple representation which may not properly reflect all details of local taxation.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#acceptedPaymentMethods">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <rdfs:label xml:lang="en">accepted payment methods (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The gr:PaymentMethod or methods accepted by the gr:BusinessEntity for the given gr:Offering.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasBusinessFunction">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <rdfs:label xml:lang="en">has business function (1..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This specifies the business function of the gr:Offering, i.e. whether the gr:BusinessEntity is offering to sell, to lease, or to repair the particular type of product. In the case of bundles, it is also possible to attach individual business functions to each gr:TypeAndQuantityNode. The business function of the main gr:Offering determines the business function for all included objects or services, unless a business function attached to a gr:TypeAndQuantityNode overrides it.
+	
+Note: While it is possible that an entity is offering multiple types of business functions for the same set of objects (e.g. rental and sales), this should usually not be stated by attaching multiple business functions to the same gr:Offering, since the gr:UnitPriceSpecification for the varying business functions will typically be very different.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:AnnotationProperty rdf:about="http://purl.org/goodrelations/v1#displayPosition">
+    <rdfs:comment xml:lang="en">The position at which the option or element should be listed in a menu or user dialog, lower numbers come first.
+
+The main usage of this property are the days of the week (gr:DayOfWeek), but it is also possible to apply it e.g. to product features or any other conceptual element.
+Note: Rely on this property only for data originating from a single RDF graph; otherwise, unpredictable results are possible.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">display position (0..1)</rdfs:label>
+  </owl:AnnotationProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasWarrantyScope">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <rdfs:label xml:lang="en">has warranty scope (0..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <rdfs:comment xml:lang="en">This states the gr:WarrantyScope of a given gr:WarrantyPromise.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#weight">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <rdfs:label xml:lang="en">weight (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The weight of the gr:ProductOrService.
+Typical unit code(s): GRM for gram, KGM for kilogram, LBR for pound</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:subPropertyOf rdf:resource="http://purl.org/goodrelations/v1#quantitativeProductOrServiceProperty"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#includesObject">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+    <rdfs:label xml:lang="en">includes object (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This object property links a gr:Offering to one or multiple gr:TypeAndQuantityNode or nodes that specify the components that are included in the respective offer.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/terms/license"/>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasEAN_UCC-13">
+    <rdfs:subPropertyOf rdf:resource="http://schema.org/productID"/>
+    <rdfs:label xml:lang="en">has EAN/UCC-13 (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The EAN·UCC-13 code of the given gr:ProductOrService or gr:Offering. This code is now officially called GTIN-13 (Global Trade Identifier Number) or EAN·UCC-13. Former 12-digit UPC codes can be converted into EAN·UCC-13 code by simply adding a preceeding zero.
+
+Note 1: When using this property for searching by 12-digit UPC codes, you must add a preceeding zero digit.
+Note 2: As of January 1, 2007, the former ISBN numbers for books etc. have been integrated into the EAN·UCC-13 code. For each old ISBN-10 code, there exists a proper translation into EAN·UCC-13 by adding "978" or "979" as prefix. Since the old ISBN-10 is now deprecated, GoodRelations does not provide a property for ISBNs.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+  </owl:DatatypeProperty>
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/subject"/>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#N-Ary-Relations">
+    <rdfs:comment xml:lang="en">This is the superclass for all classes that are placeholders for n-ary relations, which OWL cannot represent.
+DEPRECATED. Do not use this class in data or queries.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <rdfs:label xml:lang="en">N-ary relations (DEPRECATED)</rdfs:label>
+  </owl:Class>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#equal">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+    <owl:inverseOf rdf:resource="http://purl.org/goodrelations/v1#equal"/>
+    <rdfs:label xml:lang="en">equal (0..*)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+    <rdfs:comment xml:lang="en">This ordering relation for qualitative values indicates that the subject is equal to the object.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <gr:WarrantyScope rdf:about="http://purl.org/goodrelations/v1#Labor-BringIn">
+    <rdfs:comment xml:lang="en">In case of a defect or malfunction, the buying party has the right to transport the good to a service location determined by the the selling gr:BusinessEntity and will be charged only for parts and materials needed to fix the problem. Labor will be covered by the selling business entity or one of its partnering business entities.
+
+Note: This is just a rough classification for filtering offers. It is up to the buying party to check the exact scope and terms and conditions of the gr:WarrantyPromise.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Labor / bring-in (warranty scope)</rdfs:label>
+  </gr:WarrantyScope>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#height">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <rdfs:label xml:lang="en">height (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The height of the product.
+Typical unit code(s): CMT for centimeters, INH for inches</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:subPropertyOf rdf:resource="http://purl.org/goodrelations/v1#quantitativeProductOrServiceProperty"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#width">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <rdfs:label xml:lang="en">width (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The width of the gr:ProductOrService.
+Typical unit code(s): CMT for centimeters, INH for inches</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:subPropertyOf rdf:resource="http://purl.org/goodrelations/v1#quantitativeProductOrServiceProperty"/>
+  </owl:ObjectProperty>
+  <gr:PaymentMethod rdf:about="http://purl.org/goodrelations/v1#COD">
+    <rdfs:comment xml:lang="en">Collect on delivery / Cash on delivery - A payment method where the recipient of goods pays at the time of delivery. Usually, the amount of money is collected by the transportation company handling the goods.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">COD (payment method)</rdfs:label>
+  </gr:PaymentMethod>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasEligibleQuantity">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <rdfs:label xml:lang="en">has eligible quantity (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#PriceSpecification"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This specifies the interval and unit of measurement of ordering quantities for which the gr:Offering or gr:PriceSpecification is valid. This allows e.g. specifying that a certain freight charge is valid only for a certain quantity.
+Note that if an offering is a bundle, i.e. it consists of more than one unit of a single type of good, or if the unit of measurement for the good is different from unit (Common Code C62), then gr:hasEligibleQuantity refers to units of this bundle. In other words, "C62" for "Units or pieces" is usually the appropriate unit of measurement.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://schema.org/image">
+    <owl:equivalentProperty>
+      <owl:ObjectProperty rdf:about="http://xmlns.com/foaf/0.1/depiction"/>
+    </owl:equivalentProperty>
+  </owl:ObjectProperty>
+  <gr:DeliveryMethod rdf:about="http://purl.org/goodrelations/v1#DeliveryModeFreight">
+    <rdfs:comment xml:lang="en">Delivery by an unspecified air, sea, or ground freight carrier or cargo company.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Delivery mode freight (delivery method)</rdfs:label>
+  </gr:DeliveryMethod>
+  <owl:AnnotationProperty rdf:about="http://xmlns.com/foaf/0.1/homepage"/>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#eligibleDuration">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <rdfs:label xml:lang="en">eligible duration (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#License"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The minimal and maximal duration for which the given gr:Offering or gr:License is valid. This is mostly used for offers regarding accommodation, the rental of objects, or software licenses. The duration is specified by attaching an instance of gr:QuantitativeValue. The lower and upper boundaries are specified using the properties gr:hasMinValue and gr:hasMaxValue to that instance. If they are the same, use the gr:hasValue property. The unit of measurement is specified using the property gr:hasUnitOfMeasurement with a string holding a UN/CEFACT code suitable for durations, e.g. MON (months), DAY (days), HUR (hours), or MIN (minutes).
+
+The difference to the gr:validFrom and gr:validThrough properties is that those specify the absiolute interval during which the gr:Offering or gr:License is valid, while gr:eligibleDuration specifies the acceptable duration of the contract or usage.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <gr:PaymentMethod rdf:about="http://purl.org/goodrelations/v1#PayPal">
+    <rdfs:comment xml:lang="en">Payment via the PayPal payment service.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">PayPal (payment method)</rdfs:label>
+  </gr:PaymentMethod>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#nonEqual">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+    <owl:inverseOf rdf:resource="http://purl.org/goodrelations/v1#nonEqual"/>
+    <rdfs:label xml:lang="en">non equal (0..*)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+    <rdfs:comment xml:lang="en">This ordering relation for gr:QualitativeValue pairs indicates that the subject is not equal to the object.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#condition">
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <rdfs:label xml:lang="en">condition (0..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#ProductOrService"/>
+          <rdf:Description rdf:about="http://schema.org/Product"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">A textual description of the condition of the product or service, or the products or services included in the offer (when attached to a gr:Offering)</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <gr:BusinessEntityType rdf:about="http://purl.org/goodrelations/v1#PublicInstitution">
+    <rdfs:comment xml:lang="en">The gr:BusinessEntityType representing such agents that are part of the adminstration or owned by the public.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Public institution (business entity type)</rdfs:label>
+  </gr:BusinessEntityType>
+  <gr:DeliveryMethod rdf:about="http://purl.org/goodrelations/v1#DeliveryModePickUp">
+    <rdfs:comment xml:lang="en">Delivery of the goods by picking them up at one of the stores etc. (gr:Location) during the opening hours as specified by respective instances of gr:OpeningHoursSpecification.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Delivery mode pick up (delivery method)</rdfs:label>
+  </gr:DeliveryMethod>
+  <gr:PaymentMethodCreditCard rdf:about="http://purl.org/goodrelations/v1#Discover">
+    <rdfs:comment xml:lang="en">Payment by credit or debit cards issued by the Discover network.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Discover (payment method)</rdfs:label>
+  </gr:PaymentMethodCreditCard>
+  <gr:PaymentMethod rdf:about="http://purl.org/goodrelations/v1#DirectDebit">
+    <rdfs:comment xml:lang="en">Payment by direct debit, i.e., the buying party will inform the offering gr:BusinessEntity about its bank account details and authorizes the gr:BusinessEntity to collect the agreed amount directly from that account.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Direct debit (payment method)</rdfs:label>
+  </gr:PaymentMethod>
+  <gr:BusinessFunction rdf:about="http://purl.org/goodrelations/v1#ProvideService">
+    <rdfs:comment xml:lang="en">This gr:BusinessFunction indicates that the gr:BusinessEntity offers (or seeks) the respective type of service.
+
+Note: Maintain and Repair are also types of Services. However, products and services ontologies often provide classes for tangible products as well as for types of services. The business function gr:ProvideService is to be used with such goods that are services, while gr:Maintain and gr:Repair can be used with goods for which only the class of product exists in the ontology, but not the respective type of service.
+
+Example: Car maintenance could be expressed both as "provide the service car maintenance" or "maintain cars".</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Provide service (business function)</rdfs:label>
+  </gr:BusinessFunction>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#appliesToDeliveryMethod">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <rdfs:label xml:lang="en">applies to delivery method (0..*)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#DeliveryChargeSpecification"/>
+    <rdfs:comment xml:lang="en">This property specifies the gr:DeliveryMethod to which the gr:DeliveryChargeSpecification applies.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#owns">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#Individual"/>
+    <rdfs:label xml:lang="en">owns (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+          <rdf:Description rdf:about="http://schema.org/Person"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This property indicates that a particular person or business owns a particular product. It can be used to expose the products in one's posession in order to empower recommender systems to suggest matching offers.
+
+Note that the product must be an instance of the class gr:Individual.
+
+This property can also be safely applied to foaf:Agent instances.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <gr:PaymentMethodCreditCard rdf:about="http://purl.org/goodrelations/v1#MasterCard">
+    <rdfs:comment xml:lang="en">Payment by credit or debit cards issued by the MasterCard network.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">MasterCard (payment method)</rdfs:label>
+  </gr:PaymentMethodCreditCard>
+  <owl:DatatypeProperty rdf:about="http://purl.org/goodrelations/v1#hasUnitOfMeasurement">
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:label xml:lang="en">has unit of measurement (1..1)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#UnitPriceSpecification"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">The unit of measurement for a gr:QuantitativeValue, a gr:UnitPriceSpecification, or a gr:TypeAndQuantityNode given using the UN/CEFACT Common Code (3 characters).</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#offers">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <rdfs:label xml:lang="en">offers (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#BusinessEntity"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This links a gr:BusinessEntity to the offers (gr:Offering) it makes. If you want to express interest in receiving offers, use gr:seeks instead.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#addOn">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <rdfs:label xml:lang="en">add-on (0..*)</rdfs:label>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://purl.org/goodrelations/v1#Offering"/>
+          <rdf:Description rdf:about="http://schema.org/Offer"/>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:comment xml:lang="en">This property points from a gr:Offering to additional offerings that can only be obtained in combination with the first offering. This can be used to model supplements and extensions that are available for a surcharge. Any gr:PriceSpecification attached to the secondary offering is to be understood as an additional charge.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:AnnotationProperty rdf:about="http://purl.org/dc/elements/1.1/contributor"/>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#License">
+    <rdfs:comment xml:lang="en">A license is the specification of a bundle of rights that determines the type of activity or access offered by the gr:BusinessEntity on the gr:ProductOrService through the gr:Offering.
+	
+Licenses can be standardized (e.g. LPGL, Creative Commons, ...), vendor-specific, or individually defined for a single offer or product. Whether there is a fee for obtaining the license is specified using the gr:UnitPriceSpecification attached to the gr:Offering. Use foaf:page for linking to a document containing the license, e.g. in PDF or HTML.</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">License</rdfs:label>
+  </owl:Class>
+  <gr:DayOfWeek rdf:about="http://purl.org/goodrelations/v1#Wednesday">
+    <gr:hasNext>
+      <gr:DayOfWeek rdf:about="http://purl.org/goodrelations/v1#Thursday">
+        <gr:hasNext rdf:resource="http://purl.org/goodrelations/v1#Friday"/>
+        <gr:hasPrevious rdf:resource="http://purl.org/goodrelations/v1#Wednesday"/>
+        <rdfs:label xml:lang="en">Thursday (day of week)</rdfs:label>
+        <rdfs:comment xml:lang="en">Thursday as a day of the week.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+        <gr:displayPosition rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">4</gr:displayPosition>
+      </gr:DayOfWeek>
+    </gr:hasNext>
+    <gr:hasPrevious>
+      <gr:DayOfWeek rdf:about="http://purl.org/goodrelations/v1#Tuesday">
+        <gr:hasNext rdf:resource="http://purl.org/goodrelations/v1#Wednesday"/>
+        <gr:hasPrevious rdf:resource="http://purl.org/goodrelations/v1#Monday"/>
+        <rdfs:label xml:lang="en">Tuesday (day of week)</rdfs:label>
+        <rdfs:comment xml:lang="en">Tuesday as a day of the week.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+        <gr:displayPosition rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">2</gr:displayPosition>
+      </gr:DayOfWeek>
+    </gr:hasPrevious>
+    <rdfs:label xml:lang="en">Wednesday (day of week)</rdfs:label>
+    <rdfs:comment xml:lang="en">Wednesday as a day of the week.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <gr:displayPosition rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">3</gr:displayPosition>
+  </gr:DayOfWeek>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#BusinessEntityType">
+    <rdfs:comment xml:lang="en">A business entity type is a conceptual entity representing the legal form, the size, the main line of business, the position in the value chain, or any combination thereof, of a gr:BusinessEntity. From the ontological point of view, business entity types are mostly roles that a business entity has in the market. Business entity types are important for specifying eligible customers, since a gr:Offering is often valid only for business entities of a certain size, legal structure, or role in the value chain. 
+
+Examples: Consumers, Retailers, Wholesalers, or Public Institutions</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Business entity type</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+  </owl:Class>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#lesser">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+    <owl:inverseOf>
+      <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#greater">
+        <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
+        <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+        <owl:inverseOf rdf:resource="http://purl.org/goodrelations/v1#lesser"/>
+        <rdfs:label xml:lang="en">greater (0..*)</rdfs:label>
+        <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+        <rdfs:comment xml:lang="en">This ordering relation for qualitative values indicates that the subject is greater than the object.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+      </owl:ObjectProperty>
+    </owl:inverseOf>
+    <rdfs:label xml:lang="en">lesser (0..*)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+    <rdfs:comment xml:lang="en">This ordering relation for gr:QualitativeValue pairs indicates that the subject is lesser than the object.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#Location">
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+    <owl:equivalentClass rdf:resource="http://purl.org/goodrelations/v1#LocationOfSalesOrServiceProvisioning"/>
+    <rdfs:label xml:lang="en">Location</rdfs:label>
+    <rdfs:comment xml:lang="en">A location is a point or area of interest from which a particular product or service is available, e.g. a store, a bus stop, a gas station, or a ticket booth. The difference to gr:BusinessEntity is that the gr:BusinessEntity is the legal entity (e.g. a person or corporation) making the offer, while gr:Location is the store, office, or place. A chain restaurant will e.g. have one legal entity but multiple restaurant locations. Locations are characterized by an address or geographical position and a set of opening hour specifications for various days of the week.
+		
+Example: A rental car company may offer the Business Function Lease Out of cars from two locations, one in Fort Myers, Florida, and one in Boston, Massachussetts. Both stations are open 7:00 - 23:00 Mondays through Saturdays.
+
+Note: Typical address standards (vcard) and location data (geo, WGC84) should be attached to a gr:Location node. Since there already exist established vocabularies for this, the GoodRelations ontology does not provide respective attributes. Instead, the use of respective vocabularies is recommended. However, the gr:hasGlobalLocationNumber property is  provided for linking to public identifiers for business locations.
+		
+Compatibility with schema.org: This class is equivalent to http://schema.org/Place.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#LocationOfSalesOrServiceProvisioning">
+    <owl:equivalentClass rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <rdfs:label xml:lang="en">Location of sales or service provisioning (DEPRECATED)</rdfs:label>
+    <rdfs:comment xml:lang="en">DEPRECATED - This class is superseded by gr:Location. Replace all occurrences of gr:LocationOfSalesOrServiceProvisioning by gr:Location, if possible.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#PaymentMethod">
+    <rdfs:comment xml:lang="en">A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction. This element is mostly used for specifying the types of payment accepted by a gr:BusinessEntity.
+
+Examples: VISA, MasterCard, Diners, cash, or bank transfer in advance.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Payment method</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#DeliveryMethod">
+    <rdfs:comment xml:lang="en">A delivery method is a standardized procedure for transferring the product or service to the destination of fulfilment chosen by the customer. Delivery methods are characterized by the means of transportation used, and by the organization or group that is the contracting party for the sending gr:BusinessEntity (this is important, since the contracted party may subcontract the fulfilment to smaller, regional businesses).
+
+Examples: Delivery by mail, delivery by direct download, delivery by UPS</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Delivery method</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#DeliveryModeParcelService">
+    <rdfs:comment xml:lang="en">A private parcel service as the delivery mode available for a certain offering.
+
+Examples: UPS, DHL</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Delivery mode parcel service</rdfs:label>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#DeliveryChargeSpecification">
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentChargeSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#UnitPriceSpecification"/>
+    <rdfs:label xml:lang="en">Delivery charge specification</rdfs:label>
+    <rdfs:comment xml:lang="en">A delivery charge specification is a conceptual entity that specifies the additional costs asked for the delivery of a given gr:Offering using a particular gr:DeliveryMethod by the respective gr:BusinessEntity. A delivery charge specification is characterized by (1) a monetary amount per order, specified as a literal value of type float in combination with a currency, (2) the delivery method, (3) the target country or region, and (4)  whether this charge includes local sales taxes, namely VAT.
+A gr:Offering may be linked to multiple gr:DeliveryChargeSpecification nodes that specify alternative charges for disjoint combinations of target countries or regions, and delivery methods.
+
+Examples: Delivery by direct download is free of charge worldwide, delivery by UPS to Germany is 10 Euros per order, delivery by mail within the US is 5 Euros per order.
+
+The total amount of this charge is specified as a float value of the gr:hasCurrencyValue property. The currency is specified via the gr:hasCurrency datatype property. Whether the price includes VAT or not is indicated by the gr:valueAddedTaxIncluded property. The gr:DeliveryMethod to which this charge applies is specified using the gr:appliesToDeliveryMethod object property. The region or regions to which this charge applies is specified using the gr:eligibleRegions property, which uses ISO 3166-1 and ISO 3166-2 codes.
+
+If the price can only be given as a range, use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue for the upper and lower bounds.
+
+Important: When querying for the price, always use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#BusinessEntity">
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+    <owl:equivalentClass>
+      <owl:Class>
+        <owl:unionOf rdf:parseType="Collection">
+          <rdf:Description rdf:about="http://schema.org/Person"/>
+          <rdf:Description rdf:about="http://schema.org/Organization"/>
+        </owl:unionOf>
+      </owl:Class>
+    </owl:equivalentClass>
+    <rdfs:label xml:lang="en">Business entity</rdfs:label>
+    <rdfs:comment xml:lang="en">An instance of this class represents the legal agent making (or seeking) a particular offering. This can be a legal body or a person. A business entity has at least a primary mailing address and contact details. For this, typical address standards (vCard) and location data (geo, WGS84) can be attached. Note that the location of the business entity is not necessarily the location from which the product or service is being available (e.g. the branch or store). Use gr:Location for stores and branches.
+		
+Example: Siemens Austria AG, Volkswagen Ltd., Peter Miller's Cell phone Shop LLC
+
+Compatibility with schema.org: This class is equivalent to the union of http://schema.org/Person and http://schema.org/Organization.		
+</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://schema.org/Person">
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#QuantitativeValueInteger">
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValueFloat"/>
+    <rdfs:label xml:lang="en">Quantitative value integer</rdfs:label>
+    <rdfs:comment xml:lang="en">An instance of this class is an actual integer value for a quantitative property of a product. This instance is usually characterized by a minimal value, a maximal value, and a unit of measurement. 
+
+Example: A seating capacity between 1 and 8 persons.
+
+Note: Users must keep in mind that ranges in here mean that ALL possible values in this interval are covered. (Sometimes, the actual commitment may be less than that: "We sell cars from 2 - 12 seats" does often not really mean that they have cars with 2,3,4,...12 seats.). Someone renting out two types of rowing boats, one that fits for 1 or 2 people, and another that must be operated by 4 people cannot claim to rent boats with a seating capacity between 1 and 4 people. He or she is offering two boat types for 1-2 and 4 persons.
+		
+Compatibility with schema.org: This class is a subclass of http://schema.org/Quantity.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#OpeningHoursSpecification">
+    <rdfs:comment xml:lang="en">This is a conceptual entity that holds together all information about the opening hours on a given day (gr:DayOfWeek).</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Opening hours specification</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#ProductOrServicesSomeInstancesPlaceholder">
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:equivalentClass rdf:resource="http://purl.org/goodrelations/v1#SomeItems"/>
+    <rdfs:label xml:lang="en">Product or services some instances placeholder (DEPRECATED)</rdfs:label>
+    <rdfs:comment xml:lang="en">DEPRECATED - This class is superseded by gr:SomeItems. Replace all occurrences of gr:ProductOrServicesSomeInstancesPlaceholder by gr:SomeItems, if possible.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#PriceSpecification">
+    <rdfs:comment xml:lang="en">The superclass of all price specifications.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Price specification</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+  </owl:Class>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#predecessorOf">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#ProductOrServiceModel"/>
+    <owl:inverseOf>
+      <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#successorOf">
+        <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
+        <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#ProductOrServiceModel"/>
+        <owl:inverseOf rdf:resource="http://purl.org/goodrelations/v1#predecessorOf"/>
+        <rdfs:label xml:lang="en">successor of (0..*)</rdfs:label>
+        <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#ProductOrServiceModel"/>
+        <rdfs:comment xml:lang="en">This property indicates that the subject is a newer, often updated or improved variant of the gr:ProductOrServiceModel used as the object.
+
+Example: Golf III successorOf Golf II
+
+This relation is transitive.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+      </owl:ObjectProperty>
+    </owl:inverseOf>
+    <rdfs:label xml:lang="en">predecessor of (0..*)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#ProductOrServiceModel"/>
+    <rdfs:comment xml:lang="en">This property indicates that the subject is a previous, often discontinued variant of the gr:ProductOrServiceModel used as the object.
+
+Example: Golf III predecessorOf Golf IV
+
+This relation is transitive.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <gr:DayOfWeek rdf:about="http://purl.org/goodrelations/v1#Sunday">
+    <gr:hasNext>
+      <gr:DayOfWeek rdf:about="http://purl.org/goodrelations/v1#Monday">
+        <gr:hasNext rdf:resource="http://purl.org/goodrelations/v1#Tuesday"/>
+        <gr:hasPrevious rdf:resource="http://purl.org/goodrelations/v1#Sunday"/>
+        <rdfs:label xml:lang="en">Monday (day of week)</rdfs:label>
+        <rdfs:comment xml:lang="en">Monday as a day of the week.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+        <gr:displayPosition rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</gr:displayPosition>
+      </gr:DayOfWeek>
+    </gr:hasNext>
+    <gr:hasPrevious>
+      <gr:DayOfWeek rdf:about="http://purl.org/goodrelations/v1#Saturday">
+        <gr:hasNext rdf:resource="http://purl.org/goodrelations/v1#Sunday"/>
+        <gr:hasPrevious rdf:resource="http://purl.org/goodrelations/v1#Friday"/>
+        <rdfs:label xml:lang="en">Saturday (day of week)</rdfs:label>
+        <rdfs:comment xml:lang="en">Saturday as a day of the week.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+        <gr:displayPosition rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">6</gr:displayPosition>
+      </gr:DayOfWeek>
+    </gr:hasPrevious>
+    <rdfs:label xml:lang="en">Sunday (day of week)</rdfs:label>
+    <rdfs:comment xml:lang="en">Sunday as a day of the week.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <gr:displayPosition rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">7</gr:displayPosition>
+  </gr:DayOfWeek>
+  <owl:Class rdf:about="http://schema.org/Product">
+    <owl:equivalentClass rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#ProductOrServiceModel">
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <rdfs:subClassOf rdf:resource="http://schema.org/Product"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#SomeItems"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Individual"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <rdfs:label xml:lang="en">Product or service model</rdfs:label>
+    <rdfs:comment xml:lang="en">A product or service model is a intangible entity that specifies some characteristics of a group of similar, usually mass-produced products, in the sense of a prototype. In case of mass-produced products, there exists a relation gr:hasMakeAndModel between the actual product or service (gr:Individual or gr:SomeItems) and the prototype (gr:ProductOrServiceModel). GoodRelations treats product or service models as "prototypes" instead of a completely separate kind of entities, because this allows using the same domain-specific properties (e.g. gr:weight) for describing makes and models and for describing actual products.
+
+Examples: Ford T, Volkswagen Golf, Sony Ericsson W123 cell phone
+
+Note: An actual product or service (gr:Individual) by default shares the features of its model (e.g. the weight). However, this requires non-standard reasoning. See http://wiki.goodrelations-vocabulary.org/Axioms for respective rule sets.
+	
+Compatibility with schema.org: This class is (approximately) a subclass of http://schema.org/Product.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#PaymentChargeSpecification">
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#UnitPriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryChargeSpecification"/>
+    <rdfs:label xml:lang="en">Payment charge specification</rdfs:label>
+    <rdfs:comment xml:lang="en">A payment charge specification is a conceptual entity that specifies the additional costs asked for settling the payment after accepting a given gr:Offering using a particular gr:PaymentMethod. A payment charge specification is characterized by (1) a monetary amount per order specified as a literal value of type float in combination with a Currency, (2) the payment method, and (3) a whether this charge includes local sales taxes, namely VAT.
+A gr:Offering may be linked to multiple payment charge specifications that specify alternative charges for various payment methods.
+
+Examples: Payment by VISA or Mastercard costs a fee of 3 Euros including VAT, payment by bank transfer in advance is free of charge.
+
+The total amount of this surcharge is specified as a float value of the gr:hasCurrencyValue property. The currency is specified via the gr:hasCurrency datatype property. Whether the price includes VAT or not is indicated by the gr:valueAddedTaxIncluded datatype property. The gr:PaymentMethod to which this charge applies is specified using the gr:appliesToPaymentMethod object property.
+
+If the price can only be given as a range, use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue for the upper and lower bounds.
+
+Important: When querying for the price, always use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#UnitPriceSpecification">
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentChargeSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryChargeSpecification"/>
+    <rdfs:label xml:lang="en">Unit price specification</rdfs:label>
+    <rdfs:comment xml:lang="en">A unit price specification is a conceptual entity that specifies the price asked for a given gr:Offering by the respective gr:Business Entity. An offering may be linked to multiple unit price specifications that specify alternative prices for non-overlapping sets of conditions (e.g. quantities or sales regions) or with differing validity periods. 
+
+A unit price specification is characterized by (1) the lower and upper limits and the unit of measurement of the eligible quantity, (2) by a monetary amount per unit of the product or service, and (3)  whether this prices includes local sales taxes, namely VAT.
+	
+Example: The price, including VAT, for 1 kg of a given material is 5 Euros per kg for 0 - 5 kg and 4 Euros for quantities above 5 kg.
+
+The eligible quantity interval for a given price is specified using the object property gr:hasEligibleQuantity, which points to an instance of gr:QuantitativeValue. The currency is specified using the gr:hasCurrency property, which points to an ISO 4217 currency code. The unit of measurement for the eligible quantity is specified using the gr:hasUnitOfMeasurement datatype property, which points to an UN/CEFACT Common Code (3 characters).
+	
+In most cases, the appropriate unit of measurement is the UN/CEFACT Common Code "C62" for "Unit or piece", since a gr:Offering is defined by the quantity and unit of measurement of all items included (e.g. "1 kg of bananas plus a 2 kg of apples"). As long at the offering consists of only one item, it is also possible to use an unit of measurement of choice for specifying the price per unit. For bundles, however, only  "C62" for "Unit or piece" is a valid unit of measurement.
+
+You can assume that the price is given per unit or piece if there is no gr:hasUnitOfMeasurement property attached to the price.
+	
+Whether VAT and sales taxes are included in this price is specified using the property gr:valueAddedTaxIncluded (xsd:boolean).
+	
+The price per unit of measurement is specified as a float value of the gr:hasCurrencyValue property. The currency is specified via the gr:hasCurrency datatype property. Whether the price includes VAT or not is indicated by the gr:valueAddedTaxIncluded datatype property.
+
+The property priceType can be used to indicate that the price is a retail price recommendation only (i.e. a list price). 
+
+If the price can only be given as a range, use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue for the upper and lower bounds.
+
+Important: When querying for the price, always use gr:hasMaxCurrencyValue and gr:hasMinCurrencyValue.
+
+Note 1: Due to the complexity of pricing scenarios in various industries, it may be necessary to create extensions of this fundamental model of price specifications. Such can be done easily by importing and refining the GoodRelations ontology.
+
+Note 2: For Google, attaching a gr:validThrough statement to a gr:UnitPriceSpecification is mandatory. 
+</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://schema.org/Organization">
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+  </owl:Class>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasNext">
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:inverseOf>
+      <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#hasPrevious">
+        <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+        <owl:inverseOf rdf:resource="http://purl.org/goodrelations/v1#hasNext"/>
+        <rdfs:label xml:lang="en">has previous (0..1)</rdfs:label>
+        <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+        <rdfs:comment xml:lang="en">This ordering relation for gr:DayOfWeek indicates that the subject is directly preceeded by the object.
+
+Example: Tuesday hasPrevious Monday
+
+Since days of the week are a cycle, this property is not transitive.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+      </owl:ObjectProperty>
+    </owl:inverseOf>
+    <rdfs:label xml:lang="en">has next (0..1)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <rdfs:comment xml:lang="en">This ordering relation for gr:DayOfWeek indicates that the subject is directly followed by the object.
+
+Example: Monday hasNext Tuesday
+
+Since days of the week are a cycle, this property is not transitive.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#WarrantyScope">
+    <rdfs:comment xml:lang="en">The warranty scope represents types of services that will be provided free of charge by the vendor or manufacturer in the case of a defect (e.g. labor and parts, just parts), as part of the warranty included in an gr:Offering. The actual services may be provided by the gr:BusinessEntity making the offering, by the manufacturer of the product, or by a third party. 
+
+Examples: Parts and Labor, Parts</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Warranty scope</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://schema.org/Offer">
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#WarrantyPromise">
+    <rdfs:comment xml:lang="en">This is a conceptual entity that holds together all aspects of the n-ary relation gr:hasWarrantyPromise.
+
+A Warranty promise is an entity representing the duration and scope of services that will be provided to a customer free of charge in case of a defect or malfunction of the gr:ProductOrService. A warranty promise is characterized by its temporal duration (usually starting with the date of purchase) and its gr:WarrantyScope. The warranty scope represents the types of services provided (e.g. labor and parts, just parts) of the warranty included in an gr:Offering. The actual services may be provided by the gr:BusinessEntity making the offering, by the manufacturer of the product, or by a third party. There may be multiple warranty promises associated with a particular offering, which differ in duration and scope (e.g. pick-up service during the first 12 months, just parts and labor for 36 months).
+
+Examples: 12 months parts and labor, 36 months parts</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Warranty promise</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#PaymentMethodCreditCard">
+    <rdfs:comment xml:lang="en">The subclass of gr:PaymentMethod represents all variants and brands of credit or debit cards as a standardized procedure for transferring the monetary amount for a purchase. It is mostly used for specifying the types of payment accepted by a gr:Business Entity.
+
+Examples: VISA, MasterCard, or American Express.</rdfs:comment>
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Payment method credit card</rdfs:label>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#Individual">
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <rdfs:subClassOf rdf:resource="http://schema.org/Product"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#SomeItems"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrServiceModel"/>
+    <owl:equivalentClass rdf:resource="http://purl.org/goodrelations/v1#ActualProductOrServiceInstance"/>
+    <rdfs:label xml:lang="en">Individual</rdfs:label>
+    <rdfs:comment xml:lang="en">A gr:Individual is an actual product or service instance, i.e., a single identifiable object or action that creates some increase in utility (in the economic sense) for the individual possessing or using this very object (product) or for the individual in whose favor this very action is being taken (service). Products or services are types of goods in the economic sense. For an overview of goods and commodities in economics, see Milgate (1987).
+
+Examples: MyThinkpad T60, the pint of beer standing in front of me, my Volkswagen Golf, the haircut that I received or will be receiving at a given date and time.
+
+Note 1: In many cases, product or service instances are not explicitly exposed on the Web but only claimed to exist (i.e. existentially quantified). In this case, use gr:SomeItems.
+Note 2: This class is the new, shorter form of the former gr:ActualProductOrServiceInstance.
+
+Compatibility with schema.org: This class is a subclass of http://schema.org/Product.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#DayOfWeek">
+    <rdfs:comment xml:lang="en">The day of the week, used to specify  to which day the opening hours of a gr:OpeningHoursSpecification refer.
+
+Examples: Monday, Tuesday, Wednesday,...</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Day of week</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#ActualProductOrServiceInstance">
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:equivalentClass rdf:resource="http://purl.org/goodrelations/v1#Individual"/>
+    <rdfs:label xml:lang="en">Actual product or service instance (DEPRECATED)</rdfs:label>
+    <rdfs:comment xml:lang="en">DEPRECATED - This class is superseded by gr:Individual. Replace all occurrences of gr:ActualProductOrServiceInstance by gr:Individual, if possible.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#QuantitativeValueFloat">
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValueInteger"/>
+    <rdfs:label xml:lang="en">Quantitative value float</rdfs:label>
+    <rdfs:comment xml:lang="en">An instance of this class is an actual float value for a quantitative property of a product. This instance is usually characterized by a minimal value, a maximal value, and a unit of measurement.
+
+Examples: The intervals "between 10.0  and 25.4 kilogramms" or "10.2 and 15.5 milimeters".
+
+Compatibility with schema.org: This class is a subclass of http://schema.org/Quantity.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#Brand">
+    <rdfs:comment xml:lang="en">A brand is the identity of a specific product, service, or business. Use foaf:logo for attaching a brand logo and gr:name or rdfs:label for attaching the brand name.	
+
+(Source: Wikipedia, the free encyclopedia, see http://en.wikipedia.org/wiki/Brand)</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Brand</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#QualitativeValue">
+    <rdfs:comment xml:lang="en">A qualitative value is a predefined value for a product characteristic. 
+	
+Examples: the color "green" or the power cord plug type "US"; the garment sizes "S", "M", "L", and "XL".
+	
+Note: Value sets are supported by creating subclasses of this class. Ordinal relations between values (gr:greater, gr:lesser, ...) are provided directly by GoodRelations.
+
+Compatibility with schema.org: This class is equivalent to http://schema.org/Enumeration.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Qualitative value</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+  </owl:Class>
+  <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#greaterOrEqual">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
+    <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+    <owl:inverseOf>
+      <owl:ObjectProperty rdf:about="http://purl.org/goodrelations/v1#lesserOrEqual">
+        <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
+        <rdfs:range rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+        <owl:inverseOf rdf:resource="http://purl.org/goodrelations/v1#greaterOrEqual"/>
+        <rdfs:label xml:lang="en">lesser or equal (0..*)</rdfs:label>
+        <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+        <rdfs:comment xml:lang="en">This ordering relation for gr:QualitativeValue pairs indicates that the subject is lesser than or equal to the object.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+      </owl:ObjectProperty>
+    </owl:inverseOf>
+    <rdfs:label xml:lang="en">greater or equal (0..*)</rdfs:label>
+    <rdfs:domain rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+    <rdfs:comment xml:lang="en">This ordering relation for qualitative values indicates that the subject is greater than or equal to the object.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:ObjectProperty>
+  <owl:Class rdf:about="http://schema.org/Place">
+    <owl:equivalentClass rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#BusinessFunction">
+    <rdfs:comment xml:lang="en">The business function specifies the type of activity or access (i.e., the bundle of rights) offered by the gr:BusinessEntity on the gr:ProductOrService through the gr:Offering. Typical are sell, rental or lease, maintenance or repair, manufacture / produce, recycle / dispose, engineering / construction, or installation.
+
+Licenses and other proprietary specifications of access rights are also instances of this class.
+
+Examples: A particular offering made by Miller Rentals Ltd. says that they (1) sell Volkswagen Golf convertibles, (2) lease out a particular Ford pick-up truck, and (3) dispose car wrecks of any make and model.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Business function</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#TypeAndQuantityNode">
+    <rdfs:comment xml:lang="en">This class collates all the information about a gr:ProductOrService included in a bundle. If a gr:Offering contains just one item, you can directly link from the gr:Offering to the gr:ProductOrService using gr:includes. If the offering contains multiple items, use an instance of this class for each component to indicate the quantity, unit of measurement, and type of product, and link from the gr:Offering via gr:includesObject.
+
+Example: An offering may include of 100g of Butter and 1 kg of potatoes, or 1 cell phone and 2 headsets.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Type and quantity node</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+  </owl:Class>
+  <gr:DayOfWeek rdf:about="http://purl.org/goodrelations/v1#Friday">
+    <gr:hasNext rdf:resource="http://purl.org/goodrelations/v1#Saturday"/>
+    <gr:hasPrevious rdf:resource="http://purl.org/goodrelations/v1#Thursday"/>
+    <rdfs:label xml:lang="en">Friday (day of week)</rdfs:label>
+    <rdfs:comment xml:lang="en">Friday as a day of the week.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <gr:displayPosition rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">5</gr:displayPosition>
+  </gr:DayOfWeek>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#QuantitativeValue">
+    <rdfs:comment xml:lang="en">A quantitative value is a numerical interval that represents the range of a certain gr:quantitativeProductOrServiceProperty in terms of the lower and upper bounds for a particular gr:ProductOrService. It is to be interpreted in combination with the respective unit of measurement. Most quantitative values are intervals even if they are in practice often treated as a single point value.
+	
+Example: a weight between 10 and 25 kilogramms, a length between 10 and 15 milimeters.
+
+Compatibility with schema.org: This class is equivalent to http://schema.org/Quantity.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Quantitative value</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#ProductOrService">
+    <rdfs:comment xml:lang="en">The superclass of all classes describing products or services types, either by nature or purpose. Examples for such subclasses are "TV set", "vacuum cleaner", etc. An instance of this class can be either an actual product or service (gr:Individual), a placeholder instance for unknown instances of a mass-produced commodity (gr:SomeItems), or a model / prototype specification (gr:ProductOrServiceModel). When in doubt, use gr:SomeItems.
+
+Examples: 
+a) MyCellphone123, i.e. my personal, tangible cell phone (gr:Individual)
+b) Siemens1234, i.e. the Siemens cell phone make and model 1234 (gr:ProductOrServiceModel)
+c) dummyCellPhone123 as a placeholder for actual instances of a certain kind of cell phones (gr:SomeItems)
+	
+Note: Your first choice for specializations of gr:ProductOrService should be http://www.productontology.org.
+
+Compatibility with schema.org: This class is (approximately) equivalent to http://schema.org/Product.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Product or service</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Offering"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#Offering">
+    <rdfs:comment xml:lang="en">An offering represents the public, not necessarily binding, not necessarily exclusive, announcement by a gr:BusinessEntity to provide (or seek) a certain gr:BusinessFunction for a certain gr:ProductOrService to a specified target audience. An offering is specified by the type of product or service or bundle it refers to, what business function is being offered (sales, rental, ...), and a set of commercial properties. It can either refer to 
+(1) a clearly specified instance (gr:Individual),
+(2) to a set of anonymous instances of a given type (gr:SomeItems),
+(3) a product model specification (gr:ProductOrServiceModel), see also section 3.3.3 of the GoodRelations Technical Report. 
+
+An offering may be constrained in terms of the eligible type of business partner, countries, quantities, and other commercial properties. The definition of the commercial properties, the type of product offered, and the business function are explained in other parts of this vocabulary in more detail.
+
+Example: Peter Miller offers to repair TV sets made by Siemens, Volkswagen Innsbruck sells a particular instance of a Volkswagen Golf at $10,000.
+
+Compatibility with schema.org: This class is a superclass to http://schema.org/Offer, since gr:Offering can also represent demand.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+    <rdfs:label xml:lang="en">Offering</rdfs:label>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Location"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#OpeningHoursSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PriceSpecification"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessFunction"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QuantitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntityType"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyScope"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Brand"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#PaymentMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#WarrantyPromise"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#QualitativeValue"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DeliveryMethod"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#BusinessEntity"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#DayOfWeek"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#TypeAndQuantityNode"/>
+  </owl:Class>
+  <owl:Class rdf:about="http://purl.org/goodrelations/v1#SomeItems">
+    <rdfs:subClassOf rdf:resource="http://purl.org/goodrelations/v1#ProductOrService"/>
+    <rdfs:subClassOf rdf:resource="http://schema.org/Product"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#ProductOrServiceModel"/>
+    <owl:disjointWith rdf:resource="http://purl.org/goodrelations/v1#Individual"/>
+    <owl:equivalentClass rdf:resource="http://purl.org/goodrelations/v1#ProductOrServicesSomeInstancesPlaceholder"/>
+    <rdfs:label xml:lang="en">Some items</rdfs:label>
+    <rdfs:comment xml:lang="en">A placeholder instance for unknown instances of a mass-produced commodity. This is used as a computationally cheap work-around for such instances that are not individually exposed on the Web but just stated to exist (i.e., which are existentially quantified).
+
+Example: An instance of this class can represent an anonymous set of green Siemens1234 phones. It is different from the gr:ProductOrServiceModel Siemens1234, since this refers to the make and model, and it is different from a particular instance of this make and model (e.g. my individual phone) since the latter can be sold only once.
+
+Note: This class is the new, shorter form of the former gr:ProductOrServicesSomeInstancesPlaceholder.
+		
+Compatibility with schema.org: This class is (approximately) a subclass of http://schema.org/Product.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource="http://purl.org/goodrelations/v1"/>
+  </owl:Class>
+</rdf:RDF>

ontologies/wine.rdf 2402(+2402 -0)

diff --git a/ontologies/wine.rdf b/ontologies/wine.rdf
new file mode 100644
index 0000000..2978259
--- /dev/null
+++ b/ontologies/wine.rdf
@@ -0,0 +1,2402 @@
+<?xml version="1.0"?>
+<!DOCTYPE rdf:RDF [
+     <!ENTITY vin  "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#" >
+     <!ENTITY food "http://www.w3.org/TR/2003/PR-owl-guide-20031209/food#" >
+     <!ENTITY owl  "http://www.w3.org/2002/07/owl#" >
+     <!ENTITY xsd  "http://www.w3.org/2001/XMLSchema#" >
+   ]>
+
+<rdf:RDF
+  xmlns     = "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#"
+  xmlns:vin = "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#"
+  xml:base  = "http://www.w3.org/TR/2003/PR-owl-guide-20031209/wine#"
+  xmlns:food= "http://www.w3.org/TR/2003/PR-owl-guide-20031209/food#"
+  xmlns:owl = "http://www.w3.org/2002/07/owl#"
+  xmlns:rdf = "http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+  xmlns:rdfs= "http://www.w3.org/2000/01/rdf-schema#"
+  xmlns:xsd = "http://www.w3.org/2001/XMLSchema#">
+
+  <owl:Ontology rdf:about="">
+    <rdfs:comment>An example OWL ontology</rdfs:comment>
+    <owl:priorVersion>
+      <owl:Ontology rdf:about="http://www.w3.org/TR/2003/CR-owl-guide-20030818/wine"/>
+    </owl:priorVersion>
+    <owl:imports rdf:resource="http://www.w3.org/TR/2003/PR-owl-guide-20031209/food"/>
+    <rdfs:comment>Derived from the DAML Wine ontology at 
+      http://ontolingua.stanford.edu/doc/chimaera/ontologies/wines.daml
+      Substantially changed, in particular the Region based relations.
+    </rdfs:comment>
+    <rdfs:label>Wine Ontology</rdfs:label>
+  </owl:Ontology>
+  
+  <owl:Class rdf:ID="Wine">
+    <rdfs:subClassOf rdf:resource="&food;PotableLiquid" />
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasMaker" />
+	<owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasMaker" />
+	<owl:allValuesFrom rdf:resource="#Winery" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+ 	<owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:minCardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn"/> 
+        <owl:someValuesFrom rdf:resource="&vin;Region"/>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:label xml:lang="en">wine</rdfs:label>
+    <rdfs:label xml:lang="fr">vin</rdfs:label>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Vintage">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasVintageYear"/>  
+        <owl:cardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:cardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+
+  <owl:Class rdf:ID="WineGrape">
+    <rdfs:subClassOf rdf:resource="&food;Grape" />
+  </owl:Class>
+  
+  <owl:Class rdf:ID="WhiteWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#White" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="WhiteTableWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#TableWine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#White" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="WhiteNonSweetWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#WhiteWine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Dry" />
+              <owl:Thing rdf:about="#OffDry" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="WhiteLoire">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Loire" />
+      <owl:Class rdf:about="#WhiteWine" />
+    </owl:intersectionOf>
+  </owl:Class>
+
+  <owl:Class rdf:about="#WhiteLoire">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#CheninBlancGrape" />
+              <owl:Thing rdf:about="#PinotBlancGrape" />
+              <owl:Thing rdf:about="#SauvignonBlancGrape" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="WhiteBurgundy">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Burgundy" />
+      <owl:Class rdf:about="#WhiteWine" />
+    </owl:intersectionOf>
+  </owl:Class>
+
+  <owl:Class rdf:about="#WhiteBurgundy">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#ChardonnayGrape" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="WhiteBordeaux">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Bordeaux" />
+      <owl:Class rdf:about="#WhiteWine" />
+    </owl:intersectionOf>
+  </owl:Class>
+
+  <owl:Class rdf:about="#WhiteBordeaux">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#SemillonGrape" />
+              <owl:Thing rdf:about="#SauvignonBlancGrape" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Region" />
+
+  <owl:ObjectProperty rdf:ID="locatedIn">
+    <rdf:type rdf:resource="&owl;TransitiveProperty" />
+    <rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing" />
+    <rdfs:range rdf:resource="#Region" />
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:ID="adjacentRegion">
+    <rdf:type rdf:resource="&owl;SymmetricProperty" />
+    <rdfs:domain rdf:resource="#Region" />
+    <rdfs:range rdf:resource="#Region" />
+  </owl:ObjectProperty>
+  
+  <owl:Class rdf:ID="VintageYear" />
+
+  <owl:DatatypeProperty rdf:ID="yearValue">
+    <rdfs:domain rdf:resource="#VintageYear" />    
+    <rdfs:range  rdf:resource="&xsd;positiveInteger" />
+  </owl:DatatypeProperty>
+  
+  <VintageYear rdf:ID="Year1998">
+    <yearValue rdf:datatype="&xsd;positiveInteger">1998</yearValue>
+  </VintageYear>
+
+  <owl:ObjectProperty rdf:ID="hasVintageYear">
+    <rdf:type rdf:resource="&owl;FunctionalProperty" />
+    <rdfs:domain rdf:resource="#Vintage" />
+    <rdfs:range  rdf:resource="#VintageYear" />
+  </owl:ObjectProperty>
+  
+  <owl:ObjectProperty rdf:ID="madeFromGrape">
+    <rdfs:subPropertyOf rdf:resource="&food;madeFromFruit" />
+    <rdfs:domain rdf:resource="#Wine" />
+    <rdfs:range rdf:resource="#WineGrape" />
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:ID="madeIntoWine">
+    <owl:inverseOf rdf:resource="#madeFromGrape" />
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:ID="hasWineDescriptor">
+    <rdfs:domain rdf:resource="#Wine" />
+    <rdfs:range  rdf:resource="#WineDescriptor" />
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:ID="hasSugar">
+    <rdf:type rdf:resource="&owl;FunctionalProperty" />
+    <rdfs:subPropertyOf rdf:resource="#hasWineDescriptor" />
+    <rdfs:range rdf:resource="#WineSugar" />
+  </owl:ObjectProperty>
+  
+  <owl:ObjectProperty rdf:ID="hasBody">
+    <rdf:type rdf:resource="&owl;FunctionalProperty" />
+    <rdfs:subPropertyOf rdf:resource="#hasWineDescriptor" />
+    <rdfs:range rdf:resource="#WineBody" />
+  </owl:ObjectProperty>
+  
+  <owl:ObjectProperty rdf:ID="hasFlavor">
+    <rdf:type rdf:resource="&owl;FunctionalProperty" />
+    <rdfs:subPropertyOf rdf:resource="#hasWineDescriptor" />
+    <rdfs:range rdf:resource="#WineFlavor" />
+  </owl:ObjectProperty>
+  
+  <owl:ObjectProperty rdf:ID="hasColor">
+    <rdf:type rdf:resource="&owl;FunctionalProperty" />
+    <rdfs:subPropertyOf rdf:resource="#hasWineDescriptor" />
+    <rdfs:domain rdf:resource="#Wine" />
+    <rdfs:range rdf:resource="#WineColor" />
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:ID="hasMaker">
+    <rdf:type rdf:resource="&owl;FunctionalProperty" />
+  </owl:ObjectProperty>
+  
+  <owl:ObjectProperty rdf:ID="producesWine">
+    <owl:inverseOf rdf:resource="#hasMaker" />
+  </owl:ObjectProperty>
+
+  <owl:Class rdf:ID="Zinfandel">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#ZinfandelGrape" />
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:about="#Zinfandel">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Red" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Dry" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Full" />
+              <owl:Thing rdf:about="#Medium" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Moderate" />
+              <owl:Thing rdf:about="#Strong" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Winery" />
+  
+  <owl:Class rdf:ID="WineDescriptor">
+    <rdfs:comment>Made WineDescriptor unionType of tastes and color</rdfs:comment>
+    <owl:unionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#WineTaste" />
+      <owl:Class rdf:about="#WineColor" />
+    </owl:unionOf>
+  </owl:Class>
+
+  <owl:Class rdf:ID="WineTaste">
+    <rdfs:subClassOf rdf:resource="#WineDescriptor" />
+  </owl:Class>
+
+  <owl:Class rdf:ID="WineColor">
+    <rdfs:subClassOf rdf:resource="#WineDescriptor" />
+    <owl:oneOf rdf:parseType="Collection">
+      <owl:Thing rdf:about="#White" />
+      <owl:Thing rdf:about="#Rose" />
+      <owl:Thing rdf:about="#Red" />
+    </owl:oneOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="WineSugar">
+    <rdfs:subClassOf rdf:resource="#WineTaste" />
+    <owl:oneOf rdf:parseType="Collection">
+      <owl:Thing rdf:about="#Sweet" />
+      <owl:Thing rdf:about="#OffDry" />
+      <owl:Thing rdf:about="#Dry" />
+    </owl:oneOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="WineFlavor">
+    <rdfs:subClassOf rdf:resource="#WineTaste" />
+    <owl:oneOf rdf:parseType="Collection">
+      <owl:Thing rdf:about="#Delicate" />
+      <owl:Thing rdf:about="#Moderate" />
+      <owl:Thing rdf:about="#Strong" />
+    </owl:oneOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="WineBody">
+    <rdfs:subClassOf rdf:resource="#WineTaste" />
+    <owl:oneOf rdf:parseType="Collection">
+      <owl:Thing rdf:about="#Light" />
+      <owl:Thing rdf:about="#Medium" />
+      <owl:Thing rdf:about="#Full" />
+    </owl:oneOf>
+  </owl:Class>
+  
+  <Region rdf:ID="USRegion" />
+  
+  <owl:Class rdf:ID="Tours">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Loire" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#ToursRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+
+  <owl:Class rdf:about="#Tours">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#CheninBlancGrape" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="TableWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Dry" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="SweetWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Sweet" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="SweetRiesling">
+    <rdfs:subClassOf rdf:resource="#DessertWine" />
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:hasValue rdf:resource="#Full" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Moderate" />
+              <owl:Thing rdf:about="#Strong" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Riesling" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Sweet" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="StEmilion">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Red" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:hasValue rdf:resource="#Strong" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#CabernetSauvignonGrape" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Bordeaux" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#StEmilionRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="SemillonOrSauvignonBlanc">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#White" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Medium" />
+              <owl:Thing rdf:about="#Full" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#SemillonGrape" />
+              <owl:Thing rdf:about="#SauvignonBlancGrape" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Semillon">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#SemillonOrSauvignonBlanc" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#SemillonGrape" />
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="SauvignonBlanc">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#SemillonOrSauvignonBlanc" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#SauvignonBlancGrape" />
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Sauternes">
+    <rdfs:subClassOf rdf:resource="#LateHarvest" />
+    <rdfs:subClassOf rdf:resource="#Bordeaux" />
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#SauterneRegion" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:hasValue rdf:resource="#Medium" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#White" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Sancerre">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:hasValue rdf:resource="#Medium" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#OffDry" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:hasValue rdf:resource="#Delicate" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#SauvignonBlancGrape" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Loire" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#SancerreRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="RoseWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Rose" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Riesling">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#White" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#RieslingGrape" />
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="RedWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Red" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="RedTableWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#TableWine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Red" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="RedBurgundy">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#PinotNoirGrape" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Burgundy" />
+      <owl:Class rdf:about="#RedWine" />
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="RedBordeaux">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#CabernetSauvignonGrape" />
+              <owl:Thing rdf:about="#MerlotGrape" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Bordeaux" />
+      <owl:Class rdf:about="#RedWine" />
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Port">
+    <rdfs:subClassOf rdf:resource="#RedWine" />
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#PortugalRegion" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:hasValue rdf:resource="#Full" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:hasValue rdf:resource="#Strong" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Sweet" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="PinotNoir">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Red" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#PinotNoirGrape" />
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="PinotBlanc">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#White" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#PinotBlancGrape" />
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="PetiteSyrah">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Red" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Dry" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Moderate" />
+              <owl:Thing rdf:about="#Strong" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Medium" />
+              <owl:Thing rdf:about="#Full" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#PetiteSyrahGrape" />
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Pauillac">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:hasValue rdf:resource="#Full" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:hasValue rdf:resource="#Strong" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#CabernetSauvignonGrape" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Medoc" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#PauillacRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Muscadet">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:hasValue rdf:resource="#Light" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:hasValue rdf:resource="#Delicate" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Dry" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#PinotBlancGrape" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Loire" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#MuscadetRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Meursault">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:hasValue rdf:resource="#Full" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#WhiteBurgundy" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#MeursaultRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Merlot">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Red" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Dry" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Moderate" />
+              <owl:Thing rdf:about="#Delicate" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Light" />
+              <owl:Thing rdf:about="#Medium" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#MerlotGrape" />
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Meritage">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Red" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#CabernetSauvignonGrape" />
+              <owl:Thing rdf:about="#CabernetFrancGrape" />
+              <owl:Thing rdf:about="#MalbecGrape" />
+              <owl:Thing rdf:about="#PetiteVerdotGrape" />
+              <owl:Thing rdf:about="#MerlotGrape" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:minCardinality rdf:datatype="&xsd;nonNegativeInteger">2</owl:minCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <Region rdf:ID="MedocRegion">
+    <locatedIn rdf:resource="#BordeauxRegion" />
+  </Region>
+  
+  <owl:Class rdf:ID="Medoc">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Red" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Dry" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Bordeaux" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#MedocRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Margaux">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:hasValue rdf:resource="#Delicate" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#MerlotGrape" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Medoc" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#MargauxRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <Region rdf:ID="LoireRegion">
+    <locatedIn rdf:resource="#FrenchRegion" />
+  </Region>
+  
+  <owl:Class rdf:ID="Loire">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#LoireRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="LateHarvest">
+    <rdfs:subClassOf rdf:resource="#Wine" />
+    <owl:disjointWith rdf:resource="#EarlyHarvest" />
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Sweet" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Moderate" />
+              <owl:Thing rdf:about="#Strong" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="ItalianWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#ItalianRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <Region rdf:ID="ItalianRegion" />
+  
+  <owl:Class rdf:ID="IceWine">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Medium" />
+              <owl:Thing rdf:about="#Full" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Moderate" />
+              <owl:Thing rdf:about="#Strong" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#LateHarvest" />
+      <owl:Class rdf:about="#DessertWine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#White" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="GermanWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#GermanyRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Gamay">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#GamayGrape" />
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="FullBodiedWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:hasValue rdf:resource="#Full" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <Region rdf:ID="FrenchRegion" />
+  
+  <owl:Class rdf:ID="FrenchWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#FrenchRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+
+  <owl:Class rdf:ID="EarlyHarvest">
+    <rdfs:subClassOf rdf:resource="#Wine" />
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Dry" />
+              <owl:Thing rdf:about="#OffDry" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="DryWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Dry" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="DryWhiteWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#DryWine" />
+      <owl:Class rdf:about="#WhiteWine" />
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="DryRiesling">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#White" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:hasValue rdf:resource="#Delicate" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Light" />
+              <owl:Thing rdf:about="#Medium" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Riesling" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Dry" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="DryRedWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#DryWine" />
+      <owl:Class rdf:about="#RedWine" />
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="DessertWine">
+    <rdfs:subClassOf rdf:resource="#Wine" />
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#OffDry" />
+              <owl:Thing rdf:about="#Sweet" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="CotesDOr">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:hasValue rdf:resource="#Moderate" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#RedBurgundy" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#CotesDOrRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Chianti">
+    <rdfs:subClassOf rdf:resource="#ItalianWine" />
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#ChiantiRegion" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Red" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#SangioveseGrape" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:hasValue rdf:resource="#Moderate" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Dry" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Light" />
+              <owl:Thing rdf:about="#Medium" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="CheninBlanc">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#White" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:hasValue rdf:resource="#Moderate" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Full" />
+              <owl:Thing rdf:about="#Medium" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Dry" />
+              <owl:Thing rdf:about="#OffDry" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#CheninBlancGrape" />
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Chardonnay">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#White" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Full" />
+              <owl:Thing rdf:about="#Medium" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Strong" />
+              <owl:Thing rdf:about="#Moderate" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#ChardonnayGrape" />
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <Region rdf:ID="CaliforniaRegion">
+    <locatedIn rdf:resource="#USRegion" />
+  </Region>
+  
+  <Region rdf:ID="TexasRegion">
+    <locatedIn rdf:resource="#USRegion" />
+  </Region>
+  
+  <owl:Class rdf:ID="CaliforniaWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#CaliforniaRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="TexasWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#TexasRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="CabernetSauvignon">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Red" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Dry" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Moderate" />
+              <owl:Thing rdf:about="#Strong" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:allValuesFrom>
+          <owl:Class>
+            <owl:oneOf rdf:parseType="Collection">
+              <owl:Thing rdf:about="#Medium" />
+              <owl:Thing rdf:about="#Full" />
+            </owl:oneOf>
+          </owl:Class>
+        </owl:allValuesFrom>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#CabernetSauvignonGrape" />
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="CabernetFranc">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Red" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:hasValue rdf:resource="#Moderate" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:hasValue rdf:resource="#Medium" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Dry" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#CabernetFrancGrape" />
+      </owl:Restriction>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Burgundy">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#BourgogneRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Dry" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+  </owl:Class>
+  
+  <Region rdf:ID="BourgogneRegion">
+    <locatedIn rdf:resource="#FrenchRegion" />
+  </Region>
+  
+  <Region rdf:ID="BordeauxRegion">
+    <locatedIn rdf:resource="#FrenchRegion" />
+  </Region>
+  
+  <owl:Class rdf:ID="Bordeaux">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#BordeauxRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="Beaujolais">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Red" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:hasValue rdf:resource="#Light" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#Dry" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:hasValue rdf:resource="#Delicate" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:hasValue rdf:resource="#GamayGrape" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#madeFromGrape" />
+        <owl:maxCardinality rdf:datatype="&xsd;nonNegativeInteger">1</owl:maxCardinality>
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#BeaujolaisRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <Region rdf:ID="AustralianRegion" />
+  
+  <owl:Class rdf:ID="Anjou">
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasColor" />
+        <owl:hasValue rdf:resource="#Rose" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasBody" />
+        <owl:hasValue rdf:resource="#Light" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasFlavor" />
+        <owl:hasValue rdf:resource="#Delicate" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <rdfs:subClassOf>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#hasSugar" />
+        <owl:hasValue rdf:resource="#OffDry" />
+      </owl:Restriction>
+    </rdfs:subClassOf>
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Loire" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#AnjouRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="AmericanWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#USRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <owl:Class rdf:ID="AlsatianWine">
+    <owl:intersectionOf rdf:parseType="Collection">
+      <owl:Class rdf:about="#Wine" />
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="#locatedIn" />
+        <owl:hasValue rdf:resource="#AlsaceRegion" />
+      </owl:Restriction>
+    </owl:intersectionOf>
+  </owl:Class>
+  
+  <WineBody rdf:ID="Full" />
+  
+  <WineBody rdf:ID="Medium" />
+  
+  <WineBody rdf:ID="Light" />
+  
+  <WineColor rdf:ID="Red" />
+  
+  <WineColor rdf:ID="Rose" />
+  
+  <WineColor rdf:ID="White" />
+  
+  <WineFlavor rdf:ID="Strong" />
+  
+  <WineFlavor rdf:ID="Moderate" />
+  
+  <WineFlavor rdf:ID="Delicate" />
+  
+  <WineSugar rdf:ID="Dry" />
+  
+  <WineSugar rdf:ID="OffDry">
+    <owl:differentFrom rdf:resource="#Dry"/>
+    <owl:differentFrom rdf:resource="#Sweet"/>
+  </WineSugar>
+  
+  <WineSugar rdf:ID="Sweet">
+    <owl:differentFrom rdf:resource="#Dry"/>
+  </WineSugar>
+  
+  <owl:AllDifferent>
+    <owl:distinctMembers rdf:parseType="Collection">
+      <vin:WineColor rdf:about="#Red" />
+      <vin:WineColor rdf:about="#White" />
+      <vin:WineColor rdf:about="#Rose" />
+    </owl:distinctMembers>
+  </owl:AllDifferent>
+
+  <owl:AllDifferent>
+    <owl:distinctMembers rdf:parseType="Collection">
+      <vin:WineBody rdf:about="#Light" />
+      <vin:WineBody rdf:about="#Medium" />
+      <vin:WineBody rdf:about="#Full" />
+    </owl:distinctMembers>
+  </owl:AllDifferent>
+
+  <owl:AllDifferent>
+    <owl:distinctMembers rdf:parseType="Collection">
+      <vin:WineFlavor rdf:about="#Delicate" />
+      <vin:WineFlavor rdf:about="#Moderate" />
+      <vin:WineFlavor rdf:about="#Strong" />
+    </owl:distinctMembers>
+  </owl:AllDifferent>
+ 
+  <owl:AllDifferent>
+    <owl:distinctMembers rdf:parseType="Collection">
+      <vin:WineSugar rdf:about="#Sweet" />
+      <vin:WineSugar rdf:about="#OffDry" />
+      <vin:WineSugar rdf:about="#Dry" />
+    </owl:distinctMembers>
+  </owl:AllDifferent>
+
+  <Region rdf:ID="AlsaceRegion">   
+    <locatedIn rdf:resource="#FrenchRegion" />
+  </Region>
+
+  <Region rdf:ID="AnjouRegion">
+    <locatedIn rdf:resource="#LoireRegion" />
+  </Region>
+  
+  <Region rdf:ID="ArroyoGrandeRegion">
+    <locatedIn rdf:resource="#CaliforniaRegion" />
+  </Region>
+  
+  <Winery rdf:ID="Beringer" />
+
+  <Winery rdf:ID="Bancroft" />
+  
+  <Chardonnay rdf:ID="BancroftChardonnay">
+    <locatedIn rdf:resource="#NapaRegion" />
+    <hasMaker  rdf:resource="#Bancroft" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </Chardonnay>
+  
+  <Region rdf:ID="BeaujolaisRegion">
+    <locatedIn rdf:resource="#FrenchRegion" />
+  </Region>
+  
+  <WineGrape rdf:ID="CabernetFrancGrape" />
+  
+  <WineGrape rdf:ID="CabernetSauvignonGrape" />
+  
+  <Region rdf:ID="CentralCoastRegion">
+    <locatedIn rdf:resource="#CaliforniaRegion" />
+  </Region>
+  
+  <WineGrape rdf:ID="ChardonnayGrape" />
+  
+  <Winery rdf:ID="ChateauChevalBlanc" />
+  
+  <StEmilion rdf:ID="ChateauChevalBlancStEmilion">
+    <hasMaker  rdf:resource="#ChateauChevalBlanc" />
+  </StEmilion>
+  
+  <Winery rdf:ID="ChateauDYchem" />
+  
+  <Sauternes rdf:ID="ChateauDYchemSauterne">
+    <madeFromGrape rdf:resource="#SauvignonBlancGrape" />
+    <madeFromGrape rdf:resource="#SemillonGrape" />
+    <hasFlavor rdf:resource="#Strong" />
+    <hasMaker  rdf:resource="#ChateauDYchem" />
+  </Sauternes> 
+  
+  <Winery rdf:ID="ChateauDeMeursault" />
+  
+  <Meursault rdf:ID="ChateauDeMeursaultMeursault">
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasMaker  rdf:resource="#ChateauDeMeursault" />
+  </Meursault>
+  
+  <Winery rdf:ID="ChateauLafiteRothschild" />
+  
+  <Pauillac rdf:ID="ChateauLafiteRothschildPauillac">
+    <hasMaker  rdf:resource="#ChateauLafiteRothschild" />
+  </Pauillac>
+  
+  <Margaux rdf:ID="ChateauMargaux">
+    <hasMaker  rdf:resource="#ChateauMargauxWinery" />
+  </Margaux>
+  
+  <Winery rdf:ID="ChateauMargauxWinery" />
+  
+  <Winery rdf:ID="ChateauMorgon" />
+  
+  <Beaujolais rdf:ID="ChateauMorgonBeaujolais">
+    <hasMaker  rdf:resource="#ChateauMorgon" />
+  </Beaujolais>
+  
+  <WineGrape rdf:ID="CheninBlancGrape" />
+
+  <WineGrape rdf:ID="ZinfandelGrape" />
+
+  <Chianti rdf:ID="ChiantiClassico">
+    <hasBody   rdf:resource="#Medium" />
+    <hasMaker  rdf:resource="#McGuinnesso" />
+  </Chianti>
+  
+  <Region rdf:ID="ChiantiRegion">
+    <locatedIn rdf:resource="#ItalianRegion" />
+  </Region>
+  
+  <Winery rdf:ID="ClosDeLaPoussie" />
+  
+  <Sancerre rdf:ID="ClosDeLaPoussieSancerre">
+    <hasMaker  rdf:resource="#ClosDeLaPoussie" />
+  </Sancerre>
+  
+  <Winery rdf:ID="ClosDeVougeot" />
+  
+  <CotesDOr rdf:ID="ClosDeVougeotCotesDOr">
+    <hasMaker  rdf:resource="#ClosDeVougeot" />
+  </CotesDOr>
+  
+  <Winery rdf:ID="CongressSprings" />
+  
+  <Semillon rdf:ID="CongressSpringsSemillon">
+    <hasMaker  rdf:resource="#CongressSprings" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </Semillon>
+
+  <Winery rdf:ID="Corbans" />
+  
+  <Riesling rdf:ID="CorbansDryWhiteRiesling">
+    <locatedIn rdf:resource="#NewZealandRegion" />
+    <hasMaker  rdf:resource="#Corbans" />
+    <hasSugar  rdf:resource="#OffDry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </Riesling>
+  
+  <SauvignonBlanc rdf:ID="CorbansPrivateBinSauvignonBlanc">
+    <locatedIn rdf:resource="#NewZealandRegion" />
+    <hasMaker  rdf:resource="#Corbans" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Strong" />
+    <hasBody   rdf:resource="#Full" />
+  </SauvignonBlanc>
+  
+  <SauvignonBlanc rdf:ID="CorbansSauvignonBlanc">
+    <locatedIn rdf:resource="#NewZealandRegion" />
+    <hasMaker  rdf:resource="#Corbans" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Strong" />
+    <hasBody   rdf:resource="#Medium" />
+  </SauvignonBlanc>
+  
+  <Winery rdf:ID="CortonMontrachet" />
+  
+  <WhiteBurgundy rdf:ID="CortonMontrachetWhiteBurgundy">
+    <hasMaker  rdf:resource="#CortonMontrachet" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Strong" />
+    <hasBody   rdf:resource="#Full" />
+  </WhiteBurgundy>
+  
+  <Region rdf:ID="CotesDOrRegion">
+    <locatedIn rdf:resource="#BourgogneRegion" />
+  </Region>
+  
+  <Winery rdf:ID="Cotturi" />
+  
+  <Zinfandel rdf:ID="CotturiZinfandel">
+    <locatedIn rdf:resource="#SonomaRegion" />
+    <hasMaker  rdf:resource="#Cotturi" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Strong" />
+    <hasBody   rdf:resource="#Full" />
+  </Zinfandel>
+  
+  <Winery rdf:ID="DAnjou" />
+  
+  <Region rdf:ID="EdnaValleyRegion">
+    <locatedIn rdf:resource="#CaliforniaRegion" />
+  </Region>
+  
+  <Winery rdf:ID="Elyse" />
+  
+  <Zinfandel rdf:ID="ElyseZinfandel">
+    <locatedIn rdf:resource="#NapaRegion" />
+    <hasMaker  rdf:resource="#Elyse" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Full" />
+  </Zinfandel>
+  
+  <Winery rdf:ID="Forman" />
+  
+  <CabernetSauvignon rdf:ID="FormanCabernetSauvignon">
+    <locatedIn rdf:resource="#NapaRegion" />
+    <hasMaker  rdf:resource="#Forman" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Strong" />
+    <hasBody   rdf:resource="#Medium" />
+  </CabernetSauvignon>
+  
+  <Chardonnay rdf:ID="FormanChardonnay">
+    <locatedIn rdf:resource="#NapaRegion" />
+    <hasMaker  rdf:resource="#Forman" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Full" />
+  </Chardonnay>
+  
+  <Winery rdf:ID="Foxen" />
+  
+  <CheninBlanc rdf:ID="FoxenCheninBlanc">
+    <locatedIn rdf:resource="#SantaBarbaraRegion" />
+    <hasMaker  rdf:resource="#Foxen" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Full" />
+  </CheninBlanc>
+  
+  <WineGrape rdf:ID="GamayGrape" />
+  
+  <Winery rdf:ID="GaryFarrell" />
+  
+  <Merlot rdf:ID="GaryFarrellMerlot">
+    <locatedIn rdf:resource="#SonomaRegion" />
+    <hasMaker  rdf:resource="#GaryFarrell" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </Merlot>
+  
+  <Region rdf:ID="GermanyRegion" />
+  
+  <Winery rdf:ID="Handley" />
+  
+  <Winery rdf:ID="KalinCellars" />
+  
+  <Semillon rdf:ID="KalinCellarsSemillon">
+    <hasMaker  rdf:resource="#KalinCellars" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Strong" />
+    <hasBody   rdf:resource="#Full" />
+  </Semillon>
+  
+  <Winery rdf:ID="KathrynKennedy" />
+  
+  <Meritage rdf:ID="KathrynKennedyLateral">
+    <hasMaker  rdf:resource="#KathrynKennedy" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Delicate" />
+    <hasBody   rdf:resource="#Medium" />
+  </Meritage>
+  
+  <Winery rdf:ID="LaneTanner" />
+  
+  <PinotNoir rdf:ID="LaneTannerPinotNoir">
+    <locatedIn rdf:resource="#SantaBarbaraRegion" />
+    <hasMaker  rdf:resource="#LaneTanner" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Delicate" />
+    <hasBody   rdf:resource="#Light" />
+  </PinotNoir>
+  
+  <Winery rdf:ID="Longridge" />
+  
+  <Merlot rdf:ID="LongridgeMerlot">
+    <locatedIn rdf:resource="#NewZealandRegion" />
+    <hasMaker  rdf:resource="#Longridge" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Light" />
+  </Merlot>
+  
+  <WineGrape rdf:ID="MalbecGrape" />
+  
+  <Region rdf:ID="MargauxRegion">
+    <locatedIn rdf:resource="#MedocRegion" />
+  </Region>
+  
+  <Winery rdf:ID="Marietta" />
+  
+  <CabernetSauvignon rdf:ID="MariettaCabernetSauvignon">
+    <locatedIn rdf:resource="#SonomaRegion" />
+    <hasMaker  rdf:resource="#Marietta" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </CabernetSauvignon>
+  
+  <RedTableWine rdf:ID="MariettaOldVinesRed">
+    <locatedIn rdf:resource="#SonomaRegion" />
+    <hasMaker  rdf:resource="#Marietta" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </RedTableWine>
+  
+  <PetiteSyrah rdf:ID="MariettaPetiteSyrah">
+    <locatedIn rdf:resource="#SonomaRegion" />
+    <hasMaker  rdf:resource="#Marietta" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </PetiteSyrah>
+  
+  <Zinfandel rdf:ID="MariettaZinfandel">
+    <locatedIn rdf:resource="#SonomaRegion" />
+    <hasMaker  rdf:resource="#Marietta" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </Zinfandel>
+  
+  <Winery rdf:ID="McGuinnesso" />
+  
+  <Region rdf:ID="MendocinoRegion">
+    <locatedIn rdf:resource="#CaliforniaRegion" />
+    <adjacentRegion rdf:resource="#SonomaRegion" />
+  </Region>
+  
+  <WineGrape rdf:ID="MerlotGrape" />
+  
+  <Region rdf:ID="MeursaultRegion">
+    <locatedIn rdf:resource="#BourgogneRegion" />
+  </Region>
+  
+  <Winery rdf:ID="MountEdenVineyard" />
+  
+  <Chardonnay rdf:ID="MountEdenVineyardEdnaValleyChardonnay">
+    <locatedIn rdf:resource="#EdnaValleyRegion" />
+    <hasMaker  rdf:resource="#MountEdenVineyard" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </Chardonnay>
+  
+  <PinotNoir rdf:ID="MountEdenVineyardEstatePinotNoir">
+    <locatedIn rdf:resource="#EdnaValleyRegion" />
+    <hasMaker  rdf:resource="#MountEdenVineyard" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Strong" />
+    <hasBody   rdf:resource="#Full" />
+  </PinotNoir>
+  
+  <Winery rdf:ID="Mountadam" />
+  
+  <Chardonnay rdf:ID="MountadamChardonnay">
+    <locatedIn rdf:resource="#SouthAustraliaRegion" />
+    <hasMaker  rdf:resource="#Mountadam" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Strong" />
+    <hasBody   rdf:resource="#Full" />
+  </Chardonnay>
+  
+  <PinotNoir rdf:ID="MountadamPinotNoir">
+    <locatedIn rdf:resource="#SouthAustraliaRegion" />
+    <hasMaker  rdf:resource="#Mountadam" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </PinotNoir>
+  
+  <DryRiesling rdf:ID="MountadamRiesling">
+    <locatedIn rdf:resource="#SouthAustraliaRegion" />
+    <hasMaker  rdf:resource="#Mountadam" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Delicate" />
+    <hasBody   rdf:resource="#Medium" />
+  </DryRiesling>
+  
+  <Region rdf:ID="MuscadetRegion">
+    <locatedIn rdf:resource="#LoireRegion" />
+  </Region>
+  
+  <Region rdf:ID="NapaRegion">
+    <locatedIn rdf:resource="#CaliforniaRegion" />
+  </Region>
+  
+  <Region rdf:ID="NewZealandRegion" />
+  
+  <Winery rdf:ID="PageMillWinery" />  
+
+  <CabernetSauvignon rdf:ID="PageMillWineryCabernetSauvignon">
+    <locatedIn rdf:resource="#NapaRegion" />
+    <hasMaker  rdf:resource="#PageMillWinery" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </CabernetSauvignon>
+  
+  <Region rdf:ID="PauillacRegion">
+    <locatedIn rdf:resource="#MedocRegion" />
+  </Region>
+  
+  <Winery rdf:ID="PeterMccoy" />
+  
+  <Chardonnay rdf:ID="PeterMccoyChardonnay">
+    <locatedIn rdf:resource="#SonomaRegion" />
+    <hasMaker  rdf:resource="#PeterMccoy" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </Chardonnay>
+  
+  <WineGrape rdf:ID="PetiteSyrahGrape" />
+  
+  <WineGrape rdf:ID="PetiteVerdotGrape" />
+  
+  <WineGrape rdf:ID="PinotBlancGrape" />
+  
+  <WineGrape rdf:ID="PinotNoirGrape" />
+  
+  <Region rdf:ID="PortugalRegion" />
+  
+  <Winery rdf:ID="PulignyMontrachet" />
+  
+  <WhiteBurgundy rdf:ID="PulignyMontrachetWhiteBurgundy">
+    <hasMaker  rdf:resource="#PulignyMontrachet" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </WhiteBurgundy>
+  
+  <WineGrape rdf:ID="RieslingGrape" />
+  
+  <Anjou rdf:ID="RoseDAnjou">
+    <hasMaker  rdf:resource="#DAnjou" />
+  </Anjou>
+  
+  <Region rdf:ID="SancerreRegion">
+    <locatedIn rdf:resource="#LoireRegion" />
+  </Region>
+  
+  <WineGrape rdf:ID="SangioveseGrape" />
+  
+  <Region rdf:ID="SantaBarbaraRegion">
+    <locatedIn rdf:resource="#CaliforniaRegion" />
+  </Region>
+  
+  <Winery rdf:ID="SantaCruzMountainVineyard" />
+  
+  <CabernetSauvignon rdf:ID="SantaCruzMountainVineyardCabernetSauvignon">
+    <locatedIn rdf:resource="#SantaCruzMountainsRegion" />
+    <hasMaker  rdf:resource="#SantaCruzMountainVineyard" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Strong" />
+    <hasBody   rdf:resource="#Full" />
+  </CabernetSauvignon>
+  
+  <Region rdf:ID="CentralTexasRegion">
+    <locatedIn rdf:resource="#TexasRegion" />
+  </Region>
+
+  <Winery rdf:ID="StGenevieve" />
+
+  <WhiteWine rdf:ID="StGenevieveTexasWhite">
+    <locatedIn rdf:resource="#CentralTexasRegion" />
+    <hasMaker  rdf:resource="#StGenevieve" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+  </WhiteWine>
+
+  <Region rdf:ID="SantaCruzMountainsRegion">
+    <locatedIn rdf:resource="#CaliforniaRegion" />
+  </Region>
+  
+  <Winery rdf:ID="SaucelitoCanyon" />
+  
+  <Zinfandel rdf:ID="SaucelitoCanyonZinfandel">
+    <locatedIn rdf:resource="#ArroyoGrandeRegion" />
+    <hasMaker  rdf:resource="#SaucelitoCanyon" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </Zinfandel>
+  
+  <Zinfandel rdf:ID="SaucelitoCanyonZinfandel1998">
+    <locatedIn rdf:resource="#ArroyoGrandeRegion" />
+    <hasVintageYear rdf:resource="#Year1998" />
+    <hasMaker  rdf:resource="#SaucelitoCanyon" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </Zinfandel>
+
+  <Region rdf:ID="SauterneRegion">
+    <locatedIn rdf:resource="#BordeauxRegion" />
+  </Region>
+  
+  <WineGrape rdf:ID="SauvignonBlancGrape" />
+  
+  <Winery rdf:ID="SchlossRothermel" />
+  
+  <SweetRiesling rdf:ID="SchlossRothermelTrochenbierenausleseRiesling">
+    <locatedIn rdf:resource="#GermanyRegion" />
+    <hasMaker  rdf:resource="#SchlossRothermel" />
+    <hasSugar  rdf:resource="#Sweet" />
+    <hasFlavor rdf:resource="#Strong" />
+    <hasBody   rdf:resource="#Full" />
+  </SweetRiesling>
+  
+  <Winery rdf:ID="SchlossVolrad" />
+  
+  <SweetRiesling rdf:ID="SchlossVolradTrochenbierenausleseRiesling">
+    <locatedIn rdf:resource ="#GermanyRegion" />
+    <hasMaker  rdf:resource="#SchlossVolrad" />
+    <hasSugar  rdf:resource="#Sweet" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Full" />
+  </SweetRiesling>
+  
+  <Winery rdf:ID="SeanThackrey" />
+  
+  <PetiteSyrah rdf:ID="SeanThackreySiriusPetiteSyrah">
+    <locatedIn rdf:resource="#NapaRegion" />
+    <hasMaker  rdf:resource="#SeanThackrey" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Strong" />
+    <hasBody   rdf:resource="#Full" />
+  </PetiteSyrah>
+  
+  <Winery rdf:ID="Selaks" />
+  
+  <IceWine rdf:ID="SelaksIceWine">
+    <locatedIn rdf:resource="#NewZealandRegion" />
+    <hasMaker  rdf:resource="#Selaks" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+    <hasColor rdf:resource="#White" />
+  </IceWine>
+  
+  <SauvignonBlanc rdf:ID="SelaksSauvignonBlanc">
+    <locatedIn rdf:resource="#NewZealandRegion" />
+    <hasMaker  rdf:resource="#Selaks" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </SauvignonBlanc>
+  
+  <WineGrape rdf:ID="SemillonGrape" />
+  
+  <Winery rdf:ID="SevreEtMaine" />
+  
+  <Muscadet rdf:ID="SevreEtMaineMuscadet">
+    <hasMaker  rdf:resource="#SevreEtMaine" />
+  </Muscadet>
+  
+  <Region rdf:ID="SonomaRegion">
+    <locatedIn rdf:resource="#CaliforniaRegion" />
+  </Region>
+  
+  <Region rdf:ID="SouthAustraliaRegion">
+    <locatedIn rdf:resource="#AustralianRegion" />
+  </Region>
+  
+  <Region rdf:ID="StEmilionRegion">
+    <locatedIn rdf:resource="#BordeauxRegion" />
+  </Region>
+  
+  <Winery rdf:ID="Stonleigh" />
+  
+  <SauvignonBlanc rdf:ID="StonleighSauvignonBlanc">
+    <locatedIn rdf:resource="#NewZealandRegion" />
+    <hasMaker  rdf:resource="#Stonleigh" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Delicate" />
+    <hasBody   rdf:resource="#Medium" />
+  </SauvignonBlanc>
+  
+  <Winery rdf:ID="Taylor" />
+  
+  <Port rdf:ID="TaylorPort">
+    <hasMaker  rdf:resource="#Taylor" />
+  </Port>
+  
+  <Region rdf:ID="ToursRegion">
+    <locatedIn rdf:resource="#LoireRegion" />
+  </Region>
+  
+  <Winery rdf:ID="Ventana" />
+  
+  <CheninBlanc rdf:ID="VentanaCheninBlanc">
+    <locatedIn rdf:resource="#CentralCoastRegion" />
+    <hasMaker  rdf:resource="#Ventana" />
+    <hasSugar  rdf:resource="#OffDry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </CheninBlanc>
+  
+  <Winery rdf:ID="WhitehallLane" />
+  
+  <CabernetFranc rdf:ID="WhitehallLaneCabernetFranc">
+    <locatedIn rdf:resource="#NapaRegion" />
+    <hasMaker  rdf:resource="#WhitehallLane" />
+    <hasSugar  rdf:resource="#Dry" />
+    <hasFlavor rdf:resource="#Moderate" />
+    <hasBody   rdf:resource="#Medium" />
+  </CabernetFranc>
+  
+  <DessertWine rdf:ID="WhitehallLanePrimavera">
+    <locatedIn rdf:resource="#NapaRegion" />
+    <hasSugar  rdf:resource="#Sweet" />
+    <hasFlavor rdf:resource="#Delicate" />
+    <hasBody   rdf:resource="#Light" />
+  </DessertWine>
+  
+  <owl:AllDifferent>
+    <owl:distinctMembers rdf:parseType="Collection">
+      <vin:Winery rdf:about="#Bancroft" />
+      <vin:Winery rdf:about="#ChateauChevalBlanc" />
+      <vin:Winery rdf:about="#ChateauDYchem" />
+      <vin:Winery rdf:about="#ChateauDeMeursault" />
+      <vin:Winery rdf:about="#ChateauLafiteRothschild" />
+      <vin:Winery rdf:about="#ChateauMargauxWinery" />
+      <vin:Winery rdf:about="#ChateauMorgon" />
+      <vin:Winery rdf:about="#ClosDeLaPoussie" />
+      <vin:Winery rdf:about="#ClosDeVougeot" />
+      <vin:Winery rdf:about="#CongressSprings" />
+      <vin:Winery rdf:about="#Corbans" />
+      <vin:Winery rdf:about="#CortonMontrachet" />
+      <vin:Winery rdf:about="#Cotturi" />
+      <vin:Winery rdf:about="#DAnjou" />
+      <vin:Winery rdf:about="#Elyse" />
+      <vin:Winery rdf:about="#Forman" />
+      <vin:Winery rdf:about="#Foxen" />
+      <vin:Winery rdf:about="#GaryFarrell" />
+      <vin:Winery rdf:about="#KalinCellars" />
+      <vin:Winery rdf:about="#KathrynKennedy" />
+      <vin:Winery rdf:about="#LaneTanner" />
+      <vin:Winery rdf:about="#Longridge" />
+      <vin:Winery rdf:about="#Marietta" />
+      <vin:Winery rdf:about="#McGuinnesso" />
+      <vin:Winery rdf:about="#MountEdenVineyard" />
+      <vin:Winery rdf:about="#Mountadam" />
+      <vin:Winery rdf:about="#PageMillWinery" />
+      <vin:Winery rdf:about="#PeterMccoy" />
+      <vin:Winery rdf:about="#PulignyMontrachet" />
+      <vin:Winery rdf:about="#SantaCruzMountainVineyard" />
+      <vin:Winery rdf:about="#SaucelitoCanyon" />
+      <vin:Winery rdf:about="#SchlossRothermel" />
+      <vin:Winery rdf:about="#SchlossVolrad" />
+      <vin:Winery rdf:about="#SeanThackrey" />
+      <vin:Winery rdf:about="#Selaks" />
+      <vin:Winery rdf:about="#SevreEtMaine" />
+      <vin:Winery rdf:about="#StGenevieve" />
+      <vin:Winery rdf:about="#Stonleigh" />
+      <vin:Winery rdf:about="#Taylor" />
+      <vin:Winery rdf:about="#Ventana" />
+      <vin:Winery rdf:about="#WhitehallLane" />
+    </owl:distinctMembers>
+  </owl:AllDifferent>
+
+</rdf:RDF>
diff --git a/ontologies/withDependencies/geonames.rdf b/ontologies/withDependencies/geonames.rdf
new file mode 100644
index 0000000..f3974a0
--- /dev/null
+++ b/ontologies/withDependencies/geonames.rdf
@@ -0,0 +1,8391 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<rdf:RDF 
+         xml:base="http://www.geonames.org/ontology"
+         xmlns:skos="http://www.w3.org/2004/02/skos/core#"
+         xmlns:foaf="http://xmlns.com/foaf/0.1/"
+         xmlns:cc="http://creativecommons.org/ns#"
+         xmlns:gn="http://www.geonames.org/ontology#"
+         xmlns:owl="http://www.w3.org/2002/07/owl#"
+         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+         xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+         xmlns:dcterms="http://purl.org/dc/terms/"
+         xmlns:vann="http://purl.org/vocab/vann/"
+         xmlns:mrel="http://id.loc.gov/vocabulary/relators/"
+         xmlns:adms="http://www.w3.org/ns/adms#">
+
+<!-- Ontology Information -->  
+      <owl:Ontology rdf:about="http://www.geonames.org/ontology">
+      <dcterms:title xml:lang="en">The Geonames ontology</dcterms:title>
+      <dcterms:description xml:lang="en">The Geonames ontologies provides elements of description for geographical features, in particular those defined in the geonames.org data base</dcterms:description>
+      <adms:relatedDocumentation rdf:resource="http://www.geonames.org/ontology/documentation.html"/>
+      <cc:license rdf:resource="http://creativecommons.org/licenses/by/3.0/"/>
+      <dcterms:creator>
+            <foaf:Person rdf:about="http://data.semanticweb.org/person/bernard-vatant">
+                  <foaf:name>Bernard Vatant</foaf:name>
+                  <foaf:page rdf:resource="http://blog.hubjects.com"/>
+                  <foaf:workplaceHomepage  rdf:resource="http://www.mondeca.com"/>
+            </foaf:Person>
+      </dcterms:creator>
+      <dcterms:contributor>Erik Bolstad (norwegian and swedish translations)</dcterms:contributor>
+      <dcterms:contributor>Valery Hronusov (russian translation)</dcterms:contributor>
+      <dcterms:contributor>Roman Rachkov (bulgarian translation)</dcterms:contributor>
+      <dcterms:publisher>
+            <foaf:Organization rdf:about="http://dbpedia.org/resource/GeoNames">
+                  <foaf:name>GeoNames</foaf:name>
+                  <foaf:homepage rdf:resource="http://www.geonames.org"/>
+                  <mrel:dtm>
+                        <foaf:Person rdf:about="#Marc-Wick">
+                              <foaf:name>Marc Wick</foaf:name>
+                        </foaf:Person>
+                  </mrel:dtm>
+            </foaf:Organization>
+      </dcterms:publisher>
+      <rdfs:comment xml:lang="en">Modifications from version 3.01 :
+            Added : gn:GeonamesFeature, subclass of gn:Feature.
+            Added : explicit property gn:geonamesID, mandatory and unique for each gn:GeonamesFeature instance.
+            Deleted : owl:FunctionalProperty declarations for properties attached to gn:Feature, replaced by local cardinality restrictions on gn:GeonamesFeature
+            The gn:Feature class and attached properties can therefore be used in the open world for features not necessarily identified in the Geonames data base, or with partial descriptions.
+            Modified : Equivalent classes and superclasses of geonames:Feature in other vocabularies.
+            Added : new feature codes for historical features.
+            Improved metadata.
+      </rdfs:comment>
+      <rdfs:isDefinedBy rdf:resource="http://www.geonames.org/ontology/ontology_v3.1.rdf"/>
+      <owl:priorVersion rdf:resource="http://www.geonames.org/ontology/ontology_v3.0.1.rdf"/>
+      <owl:versionInfo xml:lang="en">Version 3.1 - 2012-10-29</owl:versionInfo>
+      <foaf:homepage rdf:resource="http://www.geonames.org/ontology/documentation.html"/>
+      <dcterms:issued>2006-10-14</dcterms:issued>
+      <dcterms:modified>2012-10-29</dcterms:modified>
+  <vann:preferredNamespacePrefix>gn</vann:preferredNamespacePrefix>
+  <vann:preferredNamespaceUri>http://www.geonames.org/ontology#</vann:preferredNamespaceUri>
+  </owl:Ontology>
+
+<!-- Classes -->
+  <owl:Class rdf:about="#Class">
+    <rdfs:comment xml:lang="en">A class of features.</rdfs:comment>
+    <rdfs:label xml:lang="en">Class</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#ConceptScheme"/>
+  </owl:Class>
+
+  <owl:Class rdf:about="#Code">
+    <rdfs:comment xml:lang="en">A feature code.</rdfs:comment>
+    <rdfs:label xml:lang="en">Code</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://www.w3.org/2004/02/skos/core#Concept"/>
+  </owl:Class>
+
+  <owl:Class rdf:about="#GeonamesFeature">
+    <rdfs:comment xml:lang="en">A feature described in geonames database, uniquely defined by its geonames identifier</rdfs:comment>
+    <skos:historyNote xml:lang="en">Added in version 3.1</skos:historyNote>
+    <rdfs:label xml:lang="en">Geonames Feature</rdfs:label>
+    <rdfs:subClassOf rdf:resource="#Feature"/>
+        <!-- Mandatory unique properties for Geonames Features -->
+        <rdfs:subClassOf>
+              <owl:Restriction>
+                    <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
+                    <owl:onProperty rdf:resource="#geonamesID"/>
+              </owl:Restriction>
+        </rdfs:subClassOf>
+        <rdfs:subClassOf>
+              <owl:Restriction>
+                    <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
+                    <owl:onProperty rdf:resource="#name"/>
+              </owl:Restriction>
+        </rdfs:subClassOf>      
+        <rdfs:subClassOf>
+              <owl:Restriction>
+                    <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
+                    <owl:onProperty rdf:resource="http://www.w3.org/2003/01/geo/wgs84_pos#lat"/>
+              </owl:Restriction>
+        </rdfs:subClassOf>   
+        <rdfs:subClassOf>
+              <owl:Restriction>
+                    <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
+                    <owl:onProperty rdf:resource="http://www.w3.org/2003/01/geo/wgs84_pos#long"/>
+              </owl:Restriction>
+        </rdfs:subClassOf>    
+        <rdfs:subClassOf>
+              <owl:Restriction>
+                    <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
+                    <owl:onProperty rdf:resource="#featureClass"/>
+              </owl:Restriction>
+        </rdfs:subClassOf>
+        <!-- Properties with max cardinality 1 -->
+        <rdfs:subClassOf>
+              <owl:Restriction>
+                    <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
+                    <owl:onProperty rdf:resource="#featureCode"/>
+              </owl:Restriction>
+        </rdfs:subClassOf>
+        <rdfs:subClassOf>
+              <owl:Restriction>
+                    <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
+                    <owl:onProperty rdf:resource="#countryCode"/>
+              </owl:Restriction>
+        </rdfs:subClassOf>
+        <rdfs:subClassOf>
+              <owl:Restriction>
+                    <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
+                    <owl:onProperty rdf:resource="#parentADM1"/>
+              </owl:Restriction>
+        </rdfs:subClassOf>
+        <rdfs:subClassOf>
+              <owl:Restriction>
+                    <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
+                    <owl:onProperty rdf:resource="#parentADM2"/>
+              </owl:Restriction>
+        </rdfs:subClassOf>
+        <rdfs:subClassOf>
+              <owl:Restriction>
+                    <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
+                    <owl:onProperty rdf:resource="#parentADM3"/>
+              </owl:Restriction>
+        </rdfs:subClassOf>
+        <rdfs:subClassOf>
+              <owl:Restriction>
+                    <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
+                    <owl:onProperty rdf:resource="#parentADM4"/>
+              </owl:Restriction>
+        </rdfs:subClassOf>
+        <rdfs:subClassOf>
+              <owl:Restriction>
+                    <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:maxCardinality>
+                    <owl:onProperty rdf:resource="#population"/>
+              </owl:Restriction>
+        </rdfs:subClassOf>
+
+  </owl:Class>
+      
+<owl:Class rdf:about="#Feature">
+      <rdfs:comment xml:lang="en">A geographical feature</rdfs:comment>
+      <skos:historyNote xml:lang="en">Modified in version 3.1 : The cardinality constraints on feature code, feature class are relaxed on this class, and put on the specific subclass Geonames Feature. This class and attached properties can therefore be used for features not necessarily identified in the Geoanmes data base</skos:historyNote>
+      <rdfs:label xml:lang="en">Feature</rdfs:label>
+      <rdfs:subClassOf rdf:resource="http://schema.org/Place"/>
+      <rdfs:subClassOf rdf:resource="http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing"/>
+      <owl:equivalentClass rdf:resource="http://www.mindswap.org/2003/owl/geo/geoFeatures20040307.owl#GeographicFeature"/>
+      <owl:equivalentClass rdf:resource="http://geovocab.org/spatial#Feature"/>  
+</owl:Class>
+
+  <owl:Class rdf:about="#Map">
+    <rdfs:comment xml:lang="en">A Web page displaying a map</rdfs:comment>
+    <rdfs:label xml:lang="en">Map</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+  </owl:Class>
+
+  <owl:Class rdf:about="#RDFData">
+    <rdfs:comment xml:lang="en">A Document containing RDF description of one or several features.</rdfs:comment>
+    <rdfs:label xml:lang="en">RDF Data</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+  </owl:Class>
+
+  <owl:Class rdf:about="#WikipediaArticle">
+    <rdfs:comment xml:lang="en">A Wikipedia article</rdfs:comment>
+    <rdfs:label xml:lang="en">Wikipedia Article</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+  </owl:Class>
+
+<!-- Datatype Properties -->
+  <owl:DatatypeProperty rdf:about="#alternateName">
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#altLabel"/>
+  </owl:DatatypeProperty>
+
+  <owl:DatatypeProperty rdf:about="#colloquialName">
+    <rdfs:label xml:lang="en">colloquial name</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="#alternateName"/>
+  </owl:DatatypeProperty>
+      
+      <owl:DatatypeProperty rdf:about="#geonamesID">
+            <rdfs:label xml:lang="en">geonames identifier</rdfs:label>
+            <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/identifier"/>
+            <skos:historyNote xml:lang="en">Added in version 3.1</skos:historyNote>
+      </owl:DatatypeProperty>
+
+  <owl:DatatypeProperty rdf:about="#countryCode">
+    <rdfs:comment xml:lang="en">A two letters country code in the ISO 3166 list</rdfs:comment>
+    <rdfs:comment xml:lang="en">The countryCode value for a Geoname Feature is equal to the countryCode value of the parentCountry value.</rdfs:comment>
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">ISO country code</rdfs:label>
+  </owl:DatatypeProperty>
+
+  <owl:DatatypeProperty rdf:about="#historicalName">
+    <rdfs:label xml:lang="en">historical name</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="#alternateName"/>
+  </owl:DatatypeProperty>
+
+  <owl:DatatypeProperty rdf:about="#name">
+    <rdfs:comment xml:lang="en">The main international name of a feature. The value has no xml:lang tag.</rdfs:comment>
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">name</rdfs:label>
+  </owl:DatatypeProperty>
+
+  <owl:DatatypeProperty rdf:about="#officialName">
+    <rdfs:comment xml:lang="en">A name in an official local language</rdfs:comment>
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">official name</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2004/02/skos/core#prefLabel"/>
+  </owl:DatatypeProperty>
+
+  <owl:DatatypeProperty rdf:about="#population">
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">population</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
+  </owl:DatatypeProperty>
+
+  <owl:DatatypeProperty rdf:about="#postalCode">
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">postal code</rdfs:label>
+  </owl:DatatypeProperty>
+
+  <owl:DatatypeProperty rdf:about="#shortName">
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">short name</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="#alternateName"/>
+  </owl:DatatypeProperty>
+
+  <owl:DatatypeProperty rdf:about="http://www.w3.org/2004/02/skos/core#notation">
+    <rdfs:comment xml:lang="en">Used to store the values of feature codes</rdfs:comment>
+    <rdfs:label xml:lang="en">notation</rdfs:label>
+  </owl:DatatypeProperty>
+
+  <owl:DatatypeProperty rdf:about="http://www.w3.org/2004/02/skos/core#prefLabel"/>
+  <owl:DatatypeProperty rdf:about="http://xmlns.com/foaf/0.1/name"/>
+
+<!-- Object Properties -->
+  <owl:ObjectProperty rdf:about="#childrenFeatures">
+    <rdfs:comment xml:lang="en">Links to an RDF document containing the descriptions of children features</rdfs:comment>
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">children features</rdfs:label>
+    <rdfs:range rdf:resource="#RDFData"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#featureClass">
+    <rdfs:comment xml:lang="en">The main category of the feature, as defined in geonames taxonomy.</rdfs:comment>
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">feature class</rdfs:label>
+    <rdfs:range rdf:resource="#Class"/>
+    <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/type"/>
+        <!-- OWL 2.0 feature : property chain ensuring consistency of feature code and feature class values  -->
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+              <rdf:Description rdf:about="http://www.geonames.org/ontology#featureCode"/>
+              <rdf:Description rdf:about="http://www.w3.org/2004/02/skos/core#inScheme"/>
+        </owl:propertyChainAxiom>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#featureCode">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:comment xml:lang="en">Type of the feature, as defined in geonames taxonomy.</rdfs:comment>
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">feature code</rdfs:label>
+    <rdfs:range rdf:resource="#Code"/>
+    <rdfs:subPropertyOf rdf:resource="http://purl.org/dc/terms/type"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#locatedIn">
+    <rdfs:comment xml:lang="en">Indicates that the subject resource is located in the object feature</rdfs:comment>
+    <rdfs:label xml:lang="en">located in</rdfs:label>
+    <rdfs:range rdf:resource="#Feature"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#locationMap">
+    <rdfs:comment xml:lang="en">A geonames map centered on the feature.</rdfs:comment>
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">map</rdfs:label>
+    <rdfs:range rdf:resource="#Map"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#nearby">
+    <rdfs:comment xml:lang="en">A feature close to the reference feature</rdfs:comment>
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">nearby</rdfs:label>
+    <rdfs:range rdf:resource="#Feature"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#nearbyFeatures">
+    <rdfs:comment xml:lang="en">Links to an RDF document containing the descriptions of nearby features</rdfs:comment>
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">nearby features</rdfs:label>
+    <rdfs:range rdf:resource="#RDFData"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#neighbour">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#SymmetricProperty"/>
+    <rdfs:comment xml:lang="en">A feature sharing a common boarder with the reference feature</rdfs:comment>
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">neighbour</rdfs:label>
+    <rdfs:range rdf:resource="#Feature"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#neighbouringFeatures">
+    <rdfs:comment xml:lang="en">Links to an RDF document containing the descriptions of neighbouring features. Applies when the feature has definite boarders.</rdfs:comment>
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">neighbouring features</rdfs:label>
+    <rdfs:range rdf:resource="#RDFData"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#parentADM1">
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">level 1 administrative parent</rdfs:label>
+    <rdfs:range>
+      <owl:Restriction>
+        <owl:hasValue rdf:resource="#A.ADM1"/>
+        <owl:onProperty rdf:resource="#featureCode"/>
+      </owl:Restriction>
+    </rdfs:range>
+    <rdfs:subPropertyOf rdf:resource="#parentFeature"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#parentADM2">
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">level 2 administrative parent</rdfs:label>
+    <rdfs:range>
+      <owl:Restriction>
+        <owl:hasValue rdf:resource="#A.ADM2"/>
+        <owl:onProperty rdf:resource="#featureCode"/>
+      </owl:Restriction>
+    </rdfs:range>
+    <rdfs:subPropertyOf rdf:resource="#parentFeature"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#parentADM3">
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">level 3 administrative parent</rdfs:label>
+    <rdfs:range>
+      <owl:Restriction>
+        <owl:hasValue rdf:resource="#A.ADM3"/>
+        <owl:onProperty rdf:resource="#featureCode"/>
+      </owl:Restriction>
+    </rdfs:range>
+    <rdfs:subPropertyOf rdf:resource="#parentFeature"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#parentADM4">
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">level 4 administrative parent</rdfs:label>
+    <rdfs:range>
+      <owl:Restriction>
+        <owl:hasValue rdf:resource="#A.ADM4"/>
+        <owl:onProperty rdf:resource="#featureCode"/>
+      </owl:Restriction>
+    </rdfs:range>
+    <rdfs:subPropertyOf rdf:resource="#parentFeature"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#parentCountry">
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">parent country</rdfs:label>
+    <rdfs:range>
+      <owl:Restriction>
+        <owl:hasValue rdf:resource="#A.PCLI"/>
+        <owl:onProperty rdf:resource="#featureCode"/>
+      </owl:Restriction>
+    </rdfs:range>
+    <rdfs:subPropertyOf rdf:resource="#parentFeature"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#parentFeature">
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#TransitiveProperty"/>
+    <rdfs:comment xml:lang="en">A feature parent of the current one, in either administrative or physical subdivision.</rdfs:comment>
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">parent feature</rdfs:label>
+    <rdfs:range rdf:resource="#Feature"/>
+  </owl:ObjectProperty>
+
+  <owl:ObjectProperty rdf:about="#wikipediaArticle">
+    <rdfs:comment xml:lang="en">A Wikipedia article of which subject is the resource.</rdfs:comment>
+    <rdfs:domain rdf:resource="#Feature"/>
+    <rdfs:label xml:lang="en">wikipedia article</rdfs:label>
+    <rdfs:range rdf:resource="#WikipediaArticle"/>
+  </owl:ObjectProperty>
+
+
+<!-- Instances -->
+  <gn:Class rdf:about="#A">
+    <rdfs:comment xml:lang="en">country, state, region ...</rdfs:comment>
+  </gn:Class>
+
+  <gn:Code rdf:about="#A.ADM1"
+                 skos:notation="A.ADM1">
+    <skos:definition xml:lang="en">a primary administrative division of a country, such as a state in the United States</skos:definition>
+    <skos:definition xml:lang="ru">первоначальное политико-административное  деление, например, деление США на штаты</skos:definition>
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="en">first-order administrative division</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">första ordningens administrativ avdelning</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">primær administrativ inndeling</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">политико-административное деление первого порядка</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">първостепенна административна единица</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.ADM2"
+                 skos:notation="A.ADM2">
+    <skos:definition xml:lang="en">a subdivision of a first-order administrative division</skos:definition>
+    <skos:definition xml:lang="ru">дальнейшее деление политико-административного деления первого порядка</skos:definition>
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="sv">andra ordningens administrativ avdelning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">second-order administrative division</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sekundær administrativ inndeling</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">второстепенна административна единица</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">политико-административное деление второго порядка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.ADM3"
+                 skos:notation="A.ADM3">
+    <skos:definition xml:lang="en">a subdivision of a second-order administrative division</skos:definition>
+    <skos:definition xml:lang="ru">дальнейшее деление политико-административного деления второго порядка</skos:definition>
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="no">administrativ inndeling av tredje grad</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">third-order administrative division</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tredje ordningens administrativ avdelning</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">политико-административное деление третьего порядка</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">третостепенна административна единица</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.ADM4"
+                 skos:notation="A.ADM4">
+    <skos:definition xml:lang="en">a subdivision of a third-order administrative division</skos:definition>
+    <skos:definition xml:lang="ru">дальнейшее деление политико-административного деления третьего порядка</skos:definition>
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="no">administrativ inndeling av fjerde grad</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fjärde ordningens administrativ avdelning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">fourth-order administrative division</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">политико-административное деление четвертого порядка</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">четвъртостепенна административна единица</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.ADM5"
+                 skos:notation="A.ADM5">
+    <skos:definition xml:lang="en">a subdivision of a fourth-order administrative division</skos:definition>
+    <skos:prefLabel xml:lang="en">fifth-order administrative division</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.ADMD"
+                 skos:notation="A.ADMD">
+    <skos:definition xml:lang="en">an administrative division of a country, undifferentiated as to administrative level</skos:definition>
+    <skos:definition xml:lang="ru">деление страны на административные единицы</skos:definition>
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="sv">administrativ avdelning</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">administrativ inndeling</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">administrative division</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">административно делене</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">политико-административное  деление</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.LTER"
+                 skos:notation="A.LTER">
+    <skos:definition xml:lang="en">a tract of land leased to another country, usually for military installations</skos:definition>
+    <skos:definition xml:lang="ru">арендованный правительством Великобритании у властей Китая участок земли, часть Гонконга</skos:definition>
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="en">leased area</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">leid landområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">uthyrt område</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">арендованный район/территория</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">територия под аренда</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.PCL"
+                 skos:notation="A.PCL">
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="en">political entity</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">politisk enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">politisk enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">политическо тяло</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">политическое образование</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.PCLD"
+                 skos:notation="A.PCLD">
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="no">avhengig politisk enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">beroende politisk enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">dependent political entity</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">зависимо политическо тяло</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">зависимое политическое образование</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.PCLF"
+                 skos:notation="A.PCLF">
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="en">freely associated state</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fritt associerad stat</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fritt tilknyttet stat</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">свободно асоциирана държава</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">свободно присоединившееся государство (свободное ассоциированное государство)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.PCLI"
+                 skos:notation="A.PCLI">
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="en">independent political entity</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">oberoende politisk enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">uavhengig politisk enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">независимо политическо образувание</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">независимое политическое образование</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.PCLIX"
+                 skos:notation="A.PCLIX">
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="sv">del av oberoende politisk enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">del av uavhengig politisk enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of independent political entity</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок независимого политического образования</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от независимо политическо образувание</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.PCLS"
+                 skos:notation="A.PCLS">
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="sv">delvis oberoende politisk enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">delvis uavhengig politisk enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">semi-independent political entity</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">наполовину зависимое политическое образование</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">полу-независимо политическо образувание</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.PRSH"
+                 skos:notation="A.PRSH">
+    <skos:definition xml:lang="en">an ecclesiastical district</skos:definition>
+    <skos:definition xml:lang="ru">низший церковный округ в христианской церкви, центром которого является храм</skos:definition>
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="sv">kommun</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">parish</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sogn</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">енория</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">церковный приход</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.TERR"
+                 skos:notation="A.TERR">
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="no">territorium</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">territorium</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">territory</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">територия</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">территория (административная единица в США, Канаде и Австралии, не имеющая прав штата или провинции)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.ZN"
+                 skos:notation="A.ZN">
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="no">sone</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">zon</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">zone</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">зона</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">зона</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#A.ZNB"
+                 skos:notation="A.ZNB">
+    <skos:definition xml:lang="en">a zone recognized as a buffer between two nations in which military presence is minimal or absent</skos:definition>
+    <skos:definition xml:lang="ru">область, официально признанная в качестве буфера между двумя нациями; военное присутствие минимально или вовсе отсутствует</skos:definition>
+    <skos:inScheme rdf:resource="#A"/>
+    <skos:prefLabel xml:lang="en">buffer zone</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">buffersone</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">bufferzon</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">буферна зона</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">буферная зона</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Class rdf:about="#H">
+    <rdfs:comment xml:lang="en">stream, lake, ...</rdfs:comment>
+  </gn:Class>
+
+  <gn:Code rdf:about="#H.AIRS"
+                 skos:notation="H.AIRS">
+    <skos:definition xml:lang="en">a place on a waterbody where floatplanes land and take off</skos:definition>
+    <skos:definition xml:lang="ru">место на воде для взлета и посадки гидросамолета</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">landingsområde for sjøfly</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">landningsplats för sjöflygplan</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">seaplane landing area</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">летище за хидроплани</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">посадочная полоса для гидросамолета</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.ANCH"
+                 skos:notation="H.ANCH">
+    <skos:definition xml:lang="en">an area where vessels may anchor</skos:definition>
+    <skos:definition xml:lang="ru">место, где судна бросают якорь</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">anchorage</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">ankarplats</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">ankerplass</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пристанище</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">якорная стоянка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.BAY"
+                 skos:notation="H.BAY">
+    <skos:definition xml:lang="en">a coastal indentation between two capes or headlands, larger than a cove but smaller than a gulf</skos:definition>
+    <skos:definition xml:lang="ru">изгиб берега  между двумя мысами, больше чем открытая гавань, но меньше чем залив</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">bay</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">bukt</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vik, bukt</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">бухта</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">залив</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.BAYS"
+                 skos:notation="H.BAYS">
+    <skos:definition xml:lang="en">coastal indentations between two capes or headlands, larger than a cove but smaller than a gulf</skos:definition>
+    <skos:definition xml:lang="ru">изгибы берега  между двумя мысами, больше чем открытая гавань, но меньше чем залив</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">bays</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">bukter</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vikar, bukter</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">бухты</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">заливи</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.BGHT"
+                 skos:notation="H.BGHT">
+    <skos:definition xml:lang="en">an open body of water forming a slight recession in a coastline</skos:definition>
+    <skos:definition xml:lang="ru">открытый участок воды; там, где происходит отступание береговой черты</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">bight(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">bukt(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vik</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ивица(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">излучина (реки)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.BNK"
+                 skos:notation="H.BNK">
+    <skos:definition xml:lang="en">an elevation, typically located on a shelf, over which the depth of water is relatively shallow but sufficient for most surface navigation</skos:definition>
+    <skos:definition xml:lang="ru">возвышенность, которая обычно располагается на мелководье; однако количества воды достаточно для надводного судоходства</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">bank(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">banker</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">strandssluttning, strandvall</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бряг(ове)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">нанос</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.BNKR"
+                 skos:notation="H.BNKR">
+    <skos:definition xml:lang="en">a sloping margin of a stream channel which normally confines the stream to its channel on land</skos:definition>
+    <skos:definition xml:lang="ru">косой берег реки, который удерживает поток воды в своих границах</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">elvebredd</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">flodstrand</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">stream bank</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бряг изложен на течение</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">речной берег</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.BNKX"
+                 skos:notation="H.BNKX">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">del av bredd</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">del av flodstrand</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of bank</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок берега</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от бряг</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.BOG"
+                 skos:notation="H.BOG">
+    <skos:definition xml:lang="en">a wetland characterized by peat forming sphagnum moss, sedge, and other acid-water plants</skos:definition>
+    <skos:definition xml:lang="ru">заболоченная территория, которая является благоприятной почвой для торфяного мха, осоки и других болотных растений</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">bog(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kärr, träsk</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">myr</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">блато(а)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">болото</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CAPG"
+                 skos:notation="H.CAPG">
+    <skos:definition xml:lang="en">a dome-shaped mass of glacial ice covering an area of  mountain summits or other high lands; smaller than an ice sheet</skos:definition>
+    <skos:definition xml:lang="ru">куполообразная масса ледникового льда, покрывающая гонные вершины; по размеру меньше ледникового щита</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">icecap</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">iskalott</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">iskappe</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ледена покривка</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">шапка полярного льда</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CHN"
+                 skos:notation="H.CHN">
+    <skos:definition xml:lang="en">the deepest part of a stream, bay, lagoon, or strait, through which the main current flows</skos:definition>
+    <skos:definition xml:lang="ru">самый глубоки участок реки, пролива, залива, лагуны; через него проходит основной поток воды</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">channel</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">канал</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">русло</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CHNL"
+                 skos:notation="H.CHNL">
+    <skos:definition xml:lang="en">that part of a lake having water deep enough for navigation between islands, shoals, etc.</skos:definition>
+    <skos:definition xml:lang="ru">наиболее глубокое место в озере; здесь могут проходить суда</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">lake channel(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">seilingskanal i innsjø</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sjökanal(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">езерен канал(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">омут</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CHNM"
+                 skos:notation="H.CHNM">
+    <skos:definition xml:lang="en">that part of a body of water deep enough for navigation through an area otherwise not suitable</skos:definition>
+    <skos:definition xml:lang="ru">канал, предназначенный для судоходной связи между морями</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">marine channel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">marinkanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">skipsled på sjøen</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">морски канал</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">морской канал</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CHNN"
+                 skos:notation="H.CHNN">
+    <skos:definition xml:lang="en">a buoyed channel of sufficient depth for the safe navigation of vessels</skos:definition>
+    <skos:definition xml:lang="ru">огражденный буями пролив, достаточно глубокий для безопасного судоходства</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">merket skipsled</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">navigation channel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">navigeringskanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">навигационен канал</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">судоходное русло</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CNFL"
+                 skos:notation="H.CNFL">
+    <skos:definition xml:lang="en">a place where two or more streams or intermittent streams flow together</skos:definition>
+    <skos:definition xml:lang="ru">место, где две (или больше) реки соединяются в одну</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">confluence</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sammanflöde</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sammenløp</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">место слияние (рек)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">устие</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CNL"
+                 skos:notation="H.CNL">
+    <skos:definition xml:lang="en">an artificial watercourse</skos:definition>
+    <skos:definition xml:lang="ru">искусственная река</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">canal</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">канал</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">канал</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CNLA"
+                 skos:notation="H.CNLA">
+    <skos:definition xml:lang="en">a conduit used to carry water</skos:definition>
+    <skos:definition xml:lang="ru">трубопровод, используемый для передачи воды</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">akvedukt</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">akvedukt</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">aqueduct</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">аквадукт</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">акведук/водопровод</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CNLB"
+                 skos:notation="H.CNLB">
+    <skos:definition xml:lang="en">a conspicuously curved or bent section of a canal</skos:definition>
+    <skos:definition xml:lang="ru">изогнутый участок канала</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">canal bend</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kanalkrök</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kanalsving</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">излучина канала</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">канална връзка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CNLD"
+                 skos:notation="H.CNLD">
+    <skos:definition xml:lang="en">an artificial waterway carrying water away from a wetland or from drainage ditches</skos:definition>
+    <skos:definition xml:lang="ru">искусственный судоходный канал, забирает лишнюю воду  либо в заболоченной местности, либо из дренажного канала</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">drainage canal</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">dreneringskanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">dräneringskanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водоотводный канал</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">отводнителен канал</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CNLI"
+                 skos:notation="H.CNLI">
+    <skos:definition xml:lang="en">a canal which serves as a main conduit for irrigation water</skos:definition>
+    <skos:definition xml:lang="ru">канал, который служит главным средством передачи воды для орошения</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">bevattningskanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">irrigation canal</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vanningskanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">напоителен канал</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">оросительный канал</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CNLN"
+                 skos:notation="H.CNLN">
+    <skos:definition xml:lang="en">a watercourse constructed for navigation of vessels</skos:definition>
+    <skos:definition xml:lang="ru">канал, предназначенный для судоходства</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">navigation canal(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">navigeringskanaler</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">seilingskanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">навигационен канал(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">судоходный канал</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CNLQ"
+                 skos:notation="H.CNLQ">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">abandoned canal</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">nedlagt kanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergiven kanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заброшенный канал</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставен канал</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CNLSB"
+                 skos:notation="H.CNLSB">
+    <skos:definition xml:lang="en">a gently inclined underground tunnel bringing water for irrigation from aquifers</skos:definition>
+    <skos:definition xml:lang="ru">подземный туннель, по которому течет вода, используемая  для орошения; вода берется из водоносного слоя почвы</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">underground irrigation canal(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">underjordisk bevattningskanal(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">underjordisk vanningskanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">подземна напоителна система</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">подземный оросительный канал</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CNLX"
+                 skos:notation="H.CNLX">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">del av kanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">del av kanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of canal</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">сечение канала</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от канал</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.COVE"
+                 skos:notation="H.COVE">
+    <skos:definition xml:lang="en">a small coastal indentation, smaller than a bay</skos:definition>
+    <skos:definition xml:lang="ru">защищённое, закрытое место в скалах на морском берегу</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">cove(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kil</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">liten vik</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">заливче</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">прибойная пещера</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CRKT"
+                 skos:notation="H.CRKT">
+    <skos:definition xml:lang="en">a meandering channel in a coastal wetland subject to bi-directional tidal currents</skos:definition>
+    <skos:definition xml:lang="ru">извилистый канал на прибрежной заболоченной территории, по которому идет двустороннее приливное течение</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">tidal creek(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tidevannselv</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tidvattensvik(ar)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">небольшой временный водоток (связанный с приливами и отливами)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">приливно заливче</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CRNT"
+                 skos:notation="H.CRNT">
+    <skos:definition xml:lang="en">a horizontal flow of water in a given direction with uniform velocity</skos:definition>
+    <skos:definition xml:lang="ru">горизонтальный поток воды в заданном направлении с одинаковой скоростью</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">current</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">ström, strömning</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">strøm</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">течение</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">течение</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.CUTF"
+                 skos:notation="H.CUTF">
+    <skos:definition xml:lang="en">a channel formed as a result of a stream cutting through a meander neck</skos:definition>
+    <skos:definition xml:lang="ru">канал, образованный в результате потока воды, идущей  через шейку меандра</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">avskåret</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">cutoff</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">cutoff</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">обводной канал</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">скъсяване</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.DCK"
+                 skos:notation="H.DCK">
+    <skos:definition xml:lang="en">a waterway between two piers, or cut into the land for the berthing of ships</skos:definition>
+    <skos:definition xml:lang="ru">портовое сооружение для ремонта и постройки судов.</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">dock(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">dokk</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">skeppsdocka</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">док</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пристанище(а)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.DCKB"
+                 skos:notation="H.DCKB">
+    <skos:definition xml:lang="en">a part of a harbor where ships dock</skos:definition>
+    <skos:definition xml:lang="ru">часть гавани, предназначенная для стоянки судов</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">docking basin</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fartygsdocka</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">havnebasseng</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">басейнов док</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">портовый бассейн</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.DOMG"
+                 skos:notation="H.DOMG">
+    <skos:definition xml:lang="en">a comparatively elevated area on an icecap</skos:definition>
+    <skos:definition xml:lang="ru">небольшая возвышенность на поверхности ледника</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">icecap dome</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">iskuppel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">välvd iskalott</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ледено покритие</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ледниковый купол</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.DPRG"
+                 skos:notation="H.DPRG">
+    <skos:definition xml:lang="en">a comparatively depressed area on an icecap</skos:definition>
+    <skos:definition xml:lang="ru">небольшое углубление на поверхности ледника</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">fordypning i iskappen</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">icecap depression</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sänka i iskalott</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">заледена падина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ледниковая впадина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.DTCH"
+                 skos:notation="H.DTCH">
+    <skos:definition xml:lang="en">a small artificial watercourse dug for draining or irrigating the land</skos:definition>
+    <skos:definition xml:lang="ru">небольшой искусственный водоем, используемый для осушения и орошения территории</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">dike</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">ditch</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">grøft</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">канава</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">канавка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.DTCHD"
+                 skos:notation="H.DTCHD">
+    <skos:definition xml:lang="en">a ditch which serves to drain the land</skos:definition>
+    <skos:definition xml:lang="ru">канава, используемая для осушения территории</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">drainage ditch</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">dreneringsgrøft</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">dräneringsdike</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водоотводная канава</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">отводнителна канавка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.DTCHI"
+                 skos:notation="H.DTCHI">
+    <skos:definition xml:lang="en">a ditch which serves to distribute irrigation water</skos:definition>
+    <skos:definition xml:lang="ru">канава, используемая для орошения почвы</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">bevattningsdike</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">irrigation ditch</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vanningsgrøft</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">напоителна канавка</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">оросительная канава</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.DTCHM"
+                 skos:notation="H.DTCHM">
+    <skos:definition xml:lang="en">an area where a drainage ditch enters a lagoon, lake or bay</skos:definition>
+    <skos:definition xml:lang="ru">место, где осушительный канал впадает в лагуну, озеро или залив</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">dikesmynning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">ditch mouth(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">grøfteutløp</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">заустване на канавка</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">устье канала</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.ESTY"
+                 skos:notation="H.ESTY">
+    <skos:definition xml:lang="en">a funnel-shaped stream mouth or embayment where fresh water mixes with sea water under tidal influences</skos:definition>
+    <skos:definition xml:lang="ru">однорукавное, воронкообразное устье реки, расширяющееся в сторону моря</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">elvemunning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">estuary</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">flodmynning</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">заливно устие</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">эстуарий</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.FISH"
+                 skos:notation="H.FISH">
+    <skos:definition xml:lang="en">a fishing ground, bank or area where fishermen go to catch fish</skos:definition>
+    <skos:definition xml:lang="ru">место ловли рыбы</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">fishing area</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fiskeområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fiskeområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">риболовен район</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">рыболовная зона</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.FJD"
+                 skos:notation="H.FJD">
+    <skos:definition xml:lang="en">a long, narrow, steep-walled, deep-water arm of the sea at high latitudes, usually along mountainous coasts</skos:definition>
+    <skos:definition xml:lang="ru">узкий, длинный, глубоководный морской залив с крутыми берегами; берега фьорда  в большинстве случаев образованы высокими скалами</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">fjord</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fjord</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fjord</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">фиорд</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">фьорд</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.FJDS"
+                 skos:notation="H.FJDS">
+    <skos:definition xml:lang="en">long, narrow, steep-walled, deep-water arms of the sea at high latitudes, usually along mountainous coasts</skos:definition>
+    <skos:definition xml:lang="ru">узкие, длинные, глубоководные морские заливы с крутыми берегами</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">fjordar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fjorder</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">fjords</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">фиорди</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">фьорды</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.FLLS"
+                 skos:notation="H.FLLS">
+    <skos:definition xml:lang="en">a perpendicular or very steep descent of the water of a stream</skos:definition>
+    <skos:definition xml:lang="ru">падение воды в реке с уступа, пересекающего речное русло</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">foss</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vattenfall</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">waterfall(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">водопад(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водопад</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.FLLSX"
+                 skos:notation="H.FLLSX">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">del av foss</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">del av vattenfall</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of waterfall(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок водопада</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от водопад(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.FLTM"
+                 skos:notation="H.FLTM">
+    <skos:definition xml:lang="en">a relatively level area of mud either between high and low tide lines, or subject to flooding</skos:definition>
+    <skos:definition xml:lang="ru">средних размеров площадь илистого грунта, занимает промежуточное место между высокой и низкой границами прилива, подвергается затоплению</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">mud flat(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">mud flat(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">slamområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">тинесто мочурище(а)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">топь</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.FLTT"
+                 skos:notation="H.FLTT">
+    <skos:definition xml:lang="en">a large flat area of mud or sand attached to the shore and alternately covered and uncovered by the tide</skos:definition>
+    <skos:definition xml:lang="ru">береговая полоса, покрываемая водой при приливе</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">tidal flat(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tidal flat(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tidevannsområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">заливно мочурище(а)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">приливно-отливная отмель</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.GLCR"
+                 skos:notation="H.GLCR">
+    <skos:definition xml:lang="en">a mass of ice, usually at high latitudes or high elevations, with sufficient thickness to flow away from the source area in lobes, tongues, or masses</skos:definition>
+    <skos:definition xml:lang="ru">масса льда преимущественно атмосферного происхождения, испытывающая вязкопластическое течение под действием силы тяжести и принявшая форму потока, системы потоков, купола (щита) или плавучей плиты</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">glacier(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">glaciär(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">isbre</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ледник</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ледник</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.GULF"
+                 skos:notation="H.GULF">
+    <skos:definition xml:lang="en">a large recess in the coastline, larger than a bay</skos:definition>
+    <skos:definition xml:lang="ru">вдавшаяся в сушу часть моря</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">golf, bukt</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">golf</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">gulf</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">залив</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">морской залив</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.GYSR"
+                 skos:notation="H.GYSR">
+    <skos:definition xml:lang="en">a type of hot spring with intermittent eruptions of jets of hot water and steam</skos:definition>
+    <skos:definition xml:lang="ru">источник вулканического происхождения, выбрасывающий через определённые промежутки времени фонтаны горячей воды и пара</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">geyser</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">geyser</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">geysir</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">гейзер</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">гейзер</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.HBR"
+                 skos:notation="H.HBR">
+    <skos:definition xml:lang="en">a haven or space of deep water so sheltered by the adjacent land as to afford a safe anchorage for ships</skos:definition>
+    <skos:definition xml:lang="ru">естественная или искусственная защищенная от ветра и волн прибрежная часть водного пространства, служащая местом стоянки, причала и ремонта судов</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">hamn(ar)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">harbor(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">havn</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">гавань</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пристанище(а)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.HBRX"
+                 skos:notation="H.HBRX">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">del av hamn</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">del av havn</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of harbor</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок гавани</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от пристанище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.INLT"
+                 skos:notation="H.INLT">
+    <skos:definition xml:lang="en">a narrow waterway extending into the land, or connecting a bay or lagoon with a larger body of water</skos:definition>
+    <skos:definition xml:lang="ru">узкий водный путь, простирающийся до суши; или связывающий бухту или лагуну с большим водным образованием</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">inlet</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">innløp</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vik, sund</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">проток</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">узкий пролив</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.INLTQ"
+                 skos:notation="H.INLTQ">
+    <skos:definition xml:lang="en">an inlet which has been filled in, or blocked by deposits</skos:definition>
+    <skos:definition xml:lang="ru">узкий пролив, который ранее был пригоден для судоходства, в настоящее время пролив засыпан</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">former inlet</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tidigare vik</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tidligere innløp</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бивш проток</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">засыпанный узкий пролив</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LBED"
+                 skos:notation="H.LBED">
+    <skos:definition xml:lang="en">a dried up or drained area of a former lake</skos:definition>
+    <skos:definition xml:lang="ru">место, которое осталось после высохшего или специально осушенного озера</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">gammel innsjøbunn</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">lake bed(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sjöbotten</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">легло на езеро(а)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">озерная котловина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LGN"
+                 skos:notation="H.LGN">
+    <skos:definition xml:lang="en">a shallow coastal waterbody, completely or partly separated from a larger body of water by a barrier island, coral reef or other depositional feature</skos:definition>
+    <skos:definition xml:lang="ru">мелководный залив или озеро, отделившиеся от моря вследствие образования песчаной полосы</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">lagoon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">lagun</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">lagune</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">лагуна</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лагуна</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LGNS"
+                 skos:notation="H.LGNS">
+    <skos:definition xml:lang="en">shallow coastal waterbodies, completely or partly separated from a larger body of water by a barrier island, coral reef or other depositional feature</skos:definition>
+    <skos:definition xml:lang="ru">мелководные заливы или озеро, отделившиеся от моря вследствие образования песчаной полосы</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">lagoons</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">laguner</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">laguner</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">лагуни</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лагуны</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LGNX"
+                 skos:notation="H.LGNX">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">del av lagun</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">del av lagune</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of lagoon</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок лагуны</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от кагуна</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LK"
+                 skos:notation="H.LK">
+    <skos:definition xml:lang="en">a large inland body of standing water</skos:definition>
+    <skos:definition xml:lang="ru">замкнутый естественный водоём в углублении суши, котловине</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">innsjø</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">lake</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sjö</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">езеро</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">озеро</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LKC"
+                 skos:notation="H.LKC">
+    <skos:definition xml:lang="en">a lake in a crater or caldera</skos:definition>
+    <skos:definition xml:lang="ru">озеро в кратере или кальдере (круглое или овальное углубление в жерле вулкана)</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">crater lake</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kratersjö</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kratersjø</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">вулканично езеро</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">кратерное озеро</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LKI"
+                 skos:notation="H.LKI">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">intermittent lake</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">periodisk sjö</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tilbakevendende innsjø</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">временно исчезающее озеро</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пресъхващо езеро</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LKN"
+                 skos:notation="H.LKN">
+    <skos:definition xml:lang="en">an inland body of salt water with no outlet</skos:definition>
+    <skos:definition xml:lang="ru">озеро, вода которого сильно минерализована; содержит большое количество солей</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">salt lake</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">saltsjö</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">saltsjø</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">солено езеро</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">соленое озеро</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LKNI"
+                 skos:notation="H.LKNI">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">intermittent salt lake</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">periodisk saltsjö</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tilbakevendende saltsjø</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">временно исчезающее соленое озеро</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пресъхващо солено езеро</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LKO"
+                 skos:notation="H.LKO">
+    <skos:definition xml:lang="en">a crescent-shaped lake commonly found adjacent to meandering streams</skos:definition>
+    <skos:definition xml:lang="ru">серповидное озеро, прилегающее  к извилистым рекам</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">kroksjø</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">oxbow lake</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">uformad sjö</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">корекция</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пойменное озеро</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LKOI"
+                 skos:notation="H.LKOI">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">intermittent oxbow lake</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">peridodisk uformad sjö</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tilbakevendende kroksjø</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">временно исчезающее пойменное озеро</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пресъхващи корекции</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LKS"
+                 skos:notation="H.LKS">
+    <skos:definition xml:lang="en">large inland bodies of standing water</skos:definition>
+    <skos:definition xml:lang="ru">замкнутые естественные водоёмы в углублении суши, котловине</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">innsjøer</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">lakes</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sjöar</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">езера</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">озера</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LKSB"
+                 skos:notation="H.LKSB">
+    <skos:definition xml:lang="en">a standing body of water in a cave</skos:definition>
+    <skos:definition xml:lang="ru">озеро в карстовых пещерах, питающееся подземными водами</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">underground lake</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">underjordisk innsjø</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">underjordisk sjö</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">подземни езера</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">подземное озеро</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LKSC"
+                 skos:notation="H.LKSC">
+    <skos:definition xml:lang="en">lakes in a crater or caldera</skos:definition>
+    <skos:definition xml:lang="ru">озера в кратере или кальдере (круглое или овальное углубление в жерле вулкана)</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">crater lakes</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kratersjöar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kratersjøer</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">вулканични езера</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">кратерные озера</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LKSI"
+                 skos:notation="H.LKSI">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">intermittent lakes</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">periodiska sjöar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tilbakevendende innsjøer</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">исчезающие озера</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пресъхващи езера</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LKSN"
+                 skos:notation="H.LKSN">
+    <skos:definition xml:lang="en">inland bodies of salt water with no outlet</skos:definition>
+    <skos:definition xml:lang="ru">озера, вода которых сильно минерализована; содержит большое количество солей</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">salt lakes</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">saltsjöar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">saltsjøer</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">солени езера</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">соленые озера</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LKSNI"
+                 skos:notation="H.LKSNI">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">intermittent salt lakes</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">periodiska saltsjöar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tilbakevendende saltsjøer</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">исчезающие соленые озера</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пресъхващи солени езера</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.LKX"
+                 skos:notation="H.LKX">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">del av innsjø</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">del av sjö</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of lake</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок озера</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от езеро</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.MFGN"
+                 skos:notation="H.MFGN">
+    <skos:definition xml:lang="en">diked salt ponds used in the production of solar evaporated salt</skos:definition>
+    <skos:definition xml:lang="ru">обвалованный соленые пруды, используемые в производстве  выварочной соли</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">salt evaporation ponds</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">saltdammar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">saltutvinningsbasseng</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">солено испаряващо се езерце</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">соленый испарительный пруд</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.MGV"
+                 skos:notation="H.MGV">
+    <skos:definition xml:lang="en">a tropical tidal mud flat characterized by mangrove vegetation</skos:definition>
+    <skos:definition xml:lang="ru">связанная с приливами и отливами, тропическая, илистая, равнинная местность, на которой произрастают мангровые растения</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">mangrove swamp</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">mangrovesump</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">mangroveträsk</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">мангрови блата</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">мангровое болото</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.MOOR"
+                 skos:notation="H.MOOR">
+    <skos:definition xml:lang="en">an area of open ground overlaid with wet peaty soils</skos:definition>
+    <skos:definition xml:lang="ru">залежи торфа, торфяное болото</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">hed(ar)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">mo</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">moor(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">торфяник</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">тресавище(а)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.MRSH"
+                 skos:notation="H.MRSH">
+    <skos:definition xml:lang="en">a wetland dominated by grass-like vegetation</skos:definition>
+    <skos:definition xml:lang="ru">заболоченная территория, заросшая травой</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">marsh(es)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">moras, sumpmark</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">myr</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">мочурище(а)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">травяное болото</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.MRSHN"
+                 skos:notation="H.MRSHN">
+    <skos:definition xml:lang="en">a flat area, subject to periodic salt water inundation, dominated by grassy salt-tolerant plants</skos:definition>
+    <skos:definition xml:lang="ru">равнинная местность, подверженная затоплению соленой водой; здесь произрастают преимущественно травянистые солеустойчивые растения</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">marskland</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">salt marsh</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">salt sumpmark</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">солени мочурища</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">соленое травяное болото</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.NRWS"
+                 skos:notation="H.NRWS">
+    <skos:definition xml:lang="en">a navigable narrow part of a bay, strait, river, etc.</skos:definition>
+    <skos:definition xml:lang="ru">район водной поверхности, доступный для плавания по ширине и по глубинам, но стесняющий свободное маневрирование из-за близости берегов, рифов, отмелей и кос</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">narrows</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">smale sund</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">trångt sund</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">тясна част на протоци</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">узкости</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.OCN"
+                 skos:notation="H.OCN">
+    <skos:definition xml:lang="en">one of the major divisions of the vast expanse of salt water covering part of the earth</skos:definition>
+    <skos:definition xml:lang="ru">непрерывная водная оболочка Земли, окружающая материки и острова и обладающая общностью солевого состава</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">hav</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">hav</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">ocean</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">океан</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">океан</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.OVF"
+                 skos:notation="H.OVF">
+    <skos:definition xml:lang="en">an area of breaking waves caused by the meeting of currents or by waves moving against the current</skos:definition>
+    <skos:definition xml:lang="ru">круговращательное движение воды, происходящее от столкновения встречных течений</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">brenninger</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">overfalls</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vattenfall</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бързеи</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водоворот</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.PND"
+                 skos:notation="H.PND">
+    <skos:definition xml:lang="en">a small standing waterbody</skos:definition>
+    <skos:definition xml:lang="ru">небольшой водоем со стоячей водой</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">damm</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">pond</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tjern</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">поток</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пруд</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.PNDI"
+                 skos:notation="H.PNDI">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">intermittent pond</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">periodisk damm</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tilbakevendende tjern</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">временно исчезающий пруд</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пресъхващ поток</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.PNDN"
+                 skos:notation="H.PNDN">
+    <skos:definition xml:lang="en">a small standing body of salt water often in a marsh or swamp, usually along a seacoast</skos:definition>
+    <skos:definition xml:lang="ru">небольшой водоем с соленой водой, обычно в болотистой местности, или вдоль морского побережья</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">salt pond</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">saltdamm</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">saltvannsdam</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">солено езерце</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">соленый пруд</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.PNDNI"
+                 skos:notation="H.PNDNI">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">intermittent salt pond(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">periodiska saltdammar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tilbakevendende saltvannsdam</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">временно исчезающий соленый пруд</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пресъхващо солено езерце(а)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.PNDS"
+                 skos:notation="H.PNDS">
+    <skos:definition xml:lang="en">small standing waterbodies</skos:definition>
+    <skos:definition xml:lang="ru">небольшие водоемы со стоячей водой</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">dammar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">dammer</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">ponds</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">езерца</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пруды</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.PNDSF"
+                 skos:notation="H.PNDSF">
+    <skos:definition xml:lang="en">ponds or enclosures in which fish are kept or raised</skos:definition>
+    <skos:definition xml:lang="ru">специальный искусственный водоем, в котором разводят рыб</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">fishponds</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fiskdammar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fiskedammer</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пруд для разведения рыб</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">рибарник</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.PNDSI"
+                 skos:notation="H.PNDSI">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">intermittent ponds</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">periodiska dammar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tilbakevendende dammer</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">временно исчезающие пруды</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пресъхващи езерца</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.PNDSN"
+                 skos:notation="H.PNDSN">
+    <skos:definition xml:lang="en">small standing bodies of salt water often in a marsh or swamp, usually along a seacoast</skos:definition>
+    <skos:definition xml:lang="ru">небольшие водоемы с соленой водой, обычно в болотистой местности, или вдоль морского побережья</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">salt ponds</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">saltdammar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">saltvannsdammer</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">солени езерца</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">соленые пруды</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.POOL"
+                 skos:notation="H.POOL">
+    <skos:definition xml:lang="en">a small and comparatively still, deep part of a larger body of water such as a stream or harbor; or a small body of standing water</skos:definition>
+    <skos:definition xml:lang="ru">водоем со стоячей водой</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">kulp</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">pool(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">pöl, damm, pool</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">бассейн</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">вир(ове)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.POOLI"
+                 skos:notation="H.POOLI">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">intermittent pool</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">peridodisk pool</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tilbakevendende kulp</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">временно исчезающий водоем</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пресъхващи вирове</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.RCH"
+                 skos:notation="H.RCH">
+    <skos:definition xml:lang="en">a straight section of a navigable stream or channel between two bends</skos:definition>
+    <skos:definition xml:lang="ru">участок реки между изгибами, перекатами с широким, спокойным течением и большей, чем на перекатах, глубиной</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">reach</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">rett elve- eller kanalstrekning</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">utvidgning</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">плёс</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част на река между два завоя/на канал между два шлюза</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.RDGG"
+                 skos:notation="H.RDGG">
+    <skos:definition xml:lang="en">a linear elevation on an icecap</skos:definition>
+    <skos:definition xml:lang="ru">узкая и длинная возвышенность на ледниковой поверхности</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">icecap ridge</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">iskalottsfåra</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">iskapperygg</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">заледена част на река между два завоя/на канал между два шлюза</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">шапка полярного льда</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.RDST"
+                 skos:notation="H.RDST">
+    <skos:definition xml:lang="en">an open anchorage affording less protection than a harbor</skos:definition>
+    <skos:definition xml:lang="ru">часть акватории порта, предназначенная для якорной стоянки судов и перегрузки грузов</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">redd</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">roadstead</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">åpen ankerplass</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пристанище далеч от брега</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">рейд</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.RF"
+                 skos:notation="H.RF">
+    <skos:definition xml:lang="en">a surface-navigation hazard composed of consolidated material</skos:definition>
+    <skos:definition xml:lang="ru">резкое надводное или подводное возвышение морского дна на мелководьях, препятствующее судоходству</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">reef(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">rev</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">rev</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">риф(ове)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">риф(ы)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.RFC"
+                 skos:notation="H.RFC">
+    <skos:definition xml:lang="en">a surface-navigation hazard composed of coral</skos:definition>
+    <skos:definition xml:lang="ru">подводные геологические образования из органогенных известняков, представляющие собой препятствия (опасности) для навигации</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">coral reef(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">korallrev</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">korallrev</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">коралловые рифы</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">коралов риф(ове)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.RFX"
+                 skos:notation="H.RFX">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">del av rev</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">del av rev</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of reef</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок риф</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от риф</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.RPDS"
+                 skos:notation="H.RPDS">
+    <skos:definition xml:lang="en">a turbulent section of a stream associated with a steep, irregular stream bed</skos:definition>
+    <skos:definition xml:lang="ru">мелководный каменистый или скалистый участок в русле реки с относительно большим падением уровня воды и повышенной скоростью течения</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">forsar</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">rapids</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">stryk</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бързеи</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пороги реки</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.RSV"
+                 skos:notation="H.RSV">
+    <skos:definition xml:lang="en">an artificial pond or lake</skos:definition>
+    <skos:definition xml:lang="ru">искусственный водоём, образованный, как правило, в долине реки водоподпорными сооружениями для накопления и хранения воды в целях её использования в народном хозяйстве</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">reservoar</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">reservoar</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">reservoir(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">водохранилище(а)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водохранилище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.RSVI"
+                 skos:notation="H.RSVI">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">intermittent reservoir</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">periodisk reservoar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tilbakevendende reservoar</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">периодически пересыхающее водохранилище</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пресъхващи водохранилища</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.RSVT"
+                 skos:notation="H.RSVT">
+    <skos:definition xml:lang="en">a contained pool or tank of water at, below, or above ground level</skos:definition>
+    <skos:definition xml:lang="ru">наполненный водой бак или резервуар, находящийся на, выше или ниже уровня земли</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">vanntank</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vattentank</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">water tank</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">воден ресервуар</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водяной бак</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.RVN"
+                 skos:notation="H.RVN">
+    <skos:definition xml:lang="en">a small, narrow, deep, steep-sided stream channel, smaller than a gorge</skos:definition>
+    <skos:definition xml:lang="ru">глубокая длинная впадина на поверхности земли, образовавшаяся от действия дождевых и талых вод</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">ravin(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">ravine(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">ravine</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">клисура(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">овраг</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.SBKH"
+                 skos:notation="H.SBKH">
+    <skos:definition xml:lang="en">a salt flat or salt encrusted plain subject to periodic inundation from flooding or high tides</skos:definition>
+    <skos:definition xml:lang="ru">замкнутое бессточное понижение рельефа с плоским глинистым днищем, занятым солончаками</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">sabkha (oversvømt område)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">sabkha(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sabkha</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">себха</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">сухо легло на солено езеро(а)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.SD"
+                 skos:notation="H.SD">
+    <skos:definition xml:lang="en">a long arm of the sea forming a channel between the mainland and an island or islands; or connecting two larger bodies of water</skos:definition>
+    <skos:definition xml:lang="ru">длинный морской рукав, образующий пролив между материком и островом, или островами</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">sound</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sund</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sund</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">морски ръкав</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">широкая лагуна</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.SEA"
+                 skos:notation="H.SEA">
+    <skos:definition xml:lang="en">a large body of salt water more or less confined by continuous land or chains of islands forming a subdivision of an ocean</skos:definition>
+    <skos:definition xml:lang="ru">большое водное пространство, ограниченное с одной или нескольких сторон сушей и отделяемое от самого океана островами или возвышенностями подводного рельефа</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">hav</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">sea</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sjø</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">море</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">море</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.SHOL"
+                 skos:notation="H.SHOL">
+    <skos:definition xml:lang="en">a surface-navigation hazard composed of unconsolidated material</skos:definition>
+    <skos:definition xml:lang="ru">участок (обычно прибрежный) реки, озера и т.п. с небольшой глубиной</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">grund, rev</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sandgrunne</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">shoal(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">мелководье</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">плитчина(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.SILL"
+                 skos:notation="H.SILL">
+    <skos:definition xml:lang="en">the low part of an underwater gap or saddle separating basins, including a similar feature at the mouth of a fjord</skos:definition>
+    <skos:definition xml:lang="ru">вытянутое горное поднятие на дне океанов и морей. Часто подводные хребты выступают над поверхностью воды в виде островов или целых архипелагов</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">sill</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">terskel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tröskel</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">врата на шлюз</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">подводный хребет</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.SPNG"
+                 skos:notation="H.SPNG">
+    <skos:definition xml:lang="en">a place where ground water flows naturally out of the ground</skos:definition>
+    <skos:definition xml:lang="ru">водный источник, бьющий, текущий из глубины земли; ключ</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">kilde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">källa(or)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">spring(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">извор(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">родник</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.SPNS"
+                 skos:notation="H.SPNS">
+    <skos:definition xml:lang="en">a place where sulphur ground water flows naturally out of the ground</skos:definition>
+    <skos:definition xml:lang="ru">источник воды, насыщенной сероводородом</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">sulphur spring(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">svavelkälla(or)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">svovelkilde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">серен извор(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">серный источник</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.SPNT"
+                 skos:notation="H.SPNT">
+    <skos:definition xml:lang="en">a place where hot ground water flows naturally out of the ground</skos:definition>
+    <skos:definition xml:lang="ru">источник термальных вод, температура которых выше 20°C</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">hot spring(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">varm kilde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">varmkälla (or)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">горещ извор(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">термальный источник</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STM"
+                 skos:notation="H.STM">
+    <skos:definition xml:lang="en">a body of running water moving to a lower level in a channel on land</skos:definition>
+    <skos:definition xml:lang="ru">небольшой мелкий водоток с постоянным или временным течением</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">bekk</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">stream</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">å, bäck, ström</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">поток</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ручей</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STMA"
+                 skos:notation="H.STMA">
+    <skos:definition xml:lang="en">a diverging branch flowing out of a main stream and rejoining it downstream</skos:definition>
+    <skos:definition xml:lang="ru">водоток, отходящий от реки и впадающий в неё ниже по течению;</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">anabranch</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">bifurkation</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">elvearm som vender tilbake til hovedløpet</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">протока</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">речен скален остров</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STMB"
+                 skos:notation="H.STMB">
+    <skos:definition xml:lang="en">a conspicuously curved or bent segment of a stream</skos:definition>
+    <skos:definition xml:lang="ru">крутой поворот, изгиб ручья</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">elvesving</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">stream bend</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">åkrök</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">завой на поток</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">излучина ручья</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STMC"
+                 skos:notation="H.STMC">
+    <skos:definition xml:lang="en">a stream that has been substantially ditched, diked, or straightened</skos:definition>
+    <skos:definition xml:lang="ru">естественный или искусственный водный поток канала</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">canalized stream</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kanaliserat vattendrag</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kanalisert bekk</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водоток канала</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">канализиран поток</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STMD"
+                 skos:notation="H.STMD">
+    <skos:definition xml:lang="en">a branch which flows away from the main stream, as in a delta or irrigation canal</skos:definition>
+    <skos:definition xml:lang="ru">ответвление, отходящее от главного русла реки</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">biflod(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">distributary(-ies)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">flodarm som ikke vender tilbake til hovedløpet</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">речен ръкав(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">рукав реки</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STMH"
+                 skos:notation="H.STMH">
+    <skos:definition xml:lang="en">the source and upper part of a stream, including the upper drainage basin</skos:definition>
+    <skos:definition xml:lang="ru">часть реки, близкая к её истокам; прилегающая к ней местность</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">headwaters</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">källfloder</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">utspring</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">верховье</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">горен бйеф</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STMI"
+                 skos:notation="H.STMI">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">intermittent stream</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">periodiskt vattendrag</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tilbakevendende bekk</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пресъхващ поток</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">река с периодическим водотоком</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STMIX"
+                 skos:notation="H.STMIX">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">del av periodiskt vattendrag</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">del av tilbakevendende bekk</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of intermittent stream</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок реки с периодическим водотоком</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от пресъхващ пото</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STMM"
+                 skos:notation="H.STMM">
+    <skos:definition xml:lang="en">a place where a stream discharges into a lagoon, lake, or the sea</skos:definition>
+    <skos:definition xml:lang="ru">место впадения реки (в море, озеро и т.п.), конечный участок нижнего течения реки</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">bekkeutløp</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">stream mouth(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">åmynning(ar)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">планински поток(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">устье реки</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STMQ"
+                 skos:notation="H.STMQ">
+    <skos:definition xml:lang="en">a former stream or distributary no longer carrying flowing water, but still evident due to lakes, wetland, topographic or vegetation patterns</skos:definition>
+    <skos:definition xml:lang="ru">водоем, в котором больше нет воды, но который еще заметный благодаря его топографическим или растительным особенностям</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">abandoned watercourse</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">inntørket elveleie</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergivet vattendrag</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">высохший водоем</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пресъхнали реки</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STMS"
+                 skos:notation="H.STMS">
+    <skos:definition xml:lang="en">bodies of running water moving to a lower level in a channel on land</skos:definition>
+    <skos:definition xml:lang="ru">небольшие мелкие водотоки с постоянным или временным течением</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">bekker</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">streams</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vattendrag</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">потоци</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ручьи</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STMSB"
+                 skos:notation="H.STMSB">
+    <skos:definition xml:lang="en">a surface stream that disappears into an underground channel, or dries up in an arid area</skos:definition>
+    <skos:definition xml:lang="ru">река,  полностью высохшая или превратившаяся в подземный канал</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">elv uten utløp</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">lost river</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">lost river</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">высохшая река</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изгубващи се реки</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STMX"
+                 skos:notation="H.STMX">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">del av bekk</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">del av vattendrag</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of stream</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок ручья</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от поток</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.STRT"
+                 skos:notation="H.STRT">
+    <skos:definition xml:lang="en">a relatively narrow waterway, usually narrower and less extensive than a sound, connecting two larger bodies of water</skos:definition>
+    <skos:definition xml:lang="ru">узкое водное пространство, разъединяющее участки суши и соединяющее водоёмы (моря, озёра и т.п.) или их части</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">strait</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sund</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sund</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пролив</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пролив</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.SWMP"
+                 skos:notation="H.SWMP">
+    <skos:definition xml:lang="en">a wetland dominated by tree vegetation</skos:definition>
+    <skos:definition xml:lang="ru">заболоченная территория, на которой преобладает древесная растительность</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">sump</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">swamp</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">träsk, sumpmark, kärr</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лесное болото</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">язовир</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.SYSI"
+                 skos:notation="H.SYSI">
+    <skos:definition xml:lang="en">a network of ditches and one or more of the following elements: water supply, reservoir, canal, pump, well, drain, etc.</skos:definition>
+    <skos:definition xml:lang="ru">земельная территория вместе с сетью каналов и др. гидротехнических и эксплуатационных сооружений, обеспечивающих её орошение</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">bevattningssystem</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">irrigation system</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vanningssystem</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">напоителен язовир</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">оросительная система</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.TNLC"
+                 skos:notation="H.TNLC">
+    <skos:definition xml:lang="en">a tunnel through which a canal passes</skos:definition>
+    <skos:definition xml:lang="ru">тоннель, сооружаемый при пересечении судоходным каналом возвышенности, горного хребта и т. п.</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">canal tunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">canal tunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kanaltunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">канален тунел</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">судоходный тоннель</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WAD"
+                 skos:notation="H.WAD">
+    <skos:definition xml:lang="en">a valley or ravine, bounded by relatively steep banks, which in the rainy season becomes a watercourse; found primarily in North Africa and the Middle East</skos:definition>
+    <skos:definition xml:lang="ru">русло или долина пересыхающего водотока; в Азии, в Африке</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">flod</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">wadi</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">wadi</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">вади</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">сухи речни корита (вади)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WADB"
+                 skos:notation="H.WADB">
+    <skos:definition xml:lang="en">a conspicuously curved or bent segment of a wadi</skos:definition>
+    <skos:definition xml:lang="ru">изогнутый участок вади</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">flodkrök</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">wadi bend</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">wadi-sving</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">извивка на вади</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">излучина вади</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WADJ"
+                 skos:notation="H.WADJ">
+    <skos:definition xml:lang="en">a place where two or more wadies join</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">flodförbindning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">wadi junction</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">wadi-sammenløp</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">възел на вади</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">место слияния двух или более вади</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WADM"
+                 skos:notation="H.WADM">
+    <skos:definition xml:lang="en">the lower terminus of a wadi where it widens into an adjoining floodplain, depression, or waterbody</skos:definition>
+    <skos:definition xml:lang="ru">место впадения вади (в море, озеро и т.п.), конечный участок нижнего течения вади</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">flodmynning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">wadi mouth</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">wadi-utløp</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">гърло на вади</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">устье вади</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WADS"
+                 skos:notation="H.WADS">
+    <skos:definition xml:lang="en">valleys or ravines, bounded by relatively steep banks, which in the rainy season become watercourses; found primarily in North Africa and the Middle East</skos:definition>
+    <skos:definition xml:lang="ru">русла или долины пересыхающих водотоков; в Азии, в Африке</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">floder</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">wadier</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">wadies</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">множество вади</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">множество вади</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WADX"
+                 skos:notation="H.WADX">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">del av flod</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">del av wadi</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of wadi</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок вади</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от вади</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WHRL"
+                 skos:notation="H.WHRL">
+    <skos:definition xml:lang="en">a turbulent, rotating movement of water in a stream</skos:definition>
+    <skos:definition xml:lang="ru">вращательное движение воды в реках, морях и т.п.; место, где происходит такое движение</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">strømvirvel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">virvel</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">whirlpool</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водоворот</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">водовъртеж</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WLL"
+                 skos:notation="H.WLL">
+    <skos:definition xml:lang="en">a cylindrical hole, pit, or tunnel drilled or dug down to a depth from which water, oil, or gas can be pumped or brought to the surface</skos:definition>
+    <skos:definition xml:lang="ru">глубокая яма с отвесными стенками, обычно защищённая от обвалов срубом, служащая для добывания воды из водоносных слоёв земли</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="sv">brunn, källa</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">brønn</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">well</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">кладенец</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">колодец</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WLLQ"
+                 skos:notation="H.WLLQ">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">abandoned well</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">forlatt brønn</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergiven källa</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заброшенный колодец</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставен кладенец</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WLLS"
+                 skos:notation="H.WLLS">
+    <skos:definition xml:lang="en">cylindrical holes, pits, or tunnels drilled or dug down to a depth from which water, oil, or gas can be pumped or brought to the surface</skos:definition>
+    <skos:definition xml:lang="ru">глубокие ямы с отвесными стенками, обычно защищённые от обвалов срубом, служащие для добывания воды из водоносных слоёв земли</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">brønner</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">källor</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">wells</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">кладенци</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">колодцы</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WTLD"
+                 skos:notation="H.WTLD">
+    <skos:definition xml:lang="en">an area subject to inundation, usually characterized by bog, marsh, or swamp vegetation</skos:definition>
+    <skos:definition xml:lang="ru">территория, подвергающаяся частым наводнениям; здесь часто образуются болота, на которых растет характерная для них болотная растительность</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">våtmark</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">våtmark</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">wetland</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">влажни зони</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заболоченная местность</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WTLDI"
+                 skos:notation="H.WTLDI">
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="en">intermittent wetland</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">periodisk våtmark</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tilbakevendende våtmark</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">периодически затопляемая территория</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пресъхващи влажни зони</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WTRC"
+                 skos:notation="H.WTRC">
+    <skos:definition xml:lang="en">a natural, well-defined channel produced by flowing water, or an artificial channel designed to carry flowing water</skos:definition>
+    <skos:definition xml:lang="ru">стремительно текущая река или ручей</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">vannløp</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vattendrag</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">watercourse</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">поток</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">речно корито</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#H.WTRH"
+                 skos:notation="H.WTRH">
+    <skos:definition xml:lang="en">a natural hole, hollow, or small depression that contains water, used by man and animals, especially in arid areas</skos:definition>
+    <skos:definition xml:lang="ru">естественное углубление, в котором собирается вода</skos:definition>
+    <skos:inScheme rdf:resource="#H"/>
+    <skos:prefLabel xml:lang="no">vannhull</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vattenhål</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">waterhole(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водяная яма</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">гьол(ове)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Class rdf:about="#L">
+    <rdfs:comment xml:lang="en">parks,area, ...</rdfs:comment>
+  </gn:Class>
+
+  <gn:Code rdf:about="#L.AGRC"
+                 skos:notation="L.AGRC">
+    <skos:definition xml:lang="en">a tract of land set aside for agricultural settlement</skos:definition>
+    <skos:definition xml:lang="ru">участок земли, отведенный для сельскохозяйственных поселений</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">agricultural colony</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">jordbrukskoloni</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">landbrukskoloni</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">селскостопанска колония</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">сельскохозяйственная колония</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.AMUS"
+                 skos:notation="L.AMUS">
+    <skos:definition xml:lang="en">Amusement Park are theme parks, adventure parks offering entertainment, similar to funfairs but with a fix location</skos:definition>
+    <skos:definition xml:lang="ru">парк развлечений, то же, что и ярмарка, только с постоянным месторасположением</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="bg">amusement park</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">amusement park</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">amusement park</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">nöjespark</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">Парк аттракционов  (ПКиО)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.AREA"
+                 skos:notation="L.AREA">
+    <skos:definition xml:lang="en">a tract of land without homogeneous character or boundaries</skos:definition>
+    <skos:definition xml:lang="ru">местность, земля, край; часть какой-либо территории (страны, государства, материка, земной суши и т.п.), выделяемая при районировании по определённому существенному признаку</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="sv">area, område</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">area</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">område</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">Область</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">регион</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.BSND"
+                 skos:notation="L.BSND">
+    <skos:definition xml:lang="en">an area drained by a stream</skos:definition>
+    <skos:definition xml:lang="ru">поверхность, с которой речная система, море или озеро собирают воды</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">drainage basin</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">dreneringsbasseng</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vattenuppsamlingsområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">Водосборный бассейн</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">доден басейн</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.BSNP"
+                 skos:notation="L.BSNP">
+    <skos:definition xml:lang="en">an area underlain by an oil-rich structural basin</skos:definition>
+    <skos:definition xml:lang="ru">область с богатой нефтью структурной впадиной</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">petroleum basin</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">petroleumsbasseng</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">råoljebassäng</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">нефтегазовый бассейн</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">нефтен басейн</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.BTL"
+                 skos:notation="L.BTL">
+    <skos:definition xml:lang="en">a site of a land battle of historical importance</skos:definition>
+    <skos:definition xml:lang="ru">район боевых действий; имеет важное историческое значение</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">battlefield</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">slagfält</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">slagmark</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">поле боя</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">полесражение</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.CLG"
+                 skos:notation="L.CLG">
+    <skos:definition xml:lang="en">an area in a forest with trees removed</skos:definition>
+    <skos:definition xml:lang="ru">открытое пространство в парке или в лесу</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">clearing</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">lysning</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">uthuggning, röjt område</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">поляна</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">сечище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.CMN"
+                 skos:notation="L.CMN">
+    <skos:definition xml:lang="en">a park or pasture for community use</skos:definition>
+    <skos:definition xml:lang="ru">земли (выгоны, сенокосы, леса), которые  находятся в общем пользовании</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="no">allmenning</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">allmänt område</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">common</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">обществена собственост</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">общинные земли</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.CNS"
+                 skos:notation="L.CNS">
+    <skos:definition xml:lang="en">a lease of land by a government for economic development, e.g., mining, forestry</skos:definition>
+    <skos:definition xml:lang="ru">арендуемая государством земля, пользование которой необходимо для экономического развития, например, шахты, лесные массивы</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">concession area</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">koncessionsområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">konsesjonsområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">концесионен район</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лицензионная территория</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.COLF"
+                 skos:notation="L.COLF">
+    <skos:definition xml:lang="en">a region in which coal deposits of possible economic value occur</skos:definition>
+    <skos:definition xml:lang="ru">площадь непрерывного или островного распространения угленосных формаций, значительная по размерам или запасам угля</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">coalfield</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kolfält</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kullfelt</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">въглищно находище</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">угольный бассейн</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.CONT"
+                 skos:notation="L.CONT">
+    <skos:definition xml:lang="en">continent : Europe, Africa, Asia, North America, South America, Oceania,Antarctica</skos:definition>
+    <skos:definition xml:lang="ru">континент: Евразия, Африка, Северная Америка, Южная Америка, Антарктида, Австралия, Океания</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">continent</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kontinent</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kontinent</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">континент</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">континент</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.CST"
+                 skos:notation="L.CST">
+    <skos:definition xml:lang="en">a zone of variable width straddling the shoreline</skos:definition>
+    <skos:definition xml:lang="ru">полоса суши, примыкающая к водной поверхности моря или океана и взаимодействующая с ним</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">coast</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kust</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kyst</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">крайбрежие</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">морской берег</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.CTRB"
+                 skos:notation="L.CTRB">
+    <skos:definition xml:lang="en">a place where a number of businesses are located</skos:definition>
+    <skos:definition xml:lang="ru">деловая часть города</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="sv">affärscenter</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">business center</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">forretningssenter</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">бизнес центр</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бизнес център</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.DEVH"
+                 skos:notation="L.DEVH">
+    <skos:definition xml:lang="en">a tract of land on which many houses of similar design are built according to a development plan</skos:definition>
+    <skos:definition xml:lang="ru">часть застроенной территории населенного пункта, предполагающая целостность архитектурного замысла</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="no">boligområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">housing development</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">housing development</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">жилищна зона</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">квартал</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.FLD"
+                 skos:notation="L.FLD">
+    <skos:definition xml:lang="en">an open as opposed to wooded area</skos:definition>
+    <skos:definition xml:lang="ru">безлесная равнина, ровное (в отличие от селения, леса) обширное пространство</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">field(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fält</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">åker</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">поле(та)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">поле</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.FLDI"
+                 skos:notation="L.FLDI">
+    <skos:definition xml:lang="en">a tract of level or terraced land which is irrigated</skos:definition>
+    <skos:definition xml:lang="ru">участки земли, подготовленные для естественной биологической очистки сточных вод и выращивания с.-х. растений</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="sv">(konst)bevattnade fält</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">irrigated field(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">overrislet åker</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ирригационные поля</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">напоявани полета</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.GASF"
+                 skos:notation="L.GASF">
+    <skos:definition xml:lang="en">an area containing a subterranean store of natural gas of economic value</skos:definition>
+    <skos:definition xml:lang="ru">совокупность залежей природного газа на определенной территории</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">gasfield</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">gasfält</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">gassfelt</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">залежи от гас</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">месторождение газа</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.GRAZ"
+                 skos:notation="L.GRAZ">
+    <skos:definition xml:lang="en">an area of grasses and shrubs used for grazing</skos:definition>
+    <skos:definition xml:lang="ru">участок травянистой растительности, используемый и поддерживаемый для выпаса домашних животных</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="no">beiteområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">betesområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">grazing area</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пастбище</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">тревиста зона</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.GVL"
+                 skos:notation="L.GVL">
+    <skos:definition xml:lang="en">an area covered with gravel</skos:definition>
+    <skos:definition xml:lang="ru">покрытая гравием территория</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">gravel area</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">grusområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">grusområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">едрозърнест пясък</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">покрытие из гравия</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.INDS"
+                 skos:notation="L.INDS">
+    <skos:definition xml:lang="en">an area characterized by industrial activity</skos:definition>
+    <skos:definition xml:lang="ru">территория с ярко выраженной индустриально-производственной специализацией</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">industrial area</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">industriområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">industriområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">индустриална зона</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">промышленный район</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.LAND"
+                 skos:notation="L.LAND">
+    <skos:definition xml:lang="en">a tract of land in the Arctic</skos:definition>
+    <skos:definition xml:lang="ru">участок земли в Арктике</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">arctic land</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">arktisk landskap</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">arktiskt land</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">арктически територии</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">арктические земли</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.LCTY"
+                 skos:notation="L.LCTY">
+    <skos:definition xml:lang="en">a minor area or place of unspecified or mixed character and indefinite boundaries</skos:definition>
+    <skos:definition xml:lang="ru">название низовой административно-территориальной единицы</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">locality</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">locality</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">trakt</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">местност</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">район</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.MILB"
+                 skos:notation="L.MILB">
+    <skos:definition xml:lang="en">a place used by an army or other armed service for storing arms and supplies, and for accommodating and training troops, a base from which operations can be initiated</skos:definition>
+    <skos:definition xml:lang="ru">территория (важный в стратегическом или политическом отношении пункт, район) и размещенные на ней войска с запасами оружия, боеприпасов, продовольствия и других материальных средств, необходимых для боевой и повседневной деятельности</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">military base</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">militärbas</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">militærbase</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">военна база</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">военная база</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.MNA"
+                 skos:notation="L.MNA">
+    <skos:definition xml:lang="en">an area of mine sites where minerals and ores are extracted</skos:definition>
+    <skos:definition xml:lang="ru">район добычи полезных ископаемых</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="no">gruveområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">gruvområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">mining area</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">полезни ископаеми</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">район разработки</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.MVA"
+                 skos:notation="L.MVA">
+    <skos:definition xml:lang="en">a tract of land where military field exercises are carried out</skos:definition>
+    <skos:definition xml:lang="ru">участок суши или моря, предназначенный для испытаний различных видов оружия, боевых средств и техники, а также для боевой подготовки войск</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">maneuver area</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">maneuver area</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">militært treningsområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">военен полигон</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">полигон</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.NVB"
+                 skos:notation="L.NVB">
+    <skos:definition xml:lang="en">an area used to store supplies, provide barracks for troops and naval personnel, a port for naval vessels, and from which operations are initiated</skos:definition>
+    <skos:definition xml:lang="ru">оборудованный и обороняемый район (зона) побережья и прилегающего участка моря обычно с несколькими пунктами базирования кораблей, с силами и средствами, предназначенными для обороны</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="sv">marinbas</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">marinebase</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">naval base</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">военно-морская база</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">военоворска база</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.OAS"
+                 skos:notation="L.OAS">
+    <skos:definition xml:lang="en">an area in a desert made productive by the availability of water</skos:definition>
+    <skos:definition xml:lang="ru">участок пустыни или полупустыни с обильным естественным или искусственным увлажнением, обусловленным близостью рек и грунтовых вод, и с богатой растительностью</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="sv">oas(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">oase</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">oasis(-es)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">оазис(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">оазис</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.OILF"
+                 skos:notation="L.OILF">
+    <skos:definition xml:lang="en">an area containing a subterranean store of petroleum of economic value</skos:definition>
+    <skos:definition xml:lang="ru">место под землей, где залегают запасы нефти</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">oilfield</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">oljefelt</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">oljefält</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">нефтяное месторождение</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">петролно находище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.PEAT"
+                 skos:notation="L.PEAT">
+    <skos:definition xml:lang="en">an area where peat is harvested</skos:definition>
+    <skos:definition xml:lang="ru">место, где добывают торф</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">peat cutting area</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">torvfält</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">torvskjæringsområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">торфено находище</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">торфяное месторождение</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.PRK"
+                 skos:notation="L.PRK">
+    <skos:definition xml:lang="en">an area, often of forested land, maintained as a place of beauty, or for recreation</skos:definition>
+    <skos:definition xml:lang="ru">обширная озелененная территория, благоустроенная и художественно оформленная для отдыха под открытым небом</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">park</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">park</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">park</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">парк</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">парк</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.PRT"
+                 skos:notation="L.PRT">
+    <skos:definition xml:lang="en">a place provided with terminal and transfer facilities for loading and discharging waterborne cargo or passengers, usually located in a harbor</skos:definition>
+    <skos:definition xml:lang="ru">место с закрытым водным пространством, специально оборудованное для стоянки, погрузки и разгрузки судов, гавань</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="sv">hamn</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">havn</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">port</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">порт</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пристанище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.QCKS"
+                 skos:notation="L.QCKS">
+    <skos:definition xml:lang="en">an area where loose sand with water moving through it may become unstable when heavy objects are placed at the surface, causing them to sink</skos:definition>
+    <skos:definition xml:lang="ru">пески, перенасыщенные водой восходящих источников и способные вследствие этого засасывать попадающие на них предметы, животных и человека</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="sv">kvicksand</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kvikksand</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">quicksand</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">зыбучие пески</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">плаващ пясък</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.REP"
+                 skos:notation="L.REP">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">republic</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.RES"
+                 skos:notation="L.RES">
+    <skos:definition xml:lang="en">a tract of public land reserved for future use or restricted as to use</skos:definition>
+    <skos:definition xml:lang="ru">особо охраняемая территория, полностью исключенная из любой хозяйственной деятельности в целях сохранения в нетронутом виде природных комплексов</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="no">regulert område</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">reservat</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">reserve</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заповедник</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">резерват</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.RESA"
+                 skos:notation="L.RESA">
+    <skos:definition xml:lang="en">a tract of land reserved for agricultural reclamation and/or development</skos:definition>
+    <skos:definition xml:lang="ru">участок земли, предназначенный для агромелиорации</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">agricultural reserve</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">jordbruksreservat</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">område regulert til landbruk</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">аграрен резерват</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">агрозаповедник</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.RESF"
+                 skos:notation="L.RESF">
+    <skos:definition xml:lang="en">a forested area set aside for preservation or controlled use</skos:definition>
+    <skos:definition xml:lang="ru">особо охраняемый участок леса, использование которого контролируется</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">forest reserve</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">skogsreservat</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vernet skog</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">горски резерват</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лесной заповедник</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.RESH"
+                 skos:notation="L.RESH">
+    <skos:definition xml:lang="en">a tract of land used primarily for hunting</skos:definition>
+    <skos:definition xml:lang="ru">участок территории, выделенный для интенсивного воспроизводства дичи и проведения строго регулируемых охот</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">hunting reserve</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">jaktområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">jaktreservat</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заповедно-охотничье хозяйство</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ловен резерват</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.RESN"
+                 skos:notation="L.RESN">
+    <skos:definition xml:lang="en">an area reserved for the maintenance of a natural habitat</skos:definition>
+    <skos:definition xml:lang="ru">особо охраняемые участки земли, водной поверхности и воздушного пространства над ними, где располагаются природные комплексы и объекты, которые имеют свое научное, культурное, эстетическое и оздоровительное значение, которые изъяты решениями органов государственной власти полностью или частично из хозяйственного использования</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">nature reserve</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">naturreservat</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">naturreservat</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">особо охраняемая природная  территория</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">природен резерват</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.RESP"
+                 skos:notation="L.RESP">
+    <skos:definition xml:lang="en">an area of palm trees where use is controlled</skos:definition>
+    <skos:definition xml:lang="ru">место, где растут пальмы, использование которых контролируется</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">palm tree reserve</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">palmereservat</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">palmträdsreservat</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пальмовый заповедник</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">резерват от палмови дървета</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.RESV"
+                 skos:notation="L.RESV">
+    <skos:definition xml:lang="en">a tract of land set aside for aboriginal, tribal, or native populations</skos:definition>
+    <skos:definition xml:lang="ru">территории, отведенные для поселения коренного населения страны</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="no">reservat</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">reservat</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">reservation</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">резерват</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">резервация</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.RESW"
+                 skos:notation="L.RESW">
+    <skos:definition xml:lang="en">a tract of public land reserved for the preservation of wildlife</skos:definition>
+    <skos:definition xml:lang="ru">заповедник, территория, где природные богатства (животные и растения) находятся под особой охраной правительства</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="no">viltreservat</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">viltreservat</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">wildlife reserve</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">резерват дива природа</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">резерват</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.RGN"
+                 skos:notation="L.RGN">
+    <skos:definition xml:lang="en">an area distinguished by one or more observable physical or cultural characteristics</skos:definition>
+    <skos:definition xml:lang="ru">область, район, территория, часть страны, отличающиеся совокупностью естественных или исторически сложившихся экономико-географических условий и национального состава населения</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">region</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">region</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">region</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">регион</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">регион</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.RGNE"
+                 skos:notation="L.RGNE">
+    <skos:definition xml:lang="en">a region of a country established for economic development or for statistical purposes</skos:definition>
+    <skos:definition xml:lang="ru">регион страны, характеризующийся своеобразием природных и экономических условий; деление страны на эк. регионы используется для получения статистических данных</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">economic region</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">ekonomisk region</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">økonomisk region</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">икономически регион</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">экономический регион</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.RGNL"
+                 skos:notation="L.RGNL">
+    <skos:definition xml:lang="en">a tract of land distinguished by numerous lakes</skos:definition>
+    <skos:definition xml:lang="ru">место скопления большого количества озер</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="no">innsjøområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">lake region</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sjöregion</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">езерен регион</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">озерный край</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.RNGA"
+                 skos:notation="L.RNGA">
+    <skos:definition xml:lang="en">a tract of land used for artillery firing practice</skos:definition>
+    <skos:definition xml:lang="ru">участок земли, где проходят военные артиллерийские учения</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">artillery range</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">militært skytefelt</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">skjutfält</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">артилерийски полигон</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">артиллерийский полигон</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.SALT"
+                 skos:notation="L.SALT">
+    <skos:definition xml:lang="en">a shallow basin or flat where salt accumulates after periodic inundation</skos:definition>
+    <skos:definition xml:lang="ru">мелководье или равнинная местность, где после периодических наводнений собирается соль</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">salt area</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">saltområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">saltområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">засолени територии</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">солевой бассейн</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.SNOW"
+                 skos:notation="L.SNOW">
+    <skos:definition xml:lang="en">an area of permanent snow and ice forming the accumulation area of a glacier</skos:definition>
+    <skos:definition xml:lang="ru">место скопления многолетнего снега и льда</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">snowfield</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">snöfält</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">snødekt område</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ледник</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">перманентна снежна покривка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.TRB"
+                 skos:notation="L.TRB">
+    <skos:definition xml:lang="en">a tract of land used by nomadic or other tribes</skos:definition>
+    <skos:definition xml:lang="ru">участок земли, являющийся в течение некоторого времени местом жительства для кочующих племен</skos:definition>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="no">stammeområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">stamområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">tribal area</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">племенна територия</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">территория племени</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#L.ZZZZZ"
+                 skos:notation="L.ZZZZZ">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:inScheme rdf:resource="#L"/>
+    <skos:prefLabel xml:lang="en">master source holdings list</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Class rdf:about="#P">
+    <rdfs:comment xml:lang="en">city, village,...</rdfs:comment>
+  </gn:Class>
+
+  <gn:Code rdf:about="#P.PPL"
+                 skos:notation="P.PPL">
+    <skos:definition xml:lang="en">a city, town, village, or other agglomeration of buildings where people live and work</skos:definition>
+    <skos:definition xml:lang="ru">место, где живут люди (город, село, поселок и т. п.)</skos:definition>
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="sv">befolkad plats</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">befolket sted</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">populated place</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">населенный пункт</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">населено място</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.PPLA"
+                 skos:notation="P.PPLA">
+    <skos:definition xml:lang="en">seat of a first-order administrative division (PPLC takes precedence over PPLA)</skos:definition>
+    <skos:definition xml:lang="ru">центр административного деления первого порядка (столица политического образования предшествует центру АТД первого порядка)</skos:definition>
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="en">seat of a first-order administrative
+            division</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sete for primær administrativ inndeling</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">säte för en första ordningens administrativ enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">центр административного деления первого порядка</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">център на първостепенна административна единица</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.PPLA2"
+                 skos:notation="P.PPLA2">
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="en">seat of a second-order administrative division</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">центр административного деления второго порядка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.PPLA3"
+                 skos:notation="P.PPLA3">
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="en">seat of a third-order administrative division</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">центр административного деления третьего порядка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.PPLA4"
+                 skos:notation="P.PPLA4">
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="en">seat of a fourth-order administrative division</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">центр административного деления четвертого порядка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.PPLC"
+                 skos:notation="P.PPLC">
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="no">Hovedstad</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">capital of a political entity</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">huvudstad i politisk enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">столица на политическо образувание</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">столица политического образования</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.PPLF"
+                 skos:notation="P.PPLF">
+    <skos:definition xml:lang="en">a populated place where the population is largely engaged in agricultural activities</skos:definition>
+    <skos:definition xml:lang="ru">населенный пункт, где большая часть населения занята в сельским хозяйством</skos:definition>
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="en">farm village</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">деревня</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.PPLG"
+                 skos:notation="P.PPLG">
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="no">regjeringssete i en politisk enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">seat of government of a political entity</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">säte av ledningen för en politisk enhet</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">здание правительства политического образования</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">столица на правителство на политическо образувание</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.PPLL"
+                 skos:notation="P.PPLL">
+    <skos:definition xml:lang="en">an area similar to a locality but with a small group of dwellings or other buildings</skos:definition>
+    <skos:definition xml:lang="ru">первичная единица расселения людей в пределах одного застроенного земельного участка: город, поселок городского типа, село. Обязательным признаком населенного пункта является постоянство его использования как места обитания</skos:definition>
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="sv">befolkad ort</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">befolket trakt</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">populated locality</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">населенный пункт</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">населено място</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.PPLQ"
+                 skos:notation="P.PPLQ">
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="en">abandoned populated place</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">avfolket sted</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tidigare befolkad plats</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставено населено място</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">покинутый населенный пункт</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.PPLR"
+                 skos:notation="P.PPLR">
+    <skos:definition xml:lang="en">a populated place whose population is largely engaged in religious occupations</skos:definition>
+    <skos:definition xml:lang="ru">населенный пункт, где большую часть населения составляют люди, объединенные одной верой. Например, монастырь</skos:definition>
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="en">religious populated place</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">religiös befolkad plats</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">religiøst befolket sted</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">религиозен център</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">религиозная община</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.PPLS"
+                 skos:notation="P.PPLS">
+    <skos:definition xml:lang="en">cities, towns, villages, or other agglomerations of buildings where people live and work</skos:definition>
+    <skos:definition xml:lang="ru">первичные единицы расселения людей в пределах одного застроенного земельного участка: город, поселок городского типа, село. Обязательным признаком населенных пункт является постоянство его использования как места обитания.</skos:definition>
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="sv">befolkade platser</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">befolkede steder</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">populated places</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">населени места</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">населенные пункты</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.PPLW"
+                 skos:notation="P.PPLW">
+    <skos:definition xml:lang="en">a village, town or city destroyed by a natural disaster, or by war</skos:definition>
+    <skos:definition xml:lang="ru">населенный пункт (деревня, город), пострадавший в результате природной катастрофы или войны</skos:definition>
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="en">destroyed populated place</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">förstörd befolkad plats</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">ødelagt befolket sted</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">разрушенный населенный пункт</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">разрушено населено място</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.PPLX"
+                 skos:notation="P.PPLX">
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="sv">del av befolkad plats</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">del av befolket sted</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of populated place</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок населенного пункта</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от населено място</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#P.STLMT"
+                 skos:notation="P.STLMT">
+    <skos:inScheme rdf:resource="#P"/>
+    <skos:prefLabel xml:lang="en">israeli settlement</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">israelisk bosättning</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">israelsk bosetning</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">еврейские поселения</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">израелски поселения</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Class rdf:about="#R">
+    <rdfs:comment xml:lang="en">road, railroad, ...</rdfs:comment>
+  </gn:Class>
+
+  <gn:Code rdf:about="#R.CSWY"
+                 skos:notation="R.CSWY">
+    <skos:definition xml:lang="en">a raised roadway across wet ground or shallow water</skos:definition>
+    <skos:definition xml:lang="ru">насыпная дорога для проезда, прохода через топкое место</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="sv">broväg, höjd gångbana</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">causeway</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">veifylling</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">гать</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">път в блато</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.CSWYQ"
+                 skos:notation="R.CSWYQ">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">a causeway no longer used for transportation</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="en">former causeway</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.OILP"
+                 skos:notation="R.OILP">
+    <skos:definition xml:lang="en">a pipeline used for transporting oil</skos:definition>
+    <skos:definition xml:lang="ru">трубопровод для перекачки нефти и нефтепродуктов</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="en">oil pipeline</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">oljeledning</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">oljepipeline</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">нефтепровод</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">нефтопровод</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.PRMN"
+                 skos:notation="R.PRMN">
+    <skos:definition xml:lang="en">a place for public walking, usually along a beach front</skos:definition>
+    <skos:definition xml:lang="ru">место для прогулки, особ. набережная, проспект, бульвар, аллея, палуба корабля</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="sv">promenad</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">promenade</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">promenade</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">променад</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">стъргало</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.PTGE"
+                 skos:notation="R.PTGE">
+    <skos:definition xml:lang="en">a place where boats, goods, etc., are carried overland between navigable waters</skos:definition>
+    <skos:definition xml:lang="ru">перевал в верховьях рек различных бассейнов</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="no">eid</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">portage</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">portage</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">волок</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">място за пренос на лодки</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.RD"
+                 skos:notation="R.RD">
+    <skos:definition xml:lang="en">an open way with improved surface for transportation of animals, people and vehicles</skos:definition>
+    <skos:definition xml:lang="ru">полоса земли, служащая для езды и ходьбы</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="en">road</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vei</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">väg</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">дорога</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">път</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.RDA"
+                 skos:notation="R.RDA">
+    <skos:definition xml:lang="en">the remains of a road used by ancient cultures</skos:definition>
+    <skos:definition xml:lang="ru">развалины, на месте которых была дорога во времена античности</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="en">ancient road</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">gammel vei</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">historisk väg</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">античен път</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">старая дорога</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.RDB"
+                 skos:notation="R.RDB">
+    <skos:definition xml:lang="en">a conspicuously curved or bent section of a road</skos:definition>
+    <skos:definition xml:lang="ru">изогнутый участок дороги</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="en">road bend</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">veikurve</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vägkrök</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">завой на път</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">поворот дороги</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.RDCUT"
+                 skos:notation="R.RDCUT">
+    <skos:definition xml:lang="en">an excavation cut through a hill or ridge for a road</skos:definition>
+    <skos:definition xml:lang="ru">вырытый в горном хребте туннель, через который будет проведена дорога</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="en">road cut</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">road cut</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">veiskjæring</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">выемка грунта под дорогу</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">прекъсване на път</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.RDJCT"
+                 skos:notation="R.RDJCT">
+    <skos:definition xml:lang="en">a place where two or more roads join</skos:definition>
+    <skos:definition xml:lang="ru">место пересечения двух или более дорог</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="en">road junction</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">veikryss</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vägknytpunkt</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">кръстопът</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">перекресток</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.RJCT"
+                 skos:notation="R.RJCT">
+    <skos:definition xml:lang="en">a place where two or more railroad tracks join</skos:definition>
+    <skos:definition xml:lang="ru">пункт на пересечении нескольких ж.-д. линий, представляющий собой сложный комплекс разнообразных технических сооружений и устройств</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="no">jernbanekryss</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">järnvägsknytpunkt</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">railroad junction</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">железнодорожный узел</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">жп кръстопът</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.RR"
+                 skos:notation="R.RR">
+    <skos:definition xml:lang="en">a permanent twin steel-rail track on which freight and passenger cars move long distances</skos:definition>
+    <skos:definition xml:lang="ru">рельсовый путь, предназначенный для движения поездов</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="no">jernbane</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">järnväg</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">railroad</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">железная дорога</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">жп линия</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.RRQ"
+                 skos:notation="R.RRQ">
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="en">abandoned railroad</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">nedlagt jernbane</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergiven järnväg</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заброшенная железная дорога</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставена жп линия</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.RTE"
+                 skos:notation="R.RTE">
+    <skos:definition xml:lang="en">the route taken by caravans</skos:definition>
+    <skos:definition xml:lang="ru">маршрут следования караванов</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="en">caravan route</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">karavanerute</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">karavanväg</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Керванен път</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">караванный путь</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.RYD"
+                 skos:notation="R.RYD">
+    <skos:definition xml:lang="en">a system of tracks used for the making up of trains, and switching and storing freight cars</skos:definition>
+    <skos:definition xml:lang="ru">техническая железнодорожная станция для расформирования и формирования различных категорий поездов, выполнение техническое обслуживание и коммерческий осмотр составов поездов и устранение выявленных неисправностей вагонов, смена локомотивов и локомотивных бригад</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="no">jernbaneområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">railroad yard</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">railroad yard</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">жп парк</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">сортировочная станция</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.ST"
+                 skos:notation="R.ST">
+    <skos:definition xml:lang="en">a paved urban thoroughfare</skos:definition>
+    <skos:definition xml:lang="ru">пространство между двумя рядами домов в населенных пунктах для проезда и прохода</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="no">gate</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">street</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">väg</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">улица</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">улица</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.STKR"
+                 skos:notation="R.STKR">
+    <skos:definition xml:lang="en">a route taken by livestock herds</skos:definition>
+    <skos:definition xml:lang="ru">маршрут перегона крупного рогатого домашнего скота</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="sv">boskapsled</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">rute for krøtterdrift</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">stock route</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">път на стада</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">скотопрогон</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.TNL"
+                 skos:notation="R.TNL">
+    <skos:definition xml:lang="en">a subterranean passageway for transportation</skos:definition>
+    <skos:definition xml:lang="ru">подземное сооружение, служащее для транспортных целей</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="en">tunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">тунел</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">туннель</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.TNLN"
+                 skos:notation="R.TNLN">
+    <skos:definition xml:lang="en">a cave that is open at both ends</skos:definition>
+    <skos:definition xml:lang="ru">пещера, открытая с двух концов</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="en">natural tunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">naturlig tunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">naturlig tunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">естествен тунел</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">природный туннель</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.TNLRD"
+                 skos:notation="R.TNLRD">
+    <skos:definition xml:lang="en">a tunnel through which a road passes</skos:definition>
+    <skos:definition xml:lang="ru">тоннель, через который проходит дорога</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="en">road tunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">veitunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vägtunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">автодорожный туннель</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пътен тунел</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.TNLRR"
+                 skos:notation="R.TNLRR">
+    <skos:definition xml:lang="en">a tunnel through which a railroad passes</skos:definition>
+    <skos:definition xml:lang="ru">тоннель, по которому проходит ж/д дорога</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="no">jernbanetunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">järnvägstunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">railroad tunnel</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">железнодорожный туннель</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">жп тунел</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.TNLS"
+                 skos:notation="R.TNLS">
+    <skos:definition xml:lang="en">subterranean passageways for transportation</skos:definition>
+    <skos:definition xml:lang="ru">подземные  сооружение, служащие для транспортных целей</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="no">tunneler</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">tunnels</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tunnlar</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">тунели</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">туннели</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#R.TRL"
+                 skos:notation="R.TRL">
+    <skos:definition xml:lang="en">a path, track, or route used by pedestrians, animals, or off-road vehicles</skos:definition>
+    <skos:definition xml:lang="ru">узкая пешеходная дорожка, протоптанная людьми или животными в лесу, в поле, по снегу и т. п.</skos:definition>
+    <skos:inScheme rdf:resource="#R"/>
+    <skos:prefLabel xml:lang="sv">spår, stig</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sti</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">trail</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пътека</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">тропинка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Class rdf:about="#S">
+    <rdfs:comment xml:lang="en">spot, building, farm, ...</rdfs:comment>
+  </gn:Class>
+
+  <gn:Code rdf:about="#S.ADMF"
+                 skos:notation="S.ADMF">
+    <skos:definition xml:lang="en">a government building</skos:definition>
+    <skos:definition xml:lang="ru">Исполнительные и распорядительные органы управления, власти в государстве.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">administrasjonsanlegg</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">administrativ inrättning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">administrative facility</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">административна сграда</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">администрация</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.AGRF"
+                 skos:notation="S.AGRF">
+    <skos:definition xml:lang="en">a building and/or tract of land used for improving agriculture</skos:definition>
+    <skos:definition xml:lang="ru">здание или участок земли, используемый для повышения качества сельскохозяйственной продукции</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">agricultural facility</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">jordbruksanlegg</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">jordbruksinrättning</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">агробаза</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">селскостопанска сграда</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.AIRB"
+                 skos:notation="S.AIRB">
+    <skos:definition xml:lang="en">an area used to store supplies, provide barracks for air force personnel, hangars and runways for aircraft, and from which operations are initiated</skos:definition>
+    <skos:definition xml:lang="ru">земельный (водный) участок, предназначенный для базирования самолётов стратегической, тактической и транспортной авиации, вертолётов, частей обеспечения, ремонта, запасов материальных и технических средств обеспечения боевых действий</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">airbase</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">flybase</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">flygbas</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">авиабаза</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">авиобаза</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.AIRF"
+                 skos:notation="S.AIRF">
+    <skos:definition xml:lang="en">a place on land where aircraft land and take off; no facilities provided for the commercial handling of passengers and cargo</skos:definition>
+    <skos:definition xml:lang="ru">комплекс сооружений, оборудования и земельный участок с воздушным пространством, предназначенный для взлёта, посадки, размещения и обслуживания самолётов</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">airfield</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">flygfält</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">flyplass</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">аэродром</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">самолетна писта</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.AIRH"
+                 skos:notation="S.AIRH">
+    <skos:definition xml:lang="en">a place where helicopters land and take off</skos:definition>
+    <skos:definition xml:lang="ru">земельный участок, площадка на здании, судне и т.п., оборудованные для взлёта, посадки и обслуживания вертолётов</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">heliport</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">heliport</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">landningsplats för helikopter</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">вертолетная площадка</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">летище за хеикоптери</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.AIRP"
+                 skos:notation="S.AIRP">
+    <skos:definition xml:lang="en">a place where aircraft regularly land and take off, with runways, navigational aids, and major facilities for the commercial handling of passengers and cargo</skos:definition>
+    <skos:definition xml:lang="ru">комплекс сооружений (с аэродромом и аэровокзалом) для осуществления регулярных полётов транспортной авиации и обслуживания пассажиров</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">airport</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">flygplats</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">lufthavn</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">аэропорт</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">летище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.AIRQ"
+                 skos:notation="S.AIRQ">
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">abandoned airfield</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">forlatt lufthavn</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergivet flygfält</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заброшенный аэродром</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставено летище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.AMTH"
+                 skos:notation="S.AMTH">
+    <skos:definition xml:lang="en">an oval or circular structure with rising tiers of seats about a stage or open space</skos:definition>
+    <skos:definition xml:lang="ru">декоративное сооружение в форме эллипса со ступенчато расположенными рядами сидений, предназначенное для зрелищных мероприятий</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">amfiteater</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">amfiteater</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">amphitheater</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">амфитеатр</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">амфитеатър</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ANS"
+                 skos:notation="S.ANS">
+    <skos:definition xml:lang="en">a place where archeological remains, old structures, or cultural artifacts are located</skos:definition>
+    <skos:definition xml:lang="ru">остатки древнего укрепленного поселения или города</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">ancient site</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">forntida lämning</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">historisk sted</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">антични останки</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">городище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.AQC"
+                 skos:notation="S.AQC">
+    <skos:definition xml:lang="en">facility or area for the cultivation of aquatic animals and plants, especially fish, shellfish, and seaweed, in natural or controlled marine or freshwater environments; underwater agriculture</skos:definition>
+    <skos:historyNote xml:lang="en">Added in v3.0</skos:historyNote>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">aquaculture facility</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ARCH"
+                 skos:notation="S.ARCH">
+    <skos:definition xml:lang="en">a natural or man-made structure in the form of an arch</skos:definition>
+    <skos:definition xml:lang="ru">декоративное сооружение в виде больших ворот со сводом</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">arch</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">bue</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">båge, valv</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">арка</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">арка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ASTR"
+                 skos:notation="S.ASTR">
+    <skos:definition xml:lang="en">a point on the earth whose position has been determined by observations of celestial bodies</skos:definition>
+    <skos:definition xml:lang="ru">научное учреждение, ведущее астрономические и геофизические наблюдения и исследования; здание, специально оборудованное для таких наблюдений</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">astronomical station</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">astronomisk stasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">astronomisk station</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">астрономическа станция</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">обсерватория</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ASYL"
+                 skos:notation="S.ASYL">
+    <skos:definition xml:lang="en">a facility where the insane are cared for and protected</skos:definition>
+    <skos:definition xml:lang="ru">место, где можно укрыться, скрыться от чего-н.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">asyl</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">asylum</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">mentalsjukhus</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">лудница</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">убежище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ATHF"
+                 skos:notation="S.ATHF">
+    <skos:definition xml:lang="en">a tract of land used for playing team sports, and athletic track and field events</skos:definition>
+    <skos:definition xml:lang="ru">комплексное спортивное сооружение со специально оборудованными площадками для состязаний, тренировок, вспомогательными помещениями и трибунами для зрителей</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">athletic field</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">idrettsbane</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">idrottsfält</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">спортно игрище</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">стадион</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ATM"
+                 skos:notation="S.ATM">
+    <skos:definition xml:lang="en">An unattended electronic machine in a public place, connected to a data system and related equipment and activated by a bank customer to obtain cash withdrawals and other banking services.</skos:definition>
+    <skos:definition xml:lang="ru">автоматическое устройство, предназначенное для получения наличных денег по кредитной карточке.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="bg">automatic teller machine</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">automatic teller machine</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">automatic teller machine</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">bankomat</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">банкомат</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BANK"
+                 skos:notation="S.BANK">
+    <skos:definition xml:lang="en">A business establishment in which money is kept for saving or commercial purposes or is invested, supplied for loans, or exchanged.</skos:definition>
+    <skos:definition xml:lang="ru">особые экономические институты, осуществляющие: аккумуляцию денежных средств и накоплений, предоставление кредита, проведение денежных расчётов, выпуск в обращение определённых видов денег</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">bank</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BCN"
+                 skos:notation="S.BCN">
+    <skos:definition xml:lang="en">a fixed artificial navigation mark</skos:definition>
+    <skos:definition xml:lang="ru">устройство, оборудованное звуковой, световой или радиотехнической сигнализацией для навигационного ориентирования судов, самолетов и т.п.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">beacon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">båk, fyrtorn</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">signalstasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">маяк</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">фар</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BDG"
+                 skos:notation="S.BDG">
+    <skos:definition xml:lang="en">a structure erected across an obstacle such as a stream, road, etc., in order to carry roads, railroads, and pedestrians across</skos:definition>
+    <skos:definition xml:lang="ru">сооружение для перехода, переезда через реку, овраг, железнодорожный путь и т.п.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">bridge</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">bro</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">bro</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">мост</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">мост</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BDGQ"
+                 skos:notation="S.BDGQ">
+    <skos:definition xml:lang="en">a destroyed or decayed bridge which is no longer functional</skos:definition>
+    <skos:definition xml:lang="ru">мост, который больше не функционирует</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">raserad bro</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">ruined bridge</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">ødelagt bro</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">останки от мост</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">разрушенный мост</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BLDG"
+                 skos:notation="S.BLDG">
+    <skos:definition xml:lang="en">a structure built for permanent use, as a house, factory, etc.</skos:definition>
+    <skos:definition xml:lang="ru">архитектурное сооружение, постройка (обычно больших размеров), например, дом, завод и т.п.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">building(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">byggnad</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">bygning</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">здание</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">сграда(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BLDO"
+                 skos:notation="S.BLDO">
+    <skos:definition xml:lang="en">commercial building where business and/or services are conducted</skos:definition>
+    <skos:historyNote xml:lang="en">Added in v3.0</skos:historyNote>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">office building</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BP"
+                 skos:notation="S.BP">
+    <skos:definition xml:lang="en">a fixture marking a point along a boundary</skos:definition>
+    <skos:definition xml:lang="ru">ограничительный знак, используемый для обозначения границ</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">boundary marker</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">grensemarkør</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">gränsmärke</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">граничен пазар</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">межевой знак</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BRKS"
+                 skos:notation="S.BRKS">
+    <skos:definition xml:lang="en">a building for lodging military personnel</skos:definition>
+    <skos:definition xml:lang="ru">шалаши, временные, легкие строения для размещения войск или рабочих</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">barracks</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">brakker</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kaserner</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бараки</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">бараки</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BRKW"
+                 skos:notation="S.BRKW">
+    <skos:definition xml:lang="en">a structure erected to break the force of waves at the entrance to a harbor or port</skos:definition>
+    <skos:definition xml:lang="ru">гидротехническое сооружение для защиты места стоянки судов или берега от разрушительного действия волн</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">breakwater</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">bølgebryter</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vågbrytare</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">волнорез</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">вълнолом</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BSTN"
+                 skos:notation="S.BSTN">
+    <skos:definition xml:lang="en">a facility for baling agricultural products</skos:definition>
+    <skos:definition xml:lang="ru">место, где прессуют сено в тюки</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">baling station</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">baling station</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">ballestasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">прессовальная станция</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">товарна станция</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BTYD"
+                 skos:notation="S.BTYD">
+    <skos:definition xml:lang="en">a waterside facility for servicing, repairing, and building small vessels</skos:definition>
+    <skos:definition xml:lang="ru">расположенное на берегу моря, реки и т.п.  сооружение, которое занимается обслуживанием, ремонтом и изготовлением лодок</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">boatyard</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">skeppsvarv</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">verft</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">лодкостоянка</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лодочная мастерская</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BUR"
+                 skos:notation="S.BUR">
+    <skos:definition xml:lang="en">a cave used for human burials</skos:definition>
+    <skos:definition xml:lang="ru">яма для погребения умершего</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">begravningsgrotta(or)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">burial cave(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">gravhule</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">могила</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пгребална пещера(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BUSTN"
+                 skos:notation="S.BUSTN">
+    <skos:definition xml:lang="en">a facility comprising ticket office, platforms, etc. for loading and unloading passengers</skos:definition>
+    <skos:definition xml:lang="ru">транспортное предприятие для обслуживания пассажиров междугородных и пригородных автобусных сообщений</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">bus station</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">автостанция</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.BUSTP"
+                 skos:notation="S.BUSTP">
+    <skos:definition xml:lang="en">a place lacking station facilities</skos:definition>
+    <skos:definition xml:lang="ru">пункт, место, установленные для посадки и высадки пассажиров</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">Busshållplats</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">bus stop</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">автобусная остановка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CARN"
+                 skos:notation="S.CARN">
+    <skos:definition xml:lang="en">a heap of stones erected as a landmark or for other purposes</skos:definition>
+    <skos:definition xml:lang="ru">груда камней, служащая условным знаком, надгробным памятником и т.п.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">cairn</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">stenkummel</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">varde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">грамада</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пирамида из камней</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CAVE"
+                 skos:notation="S.CAVE">
+    <skos:definition xml:lang="en">an underground passageway or chamber, or cavity on the side of a cliff</skos:definition>
+    <skos:definition xml:lang="ru">углубление, полое пространство, образовавшееся в земной коре, горных массивах естественным путём или созданные человеком, с выходом наружу</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">cave(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">grotta(or)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">grotte</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пещера(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пещера</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CCL"
+                 skos:notation="S.CCL">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">Centres for Continuous Learning</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">Centre Continuous Learning</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CH"
+                 skos:notation="S.CH">
+    <skos:definition xml:lang="en">a building for public Christian worship</skos:definition>
+    <skos:definition xml:lang="ru">здание, в котором происходит христианское богослужение</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">church</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kirke</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kyrka</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">церковь</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">църква</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CMP"
+                 skos:notation="S.CMP">
+    <skos:definition xml:lang="en">a site occupied by tents, huts, or other shelters for temporary use</skos:definition>
+    <skos:definition xml:lang="ru">временное поселение, стоянка</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">camp(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">leir</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">läger</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">лагер(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лагерь</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CMPL"
+                 skos:notation="S.CMPL">
+    <skos:definition xml:lang="en">a camp used by loggers</skos:definition>
+    <skos:definition xml:lang="ru">временное поселение лесозаготовителей</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">logging camp</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">logging camp</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tømmerkoie</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">лагер на дървосекачи</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лесной поселок</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CMPLA"
+                 skos:notation="S.CMPLA">
+    <skos:definition xml:lang="en">a camp used by migrant or temporary laborers</skos:definition>
+    <skos:definition xml:lang="ru">лагерь, в котором живут трудовые мигранты, приезжающие на заработки</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">arbeidsleir</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">arbetsläger</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">labor camp</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лагерь сезонных рабочих</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">трудов лагер</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CMPMN"
+                 skos:notation="S.CMPMN">
+    <skos:definition xml:lang="en">a camp used by miners</skos:definition>
+    <skos:definition xml:lang="ru">временное поселение горняков</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">gruveleir</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">gruvläger</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">mining camp</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">миньорски лагер</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">рудничный поселок</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CMPO"
+                 skos:notation="S.CMPO">
+    <skos:definition xml:lang="en">a camp used by oilfield workers</skos:definition>
+    <skos:definition xml:lang="ru">поселок, в котором живут работники нефтяной промышленности</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">oil camp</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">oljeleir</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">oljeläger</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">лагер на нефторъботници</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">поселок нефтяников</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CMPQ"
+                 skos:notation="S.CMPQ">
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">abandoned camp</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">forlatt leir</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergivet läger</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставен лагер</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">покинутый лагерь/поселок</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CMPRF"
+                 skos:notation="S.CMPRF">
+    <skos:definition xml:lang="en">a camp used by refugees</skos:definition>
+    <skos:definition xml:lang="ru">лагерь, в котором живут беженцы (люди, покинувшие место своего жительства, спасаясь от бедствия (землетрясения, войны, голода и т.п.)</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">flyktingläger</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">flyktningleir</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">refugee camp</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бежански лагер</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лагерь беженцев</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CMTY"
+                 skos:notation="S.CMTY">
+    <skos:definition xml:lang="en">a burial place or ground</skos:definition>
+    <skos:definition xml:lang="ru">место, предназначенное для погребения умерших</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">cemetery</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">gravlund</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kyrkogård</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">гробище</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">кладбище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.COMC"
+                 skos:notation="S.COMC">
+    <skos:definition xml:lang="en">a facility, including buildings, antennae, towers and electronic equipment for receiving and transmitting information</skos:definition>
+    <skos:definition xml:lang="ru">совокупность технических средств оператора связи, обеспечивающих оказание услуг связи и присоединение к сети общего пользования</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">communication center</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">комуникационен център</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">узел связи</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CRRL"
+                 skos:notation="S.CRRL">
+    <skos:definition xml:lang="en">a pen or enclosure for confining or capturing animals</skos:definition>
+    <skos:definition xml:lang="ru">загон для скота</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">corral(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fålla, inhägnad</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">innhegning</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">заграждение(я) за добитък</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">корраль</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CSNO"
+                 skos:notation="S.CSNO">
+    <skos:definition xml:lang="en">a building used for entertainment, especially gambling</skos:definition>
+    <skos:definition xml:lang="ru">игорный дом, в котором осуществляется проведение азартных игр</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">casino</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kasino</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kasino</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">казино</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">казино</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CSTL"
+                 skos:notation="S.CSTL">
+    <skos:definition xml:lang="en">a large fortified building or set of buildings</skos:definition>
+    <skos:definition xml:lang="ru">здание (или комплекс зданий), сочетающие в себе жилые и оборонительно функции</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">castle</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">slott</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">slott</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">замок</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">замък</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CSTM"
+                 skos:notation="S.CSTM">
+    <skos:definition xml:lang="en">a building in a port where customs and duties are paid, and where vessels are entered and cleared</skos:definition>
+    <skos:definition xml:lang="ru">помещение, где размещается учреждение, ведающее контролем провоза через границу грузов, багажа, почты и собирающее пошлину за такой провоз</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">customs house</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tollbod</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tullhus</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">митница</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">таможня</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CTHSE"
+                 skos:notation="S.CTHSE">
+    <skos:definition xml:lang="en">a building in which courts of law are held</skos:definition>
+    <skos:definition xml:lang="ru">здание, в котором проходят заседания суда</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">courthouse</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">domstolsbyggnad</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">rettsbygning</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">здание суда</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">съдебна сграда</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CTRA"
+                 skos:notation="S.CTRA">
+    <skos:definition xml:lang="en">a facility where atomic research is carried out</skos:definition>
+    <skos:definition xml:lang="ru">научный центр, в котором проводятся атомные исследования</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">atomcentrum</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">atomic center</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">atomsenter</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">атомен център</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">центр атомных исследований</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CTRCM"
+                 skos:notation="S.CTRCM">
+    <skos:definition xml:lang="en">a facility for community recreation and other activities</skos:definition>
+    <skos:definition xml:lang="ru">помещение для проведения культурных и общественных мероприятий</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">community center</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kommunesenter</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kulturcentrum</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">дом культуры</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">обществен център</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CTRF"
+                 skos:notation="S.CTRF">
+    <skos:definition xml:lang="en">a place where more than one facility is situated</skos:definition>
+    <skos:definition xml:lang="ru">центр, предоставляющий не одну, а сразу несколько услуг одновременно</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">facility center</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tjenestesenter</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tjänstecentrum</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">паркинг</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">центр обслуживания</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CTRM"
+                 skos:notation="S.CTRM">
+    <skos:definition xml:lang="en">a complex of health care buildings including two or more of the following: hospital, medical school, clinic, pharmacy, doctor's offices, etc.</skos:definition>
+    <skos:definition xml:lang="ru">комплекс лечебных учреждений; включает в себя: больницу, поликлинику, аптеку, медицинский институт</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">legesenter</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">medical center</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">medicinskt center</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">медицински център</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">медицинский центр</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CTRR"
+                 skos:notation="S.CTRR">
+    <skos:definition xml:lang="en">a facility where more than one religious activity is carried out, e.g., retreat, school, monastery, worship</skos:definition>
+    <skos:definition xml:lang="ru">комплекс нескольких религиозных учреждений (монашеская обитель, школа для священнослужителей, церковь)</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">religious center</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">religiöst center</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">religiøst senter</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">религиозен център</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">религиозный центр</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CTRS"
+                 skos:notation="S.CTRS">
+    <skos:definition xml:lang="en">a facility for launching, tracking, or controlling satellites and space vehicles</skos:definition>
+    <skos:definition xml:lang="ru">центр, который осуществляет запуск и наблюдение за полетом искусственных спутников земли и космических кораблей</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">romsenter</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">rymdcenter</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">space center</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">космически център</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">космический центр</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.CVNT"
+                 skos:notation="S.CVNT">
+    <skos:definition xml:lang="en">a building where a community of nuns lives in seclusion</skos:definition>
+    <skos:definition xml:lang="ru">обитель, общежитие монахинь</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">convent</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kloster</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kloster</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">женски манастир</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">женский монастырь</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.DAM"
+                 skos:notation="S.DAM">
+    <skos:definition xml:lang="en">a barrier constructed across a stream to impound water</skos:definition>
+    <skos:definition xml:lang="ru">гидротехническое сооружение, искусственная насыпь для предохранения местности от затопления, для ограждения водохранилищ и т.п.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">dam</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">damm</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">demning</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">дамба</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">язовирна стена</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.DAMQ"
+                 skos:notation="S.DAMQ">
+    <skos:definition xml:lang="en">a destroyed or decayed dam which is no longer functional</skos:definition>
+    <skos:definition xml:lang="ru">дамба, которая больше не функционирует</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">förstörd damm</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">ruined dam</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">ødelagt demning</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">разрушена язовирна стена</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">разрушенная дамба</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.DAMSB"
+                 skos:notation="S.DAMSB">
+    <skos:definition xml:lang="en">a dam put down to bedrock in a sand river</skos:definition>
+    <skos:definition xml:lang="ru">дамба, возведенная на  песчаном дне реки</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">demning gravd ned til grunnfjellet</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">sub-surface dam</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">underjordisk damm</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">грунтовая дамба</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">нископовърхностна стена</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.DARY"
+                 skos:notation="S.DARY">
+    <skos:definition xml:lang="en">a facility for the processing, sale and distribution of milk or milk products</skos:definition>
+    <skos:definition xml:lang="ru">предприятие по производству молочных продуктов</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">dairy</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">meieri</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">mejeri</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">мандра</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">молочный комбинат</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.DCKD"
+                 skos:notation="S.DCKD">
+    <skos:definition xml:lang="en">a dock providing support for a vessel, and means for removing the water so that the bottom of the vessel can be exposed</skos:definition>
+    <skos:definition xml:lang="ru">портовое сооружение для ремонта и постройки судов; сухой док сооружается на защищённой от волнения акватории и представляет собой отделяемую от неё с торца затвором водонепроницаемую камеру</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">demning gravd ned til grunnfjellet</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">dry dock</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">torrdocka</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">сух док</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">сухой док</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.DCKY"
+                 skos:notation="S.DCKY">
+    <skos:definition xml:lang="en">a facility for servicing, building, or repairing ships</skos:definition>
+    <skos:definition xml:lang="ru">предприятие для постройки и ремонта судов</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">dockyard</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">skeppsvarv</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">skipsverft</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">верфь</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">корабостроителница</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.DIKE"
+                 skos:notation="S.DIKE">
+    <skos:definition xml:lang="en">an earth or stone embankment usually constructed for flood or stream control</skos:definition>
+    <skos:definition xml:lang="ru">неглубокий и неширокий ров, обычно служащий для спуска или отвода воды</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">damm, fördämning, bank</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">dike</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">dike</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">дига</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">канава</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.DIP"
+                 skos:notation="S.DIP">
+    <skos:definition xml:lang="en">office, residence, or facility of a foreign government, which may include an embassy, consulate, chancery, office of charge d?affaires, or other diplomatic, economic, military, or cultural mission</skos:definition>
+    <skos:definition xml:lang="ru">office, residence, or facility of a foreign government, which may include an embassy, consulate, chancery, office of charge d?affaires, or other diplomatic, economic, military, or cultural mission</skos:definition>
+    <skos:historyNote xml:lang="en">Added in v3.0</skos:historyNote>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">diplomatic facility</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.DPOF"
+                 skos:notation="S.DPOF">
+    <skos:definition xml:lang="en">an area where fuel is stored</skos:definition>
+    <skos:definition xml:lang="ru">специальное помещение, предназначенное для хранения горючего</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">brennstofflager</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">bränsledepå</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">fuel depot</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">горивно депо</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">склад горючего</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.EST"
+                 skos:notation="S.EST">
+    <skos:definition xml:lang="en">a large commercialized agricultural landholding with associated buildings and other facilities</skos:definition>
+    <skos:definition xml:lang="ru">крупное земельное владение, обычно с усадьбой</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">egendom(ar)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">estate(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">gods</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">имение(я)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">поместье</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ESTB"
+                 skos:notation="S.ESTB">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">an estate that specializes in the growing of bananas</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">banana plantation</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ESTC"
+                 skos:notation="S.ESTC">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">an estate specializing in the cultivation of cotton</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">cotton plantation</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ESTO"
+                 skos:notation="S.ESTO">
+    <skos:definition xml:lang="en">an estate specializing in the cultivation of oil palm trees</skos:definition>
+    <skos:definition xml:lang="ru">большая земельная площадь, на которой выращивают масличные пальмы</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">oil palm plantation</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">oljepalmeplantasje</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">oljepalmsplantage</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">плантация за маслена палма</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">плантация масличных пальм</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ESTR"
+                 skos:notation="S.ESTR">
+    <skos:definition xml:lang="en">an estate which specializes in growing and tapping rubber trees</skos:definition>
+    <skos:definition xml:lang="ru">большая земельная площадь, на которой выращивают каучуковые деревья</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">gummiplantage</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">gummiplantasje</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">rubber plantation</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">каучукова плантация</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">каучуковая плантация</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ESTSG"
+                 skos:notation="S.ESTSG">
+    <skos:definition xml:lang="en">an estate that specializes in growing sugar cane</skos:definition>
+    <skos:definition xml:lang="ru">большая земельная площадь, на которой выращивают сахарный тростник</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">sockerplantage</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">sugar plantation</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sukkerplantasje</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">захарна плантация</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">сахарная плантация</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ESTSL"
+                 skos:notation="S.ESTSL">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">an estate that specializes in growing sisal</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">sisal plantation</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ESTT"
+                 skos:notation="S.ESTT">
+    <skos:definition xml:lang="en">an estate which specializes in growing tea bushes</skos:definition>
+    <skos:definition xml:lang="ru">большая земельная площадь, на которой выращивают чай</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">tea plantation</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">teplantage</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">teplantasje</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">чайна плантация</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">чайная плантация</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ESTX"
+                 skos:notation="S.ESTX">
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">del av egendom</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">del av gods</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of estate</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок плантации</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от имение</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.FCL"
+                 skos:notation="S.FCL">
+    <skos:definition xml:lang="en">a building or buildings housing a center, institute, foundation, hospital, prison, mission, courthouse, etc.</skos:definition>
+    <skos:definition xml:lang="ru">организация, образуемая для осуществления определённого рода деятельности (Государственное у. Общественные учреждения. Научные учреждения. Торговое, лечебно-профилактическое, административное у.)</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">anlegg</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">facility</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">inrättning</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">съоръжение</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">учреждение</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.FNDY"
+                 skos:notation="S.FNDY">
+    <skos:definition xml:lang="en">a building or works where metal casting is carried out</skos:definition>
+    <skos:definition xml:lang="ru">мастерская, в которой происходит обработка металла путем плавления и заливки в литейные формы</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">foundry</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">gjuteri</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">støperi</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">леярна</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">литейный цех</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.FRM"
+                 skos:notation="S.FRM">
+    <skos:definition xml:lang="en">a tract of land with associated buildings devoted to agriculture</skos:definition>
+    <skos:definition xml:lang="ru">частное сельскохозяйственное предприятие, принадлежащее фермеру и ведущееся им на собственной или арендованной земле</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">farm</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">farm</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">gård</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ферма</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ферма</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.FRMQ"
+                 skos:notation="S.FRMQ">
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">abandoned farm</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">forlatt gård</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergiven farm</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставена ферма</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">покинутая (заброшенная) ферма</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.FRMS"
+                 skos:notation="S.FRMS">
+    <skos:definition xml:lang="en">tracts of land with associated buildings devoted to agriculture</skos:definition>
+    <skos:definition xml:lang="ru">частные сельскохозяйственные предприятия, принадлежащие фермеру и ведущиеся им на собственной или арендованной земле</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">farmer</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">farms</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">gårder</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ферми</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">фермы</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.FRMT"
+                 skos:notation="S.FRMT">
+    <skos:definition xml:lang="en">the buildings and adjacent service areas of a farm</skos:definition>
+    <skos:definition xml:lang="ru">жилой дом с примыкающими надворными постройками и угодьями (сад, огород и т.п.), представляющий собой отдельное хозяйство (преимущественно в сельской местности)</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">bondgård</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">farmstead</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">gårdsbruk</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">усадьба</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">чифлик</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.FT"
+                 skos:notation="S.FT">
+    <skos:definition xml:lang="en">a defensive structure or earthworks</skos:definition>
+    <skos:definition xml:lang="ru">защитное сооружение или земляное укрепление</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">fort</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fort</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fort</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">крепость</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">форт</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.FY"
+                 skos:notation="S.FY">
+    <skos:definition xml:lang="en">a boat or other floating conveyance and terminal facilities regularly used to transport people and vehicles across a waterbody</skos:definition>
+    <skos:definition xml:lang="ru">плоскодонное судно, плот для переправы людей, транспорта, грузов через реку, озеро или пролив</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">ferge</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">ferry</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">färja</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">паром</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ферибот</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.GATE"
+                 skos:notation="S.GATE">
+    <skos:definition xml:lang="en">a controlled access entrance or exit</skos:definition>
+    <skos:definition xml:lang="ru">конструкция для регулирования входа и выхода</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">gate</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">grind,port</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">grind</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бариера</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ворота</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.GDN"
+                 skos:notation="S.GDN">
+    <skos:definition xml:lang="en">an enclosure for displaying selected plant or animal life</skos:definition>
+    <skos:definition xml:lang="ru">участок земли для выращивания садовых растений</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">garden(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">hage</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">trädgård(ar)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">градина(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">сад</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.GHAT"
+                 skos:notation="S.GHAT">
+    <skos:definition xml:lang="en">a set of steps leading to a river, which are of religious significance, and at their base is usually a platform for bathing</skos:definition>
+    <skos:definition xml:lang="ru">a set of steps leading to a river, which are of religious significance, and at their base is usually a platform for bathing</skos:definition>
+    <skos:historyNote xml:lang="en">Added in v3.0</skos:historyNote>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">ghat</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.GHSE"
+                 skos:notation="S.GHSE">
+    <skos:definition xml:lang="en">a house used to provide lodging for paying guests</skos:definition>
+    <skos:definition xml:lang="ru">дом с меблированными комнатами («номерами») для временного проживания путешественников</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">gjestehus</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">guest house</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">gästhus</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">гостиница</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">къща за гости</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.GOSP"
+                 skos:notation="S.GOSP">
+    <skos:definition xml:lang="en">a facility for separating gas from oil</skos:definition>
+    <skos:definition xml:lang="ru">аппарат для отделения газа от нефти</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">gas och olje separator</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">gas-oil separator plant</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">separasjonsanlegg for gass og olje</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">нефтегазовый сепаратор</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">сепаратор на нефт-гас</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.GOVL"
+                 skos:notation="S.GOVL">
+    <skos:definition xml:lang="en">a facility housing local governmental offices, usually a city, town, or village hall</skos:definition>
+    <skos:historyNote xml:lang="en">Added in v3.0</skos:historyNote>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">local government office</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.GRVE"
+                 skos:notation="S.GRVE">
+    <skos:definition xml:lang="en">a burial site</skos:definition>
+    <skos:definition xml:lang="ru">место захоронения</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">grav</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">grav</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">grave</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">гроб</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">могила</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.HERM"
+                 skos:notation="S.HERM">
+    <skos:definition xml:lang="en">a secluded residence, usually for religious sects</skos:definition>
+    <skos:definition xml:lang="ru">жилище монахов-отшельников</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">eneboerhytte</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">eremitage</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">hermitage</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">отшелническа килия</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">скит</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.HLT"
+                 skos:notation="S.HLT">
+    <skos:definition xml:lang="en">a place where caravans stop for rest</skos:definition>
+    <skos:definition xml:lang="ru">место, где караваны останавливаются, чтобы передохнуть</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">halting place</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">halting place</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">stoppested</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">место привала</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">отбивка за почивка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.HSE"
+                 skos:notation="S.HSE">
+    <skos:definition xml:lang="en">a building used as a human habitation</skos:definition>
+    <skos:definition xml:lang="ru">жилое здание, строение</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">house(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">hus</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">hus</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">дом</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">къща(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.HSEC"
+                 skos:notation="S.HSEC">
+    <skos:definition xml:lang="en">a large house, mansion, or chateau, on a large estate</skos:definition>
+    <skos:definition xml:lang="ru">дом, находящийся за городом, вне города, вблизи от него</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">country house</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">landsted</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">lantgods</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">загородный дом</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">селска къща</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.HSP"
+                 skos:notation="S.HSP">
+    <skos:definition xml:lang="en">a building in which sick or injured, especially those confined to bed, are medically treated</skos:definition>
+    <skos:definition xml:lang="ru">лечебное учреждение, больница</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">hospital</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sjukhus</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sykehus</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">болница</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">госпиталь</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.HSPC"
+                 skos:notation="S.HSPC">
+    <skos:definition xml:lang="en">a medical facility associated with a hospital for outpatients</skos:definition>
+    <skos:definition xml:lang="ru">медицинское учреждение, осуществляющее внебольничное лечебно-профилактическое обслуживание населения</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">clinic</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">klinik</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">klinikk</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">клиника</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">поликлиника</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.HSPD"
+                 skos:notation="S.HSPD">
+    <skos:definition xml:lang="en">a building where medical or dental aid is dispensed</skos:definition>
+    <skos:definition xml:lang="ru">медицинское учреждение, занимающееся лечением и предупреждением болезней путём систематического врачебного наблюдения</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">apotek</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">dispensary</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">klinik</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">диспансер</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">диспансер</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.HSPL"
+                 skos:notation="S.HSPL">
+    <skos:definition xml:lang="en">an asylum or hospital for lepers</skos:definition>
+    <skos:definition xml:lang="ru">приют для прокаженных</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">leprasykehus</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">leprosarium</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">leprosarium</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лепрозорий</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">общежитие за прокажени</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.HSTS"
+                 skos:notation="S.HSTS">
+    <skos:definition xml:lang="en">a place of historical importance</skos:definition>
+    <skos:definition xml:lang="ru">здания, сооружения, памятные места и предметы, связанные с важнейшими историческими событиями, жизнью исторических деятелей и т.п.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">historical site</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">historisk plats</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">historisk sted</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">исторический памятник</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">историческо място</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.HTL"
+                 skos:notation="S.HTL">
+    <skos:definition xml:lang="en">a building providing lodging and/or meals for the public</skos:definition>
+    <skos:definition xml:lang="ru">то же, что и гостиница; дом для временного проживания туристов</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">hotel</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">hotell</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">hotell</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">отель</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">хотел</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.HUT"
+                 skos:notation="S.HUT">
+    <skos:definition xml:lang="en">a small primitive house</skos:definition>
+    <skos:definition xml:lang="ru">небольшой примитивный домик</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">hut</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">hydda</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">hytte</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">хижа</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">хижина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.HUTS"
+                 skos:notation="S.HUTS">
+    <skos:definition xml:lang="en">small primitive houses</skos:definition>
+    <skos:definition xml:lang="ru">небольшие примитивные домики</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">huts</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">hyddor</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">hytter</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">хижи</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">хижины</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.INSM"
+                 skos:notation="S.INSM">
+    <skos:definition xml:lang="en">a facility for use of and control by armed forces</skos:definition>
+    <skos:definition xml:lang="ru">территория (важный в стратегическом или политическом отношении пункт, район) и размещенные на ней войска с запасами оружия, боеприпасов, продовольствия и других материальных средств, необходимых для боевой и повседневной деятельности</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">military installation</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">militär installation</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">militæranlegg</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">военна инсталация</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">военная база</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ITTR"
+                 skos:notation="S.ITTR">
+    <skos:definition xml:lang="en">a facility where research is carried out</skos:definition>
+    <skos:definition xml:lang="ru">учреждение, занимающееся исследованиями</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">forskningsinstitut</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">forskningsinstitutt</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">research institute</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">иследователски институт</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">научно-исследовательский институт</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.JTY"
+                 skos:notation="S.JTY">
+    <skos:definition xml:lang="en">a structure built out into the water at a river mouth or harbor entrance to regulate currents and silting</skos:definition>
+    <skos:definition xml:lang="ru">гидротехническое сооружение, перегораживающее реку (или др. водоток) для подъёма уровня воды перед ним, сосредоточения напора в месте расположения сооружения и создания водохранилища</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">jetty</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">molo</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">pir,brygga</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">вълнолом</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">плотина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.LDNG"
+                 skos:notation="S.LDNG">
+    <skos:definition xml:lang="en">a place where boats receive or discharge passengers and freight, but lacking most port facilities</skos:definition>
+    <skos:definition xml:lang="ru">совокупность сооружений и устройств для стоянки и обслуживания судов, посадки и высадки пассажиров, грузовых операций и т.п.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">kai</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">landing</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">landstigning</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">причал</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">стоварище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.LEPC"
+                 skos:notation="S.LEPC">
+    <skos:definition xml:lang="en">a settled area inhabited by lepers in relative isolation</skos:definition>
+    <skos:definition xml:lang="ru">лечебное учреждение для больных проказой; место проживания и лечения таких больных</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">leper colony</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">leprakoloni</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">spetälskekoloni</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">колония на прокажени</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">приют для прокаженных</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.LIBR"
+                 skos:notation="S.LIBR">
+    <skos:definition xml:lang="en">A place in which information resources such as books are kept for reading, reference, or lending.</skos:definition>
+    <skos:definition xml:lang="ru">учреждение или отдел какого-л. учреждения, собирающие и хранящие книги, периодику, памятники письменности и т.п. для общественного пользования</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">bibliotek</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">library</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">library</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">library</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">библиотека</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.LNDF"
+                 skos:notation="S.LNDF">
+    <skos:definition xml:lang="en">a place for trash and garbage disposal in which the waste is buried between layers of earth to build up low-lying land</skos:definition>
+    <skos:definition xml:lang="ru">место, куда свозят, выбрасывают мусор, нечистоты, негодные вещи</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="bg">landfill</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">landfill</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">landfill</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">landfill</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">свалка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.LOCK"
+                 skos:notation="S.LOCK">
+    <skos:definition xml:lang="en">a basin in a waterway with gates at each end by means of which vessels are passed from one water level to another</skos:definition>
+    <skos:definition xml:lang="ru">гидротехническое сооружение между водоёмами с различными уровнями воды, позволяющее переводить суда из одного водоёма в другой</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">lock(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sluse</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sluss(ar)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">шлюз(ове)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">шлюз</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.LTHSE"
+                 skos:notation="S.LTHSE">
+    <skos:definition xml:lang="en">a distinctive structure exhibiting a major navigation light</skos:definition>
+    <skos:definition xml:lang="ru">сооружение башенного типа, служащее ориентиром для опознавания берегов, определения места судна и предупреждения о навигационной опасности</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">fyr</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fyrtårn</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">lighthouse</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">световой маяк</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">фар</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MALL"
+                 skos:notation="S.MALL">
+    <skos:definition xml:lang="en">A large, often enclosed shopping complex containing various stores, businesses, and restaurants usually accessible by common passageways.</skos:definition>
+    <skos:definition xml:lang="ru">группа разнородных торговых предприятий, сосредоточенных в одном месте, функционирующих и управляемых как единый, целостный объект</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">kjøpesenter</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">köpcentrum</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">mall</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">мол</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">торговый центр</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MAR"
+                 skos:notation="S.MAR">
+    <skos:definition xml:lang="en">a harbor facility for small boats, yachts, etc.</skos:definition>
+    <skos:definition xml:lang="ru">специально оборудованное место, сооружение для причаливания и стоянки лодок, яхт и т.д.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">marina</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">marina</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">småbåthavn</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пристань</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">яхтостроителница</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MFG"
+                 skos:notation="S.MFG">
+    <skos:definition xml:lang="en">one or more buildings where goods are manufactured, processed or fabricated</skos:definition>
+    <skos:definition xml:lang="ru">промышленное или крупное промысловое предприятие, или комплекс предприятий</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">fabrik</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fabrikk</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">factory</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">завод</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">фабрика</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MFGB"
+                 skos:notation="S.MFGB">
+    <skos:definition xml:lang="en">one or more buildings where beer is brewed</skos:definition>
+    <skos:definition xml:lang="ru">предприятие по производству пива</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">brewery</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">bryggeri</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">bryggeri</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пивоварна</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пивоварня</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MFGC"
+                 skos:notation="S.MFGC">
+    <skos:definition xml:lang="en">a building where food items are canned</skos:definition>
+    <skos:definition xml:lang="ru">предприятие по производству консерв</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">cannery</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">hermetikkfabrikk</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">konservfabrik</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">консервна фабрика</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">консервный завод</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MFGCU"
+                 skos:notation="S.MFGCU">
+    <skos:definition xml:lang="en">a facility for processing copper ore</skos:definition>
+    <skos:definition xml:lang="ru">предприятие по переработке медной руды</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">copper works</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kopparbruk</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kopperverk</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">медеплавильный завод</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">медна фабрика</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MFGLM"
+                 skos:notation="S.MFGLM">
+    <skos:definition xml:lang="en">a furnace in which limestone is reduced to lime</skos:definition>
+    <skos:definition xml:lang="ru">печь для обжига извести</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">kalkbrenneri</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kalkugn</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">limekiln</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">варница</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">известеобжигательная печь</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MFGM"
+                 skos:notation="S.MFGM">
+    <skos:definition xml:lang="en">a factory where ammunition is made</skos:definition>
+    <skos:definition xml:lang="ru">предприятие по производству оружия</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">ammunisjonsfabrikk</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">ammunitionsfabrik</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">munitions plant</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">оружейный завод</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">фабрка за амуниции</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MFGPH"
+                 skos:notation="S.MFGPH">
+    <skos:definition xml:lang="en">a facility for producing fertilizer</skos:definition>
+    <skos:definition xml:lang="ru">предприятие по производству удобрений</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">fosfatanlegg</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fosfatfabrik</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">phosphate works</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">фосфатна фабрика</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">фосфатный завод</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MFGQ"
+                 skos:notation="S.MFGQ">
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">abandoned factory</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">nedlagt fabrikk</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergiven fabrik</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставена фабрика</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">покинутый завод</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MFGSG"
+                 skos:notation="S.MFGSG">
+    <skos:definition xml:lang="en">a facility for converting raw sugar into refined sugar</skos:definition>
+    <skos:definition xml:lang="ru">завод по переработки сахарного тростника в рафинад</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">sockerbruk, sockerraffinaderi</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">sugar refinery</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sukkerraffineri</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">захарна рафинерия</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">рафинадный завод</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MKT"
+                 skos:notation="S.MKT">
+    <skos:definition xml:lang="en">a place where goods are bought and sold at regular intervals</skos:definition>
+    <skos:definition xml:lang="ru">место торговли, на котором встречаются продавцы и покупатели</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">marked</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">market</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">marknad</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пазар</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">рынок</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ML"
+                 skos:notation="S.ML">
+    <skos:definition xml:lang="en">a building housing machines for transforming, shaping, finishing, grinding, or extracting products</skos:definition>
+    <skos:definition xml:lang="ru">промышленное предприятие, обрабатывающее сырье машинным способом</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">kvarn</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">mill(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">mølle</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">мелница(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">фабрика</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MLM"
+                 skos:notation="S.MLM">
+    <skos:definition xml:lang="en">a facility for improving the metal content of ore by concentration</skos:definition>
+    <skos:definition xml:lang="ru">предприятие, которое занимается отделением друг от друга входящих в состав руды металлов</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">malmbehandlingsanlegg</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">malmförädling</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">ore treatment plant</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">завод по переработке руды</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">миннообогатително предприятие</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MLO"
+                 skos:notation="S.MLO">
+    <skos:definition xml:lang="en">a mill where oil is extracted from olives</skos:definition>
+    <skos:definition xml:lang="ru">предприятие, которое занимается переработкой оливок и получением из них оливкового масла.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">olive oil mill</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">olivenoljemølle</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">olivoljebruk</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">завод по производству оливкового масла</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">фабрика за зехтин</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MLSG"
+                 skos:notation="S.MLSG">
+    <skos:definition xml:lang="en">a facility where sugar cane is processed into raw sugar</skos:definition>
+    <skos:definition xml:lang="ru">предприятие, которое занимается переработкой сахарного тростника в нерафинированный сахар</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">sockerbruk, sockerraffinaderi</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">sugar mill</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sukkermølle</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">захарна фабрика</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">сахарный завод</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MLSGQ"
+                 skos:notation="S.MLSGQ">
+    <skos:definition xml:lang="en">a sugar mill no longer used as a sugar mill</skos:definition>
+    <skos:definition xml:lang="ru">сахарный завод, прекративший свою работу</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">former sugar mill</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tidigare sockerbruk</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tidligere sukkermølle</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бивша захарна фабрика</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">бывший сахарный завод</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MLSW"
+                 skos:notation="S.MLSW">
+    <skos:definition xml:lang="en">a mill where logs or lumber are sawn to specified shapes and sizes</skos:definition>
+    <skos:definition xml:lang="ru">изготовление пиломатериалов (брусьев и досок) из брёвен</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">sagbruk</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">sawmill</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sågverk</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">дъскорезница</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лесопильный завод</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MLWND"
+                 skos:notation="S.MLWND">
+    <skos:definition xml:lang="en">a mill or water pump powered by wind</skos:definition>
+    <skos:definition xml:lang="ru">аэродинамический механизм, который выполняет механическую работу за счет энергии ветра, улавливаемой крыльями мельницы. Наиболее известным применением ветряных мельниц является их использование для помола муки</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">vindmølle</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">väderkvarn</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">windmill</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ветряная мельница</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">вятърна мелница</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MLWTR"
+                 skos:notation="S.MLWTR">
+    <skos:definition xml:lang="en">a mill powered by running water</skos:definition>
+    <skos:definition xml:lang="ru">гидротехнические сооружение, использующее гидроэнергию, получаемую с водяного колеса, движение которого выполняет полезную работу посредством зубчатой передачи</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">kvernhus</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vattenkvarn</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">water mill</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">водна мелница</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водяная мельница</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MN"
+                 skos:notation="S.MN">
+    <skos:definition xml:lang="en">a site where mineral ores are extracted from the ground by excavating surface pits and subterranean passages</skos:definition>
+    <skos:definition xml:lang="ru">горнопромышленное предприятие, ведущее добычу полезных ископаемых подземным способом; место проведения подземных работ</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">gruva(or)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">gruve</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">mine(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">мина(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">шахта</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNAU"
+                 skos:notation="S.MNAU">
+    <skos:definition xml:lang="en">a mine where gold ore, or alluvial gold is extracted</skos:definition>
+    <skos:definition xml:lang="ru">предприятие, осуществляющее добычу золота или золотой руды</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">gold mine(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">guldgruva(or)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">gullgruve</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">златна мина(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">золотопромышленный рудник</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNC"
+                 skos:notation="S.MNC">
+    <skos:definition xml:lang="en">a mine where coal is extracted</skos:definition>
+    <skos:definition xml:lang="ru">горнопромышленное предприятие, ведущее добычу угля подземным способом</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">coal mine(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kolgruva(or)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kullgruve</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">въглищна мина(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">угольная шахта</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNCR"
+                 skos:notation="S.MNCR">
+    <skos:definition xml:lang="en">a mine where chrome ore is extracted</skos:definition>
+    <skos:definition xml:lang="ru">горнопромышленное предприятие, ведущее добычу хрома подземным способом</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">chrome mine(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kromgruva(or)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kromgruve</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">хромна мина(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">шахта по добыче хрома</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNCU"
+                 skos:notation="S.MNCU">
+    <skos:definition xml:lang="en">a mine where copper ore is extracted</skos:definition>
+    <skos:definition xml:lang="ru">горнопромышленное предприятие, осуществляющее добычу меди</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">copper mine(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">koppargruva(or)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">koppergruve</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">медна мина(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">медный рудник</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNDT"
+                 skos:notation="S.MNDT">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">a place where diatomaceous earth is extracted</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">diatomite mine(s)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNFE"
+                 skos:notation="S.MNFE">
+    <skos:definition xml:lang="en">a mine where iron ore is extracted</skos:definition>
+    <skos:definition xml:lang="ru">горнопромышленное предприятие, осуществляющее добычу железа</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">iron mine(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">jerngruve</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">järngruva(or)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">железный рудник</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">желязна мина(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNMT"
+                 skos:notation="S.MNMT">
+    <skos:definition xml:lang="en">a commemorative structure or statue</skos:definition>
+    <skos:definition xml:lang="ru">архитектурное или скульптурное сооружение в память какого-л. лица, события</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">monument</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">monument</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">monument</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">монумент</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">памятник</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNN"
+                 skos:notation="S.MNN">
+    <skos:definition xml:lang="en">a mine from which salt is extracted</skos:definition>
+    <skos:definition xml:lang="ru">горнопромышленное предприятие, осуществляющее добычу солей</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">salt mine(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">saltgruva(or)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">saltgruve</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">солна мина(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">соляная шахта</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNNI"
+                 skos:notation="S.MNNI">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">a mine where nickel ore is extracted</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">nickel mine(s)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNPB"
+                 skos:notation="S.MNPB">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">a mine where lead ore is extracted</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">lead mine(s)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNPL"
+                 skos:notation="S.MNPL">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">a place where heavy metals are concentrated and running water is used to extract them from unconsolidated sediments</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">placer mine(s)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNQ"
+                 skos:notation="S.MNQ">
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">abandoned mine</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">nedlagt gruve</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergiven gruva</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заброшенная шахта</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставена мина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNQR"
+                 skos:notation="S.MNQR">
+    <skos:definition xml:lang="en">a surface mine where building stone or gravel and sand, etc. are extracted</skos:definition>
+    <skos:definition xml:lang="ru">место открытой разработки неглубоко залегающих полезных ископаемых (угля, песка, глины и т.п.)</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">quarry(-ies)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">steinbrudd</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">stenbrott</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">каменоломна(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">карьер</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MNSN"
+                 skos:notation="S.MNSN">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">a mine where tin ore is extracted</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">tin mine(s)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MOLE"
+                 skos:notation="S.MOLE">
+    <skos:definition xml:lang="en">a massive structure of masonry or large stones serving as a pier or breakwater</skos:definition>
+    <skos:definition xml:lang="ru">гидротехническое сооружение для защиты места стоянки судов или берега от разрушительного действия волн</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">mole</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">molo</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">pir, vågbrytare</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">волнолом</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">дига</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MSQE"
+                 skos:notation="S.MSQE">
+    <skos:definition xml:lang="en">a building for public Islamic worship</skos:definition>
+    <skos:definition xml:lang="ru">у мусульман: молитвенный дом</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">moské</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">moské</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">mosque</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">джамия</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">мечеть</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MSSN"
+                 skos:notation="S.MSSN">
+    <skos:definition xml:lang="en">a place characterized by dwellings, school, church, hospital and other facilities operated by a religious group for the purpose of providing charitable services and to propagate religion</skos:definition>
+    <skos:definition xml:lang="ru">жилые дома, больница, школа, принадлежащие религиозной организации, которая занимается благотворительностью и распространением собственной религии среди инаковерующих</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">beskickning</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">misjonsstasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">mission</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">мисия</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">резиденция миссионеров</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MSSNQ"
+                 skos:notation="S.MSSNQ">
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">abandoned mission</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">nedlagt misjonsstasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergiven beskickning</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заброшенная резиденция миссионеров</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставена мисия</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MSTY"
+                 skos:notation="S.MSTY">
+    <skos:definition xml:lang="en">a building and grounds where a community of monks lives in seclusion</skos:definition>
+    <skos:definition xml:lang="ru">религиозная община монахов, представляющая собой церковно-хозяйственную организацию, владеющую землями и капиталами</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">kloster</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">monastery</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">munkkloster</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">манастир</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">мужской монастырь</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MTRO"
+                 skos:notation="S.MTRO">
+    <skos:definition xml:lang="en">metro station (Underground, Tube, or Métro)</skos:definition>
+    <skos:definition xml:lang="ru">пункт остановки электропоездов в  метрополитене</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="bg">metro station</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">metro station</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">metro station</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tunnelbanestation</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">станция метро</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.MUS"
+                 skos:notation="S.MUS">
+    <skos:definition xml:lang="en">a building where objects of permanent interest in one or more of the arts and sciences are preserved and exhibited</skos:definition>
+    <skos:definition xml:lang="ru">учреждение, собирающее, хранящее и выставляющее на обозрение памятники истории, искусства, культуры, науки, техники и других областей, сфер деятельности общества; помещение такого учреждения</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">museum</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">museum</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">museum</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">музей</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">музей</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.NOV"
+                 skos:notation="S.NOV">
+    <skos:definition xml:lang="en">a religious house or school where novices are trained</skos:definition>
+    <skos:definition xml:lang="ru">религиозный дом, где учатся послушники, готовящиеся стать монахами</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">novisiat</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">novitiat</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">novitiate</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">дом послушничества</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">семинария</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.NSY"
+                 skos:notation="S.NSY">
+    <skos:definition xml:lang="en">a place where plants are propagated for transplanting or grafting</skos:definition>
+    <skos:definition xml:lang="ru">тёплое с покрытием из прозрачного материала помещение для выращивания ранних овощей, цветов, теплолюбивых растений; оранжерея</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">barnehage</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">nursery(-ies)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">plantskola</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">парник(-ци)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">теплица</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.OBPT"
+                 skos:notation="S.OBPT">
+    <skos:definition xml:lang="en">a wildlife or scenic observation point</skos:definition>
+    <skos:definition xml:lang="ru">специально оборудованное место, с которого ведётся наблюдение за действиями противника и своих войск</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">observasjonssted</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">observation point</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">observationspunkt</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">наблюдателна точка</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">наблюдательный пункт</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.OBS"
+                 skos:notation="S.OBS">
+    <skos:definition xml:lang="en">a facility equipped for observation of atmospheric or space phenomena</skos:definition>
+    <skos:definition xml:lang="ru">научное учреждение, ведущее астрономические и геофизические наблюдения и исследования; здание, специально оборудованное для таких наблюдений</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">observatorium</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">observatorium</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">observatory</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">обсерватория</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">обсерватория</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.OBSR"
+                 skos:notation="S.OBSR">
+    <skos:definition xml:lang="en">a facility equipped with an array of antennae for receiving radio waves from space</skos:definition>
+    <skos:definition xml:lang="ru">учреждение, оборудованное антеннами для приема радиоволн из Космоса</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">radio observatory</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">radioobservatorium</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">radioobservatorium</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">радио обсерватория</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">радиообсерватория</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.OILJ"
+                 skos:notation="S.OILJ">
+    <skos:definition xml:lang="en">a section of an oil pipeline where two or more pipes join together</skos:definition>
+    <skos:definition xml:lang="ru">участок нефтепровода, на котором происходит соединение двух или более трубопроводов</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">knutpunkt för oljepipeline</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">oil pipeline junction</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">oljeledningsknutepunkt</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">връзка на нефтопровод</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">место соединение нескольких нефтепроводов</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.OILQ"
+                 skos:notation="S.OILQ">
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">abandoned oil well</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">forlatt oljebrønn</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergiven oljekälla</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заброшенная нефтяная скважина</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставен петролен кладенец</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.OILR"
+                 skos:notation="S.OILR">
+    <skos:definition xml:lang="en">a facility for converting crude oil into refined petroleum products</skos:definition>
+    <skos:definition xml:lang="ru">предприятие, которое занимается переработкой нефти в бензин, авиационный керосин, мазут, дизельное топливо, смазочные масла, смазки, битумы, нефтяной кокс сырьё для нефтехимии</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">oil refinery</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">oljeraffinaderi</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">oljeraffineri</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">нефтеперерабатывающий завод</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">петролна рафинерия</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.OILT"
+                 skos:notation="S.OILT">
+    <skos:definition xml:lang="en">a tract of land occupied by large, cylindrical, metal tanks in which oil or liquid petrochemicals are stored</skos:definition>
+    <skos:definition xml:lang="ru">промышленный объект для хранения нефти или нефтепродуктов</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">depå</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">petrokjemisk anlegg</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">tank farm</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">нефтехранилище</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">петролна база</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.OILW"
+                 skos:notation="S.OILW">
+    <skos:definition xml:lang="en">a well from which oil may be pumped</skos:definition>
+    <skos:definition xml:lang="ru">вертикальная горная выработка круглого сечения, предназначенная для разведки либо добычи нефти и попутного газа</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">oil well</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">oljebrønn</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">oljekälla</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">нефтяная скважина</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">петролен кладенец</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.OPRA"
+                 skos:notation="S.OPRA">
+    <skos:definition xml:lang="en">A theater designed chiefly for the performance of operas.</skos:definition>
+    <skos:definition xml:lang="ru">театр; оперная труппа театра</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">opera house</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">operahus</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">operahus</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">опера</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">оперный дом</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PAL"
+                 skos:notation="S.PAL">
+    <skos:definition xml:lang="en">a large stately house, often a royal or presidential residence</skos:definition>
+    <skos:definition xml:lang="ru">здание, являющееся жилищем, постоянным местопребыванием царствующей особы, главы государства, а также членов царствующей семьи</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">palace</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">palass</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">palats</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">дворец</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">дворец</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PGDA"
+                 skos:notation="S.PGDA">
+    <skos:definition xml:lang="en">a tower-like storied structure, usually a Buddhist shrine</skos:definition>
+    <skos:definition xml:lang="ru">в Китае, Японии и некоторых других странах: культовое мемориальное буддийское сооружение</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">pagod</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">pagoda</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">pagode</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пагода</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пагода</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PIER"
+                 skos:notation="S.PIER">
+    <skos:definition xml:lang="en">a structure built out into navigable water on piles providing berthing for ships and recreation</skos:definition>
+    <skos:definition xml:lang="ru">двусторонний причал, выдающийся в акваторию порта и предназначенный для швартовки судов с двух сторон</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">pier</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">pir, kaj, vågbrytare</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">pir</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пирс</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пристан</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PKLT"
+                 skos:notation="S.PKLT">
+    <skos:definition xml:lang="en">an area used for parking vehicles</skos:definition>
+    <skos:definition xml:lang="ru">место для парковки автотранспорта</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">parkerginsplats</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">parkeringsplass</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">parking lot</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">автостоянка</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">място за паркиране</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PMPO"
+                 skos:notation="S.PMPO">
+    <skos:definition xml:lang="en">a facility for pumping oil through a pipeline</skos:definition>
+    <skos:definition xml:lang="ru">станция, предназначенная для перекачки нефти через трубопроводы</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">oil pumping station</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">oljepumpestasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">pumpstation för olja</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">нефтена помпена станция</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">нефтеперекачивающая станция</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PMPW"
+                 skos:notation="S.PMPW">
+    <skos:definition xml:lang="en">a facility for pumping water from a major well or through a pipeline</skos:definition>
+    <skos:definition xml:lang="ru">специальное здание для насосов, перекачивающих воду из водоёма к местам её использования</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">pumpstation för vatten</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vannpumpestasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">water pumping station</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">водна помпена станция</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водокачка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PO"
+                 skos:notation="S.PO">
+    <skos:definition xml:lang="en">a public building in which mail is received, sorted and distributed</skos:definition>
+    <skos:definition xml:lang="ru">учреждение связи, ведающее пересылкой писем, периодических изданий, посылок, денег и т.п.; здание, помещение, где находится это учреждение</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">post office</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">postkontor</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">postkontor</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">почта</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пощенска станция</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PP"
+                 skos:notation="S.PP">
+    <skos:definition xml:lang="en">a building in which police are stationed</skos:definition>
+    <skos:definition xml:lang="ru">здание, в котором располагается пост милиции</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">police post</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">polispostering</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">politiforlegning</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">милицейский пост</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">полицейски пост</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PPQ"
+                 skos:notation="S.PPQ">
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">abandoned police post</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">nedlagt politiforlegning</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergiven polispostering</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заброшенный полицейский пост</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставен полицейски пост</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PRKGT"
+                 skos:notation="S.PRKGT">
+    <skos:definition xml:lang="en">a controlled access to a park</skos:definition>
+    <skos:definition xml:lang="ru">вход в парк, запираемый створами</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">inngang til militæranlegg</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">park gate</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">parkingång</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ворота парка</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">паркова бариера</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PRKHQ"
+                 skos:notation="S.PRKHQ">
+    <skos:definition xml:lang="en">a park administrative facility</skos:definition>
+    <skos:definition xml:lang="ru">здание, в котором располагается администрация парка</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">hovedkvarter på militæranlegg</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">park headquarters</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">park huvudkontor</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">администрация на парк</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">администрация парка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PRN"
+                 skos:notation="S.PRN">
+    <skos:definition xml:lang="en">a facility for confining prisoners</skos:definition>
+    <skos:definition xml:lang="ru">место заключения, здание, где содержатся лица, приговорённые судом к лишению свободы; лица, находящиеся под следствием</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">fengsel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fängelse</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">prison</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">зътвор</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">тюрьма</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PRNJ"
+                 skos:notation="S.PRNJ">
+    <skos:definition xml:lang="en">a facility for confining, training, and reforming young law offenders</skos:definition>
+    <skos:definition xml:lang="ru">исправительно-трудовое учреждение, в котором отбывают наказание лица до 18 лет, осуждённые к лишению свободы</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">forbedringsanstalt</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">reformatory</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">uppfostringsanstalt</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">исправително училище</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">колония для несовершеннолетних</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PRNQ"
+                 skos:notation="S.PRNQ">
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">abandoned prison</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">nedlagt fengsel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergivet fängelse</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заброшенная тюрьма</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставен затвор</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PS"
+                 skos:notation="S.PS">
+    <skos:definition xml:lang="en">a facility for generating electric power</skos:definition>
+    <skos:definition xml:lang="ru">предприятие, где производится электроэнергия из других видов энергии</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">kraftstasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kraftstation</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">power station</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">влектростанция</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">электростанция</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PSH"
+                 skos:notation="S.PSH">
+    <skos:definition xml:lang="en">a building where electricity is generated from water power</skos:definition>
+    <skos:definition xml:lang="ru">электростанция, преобразующая энергию падающей воды в электроэнергию (сокращённо ГЭС)</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">hydroelectric power station</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vannkraftverk</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vattenkraftstation</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ВЕЦ</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">гидроэлектростанция</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PSTB"
+                 skos:notation="S.PSTB">
+    <skos:definition xml:lang="en">a post or station at an international boundary for the regulation of movement of people and goods</skos:definition>
+    <skos:definition xml:lang="ru">пост, ведающий контролем  передвижения через международную границу людей и товаров</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">border post</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">grensestasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">gränspostering</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">граничен пост</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пограничный пост</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PSTC"
+                 skos:notation="S.PSTC">
+    <skos:definition xml:lang="en">a building at an international boundary where customs and duties are paid on goods</skos:definition>
+    <skos:definition xml:lang="ru">пост, ведающий контролем провоза через границу грузов, багажа, почты и собирающее пошлину за такой провоз</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">customs post</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tollstasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tullpostering</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">митнически пост</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">таможенный пост</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PSTP"
+                 skos:notation="S.PSTP">
+    <skos:definition xml:lang="en">a post from which patrols are sent out</skos:definition>
+    <skos:definition xml:lang="ru">вид наряда, который используется для несения патрульно-постовой службы</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">patrol post</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">patruljepost</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">patrullpostering</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">патрулен пост</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">патрульный пост</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PYR"
+                 skos:notation="S.PYR">
+    <skos:definition xml:lang="en">an ancient massive structure of square ground plan with four triangular faces meeting at a point and used for enclosing tombs</skos:definition>
+    <skos:definition xml:lang="ru">В Древнем Египте: массивное сооружение из каменных блоков с четырёхугольным основанием и сходящимися к вершине боковыми гранями, служившее гробницей фараона</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">pyramid</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">pyramid</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">pyramide</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пирамида</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пирамида</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.PYRS"
+                 skos:notation="S.PYRS">
+    <skos:definition xml:lang="en">ancient massive structures of square ground plan with four triangular faces meeting at a point and used for enclosing tombs</skos:definition>
+    <skos:definition xml:lang="ru">В Древнем Египте: массивные сооружения из каменных блоков с четырёхугольным основанием и сходящимися к вершине боковыми гранями, служившие гробницей фараона</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">pyramider</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">pyramider</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">pyramids</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пирамиди</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пирамиды</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.QUAY"
+                 skos:notation="S.QUAY">
+    <skos:definition xml:lang="en">a structure of solid construction along a shore or bank which provides berthing for ships and which generally provides cargo handling facilities</skos:definition>
+    <skos:definition xml:lang="ru">стоянка для судов; специальное сооружение, к которому причаливают суда</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">brygge</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kaj</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">quay</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">кей</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">причал</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RDCR"
+                 skos:notation="S.RDCR">
+    <skos:definition xml:lang="en">a road junction formed around a central circle about which traffic moves in one direction only</skos:definition>
+    <skos:historyNote xml:lang="en">Added in v3.0</skos:historyNote>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">traffic circle</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RECG"
+                 skos:notation="S.RECG">
+    <skos:definition xml:lang="en">a recreation field where golf is played</skos:definition>
+    <skos:definition xml:lang="ru">место для отдыха, где находится поле, предназначенное для игры в гольф</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">golf course</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">golfbana</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">golfbane</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">голф игрище</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">поле для гольфа</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RECR"
+                 skos:notation="S.RECR">
+    <skos:definition xml:lang="en">a track where races are held</skos:definition>
+    <skos:definition xml:lang="ru">специально оборудованный участок для конных бегов, скачек и состязаний, представляющий собой площадь овальной формы с амфитеатром для зрителей</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">kapplöpningsbana</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">racetrack</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">veddeløpsbane</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ипподром</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">хиподрум</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.REST"
+                 skos:notation="S.REST">
+    <skos:definition xml:lang="en">A place where meals are served to the public</skos:definition>
+    <skos:definition xml:lang="ru">торговое заведение, где можно вкусно поесть и приятно провести время (иногда с музыкой, танцами и т.п.)</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">restaurang</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">restaurant</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">restaurant</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ресторан</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ресторант</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RET"
+                 skos:notation="S.RET">
+    <skos:definition xml:lang="en">a building where goods and/or services are offered for sale</skos:definition>
+    <skos:historyNote xml:lang="en">Added in v3.0</skos:historyNote>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">store</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RHSE"
+                 skos:notation="S.RHSE">
+    <skos:definition xml:lang="en">a structure maintained for the rest and shelter of travelers</skos:definition>
+    <skos:definition xml:lang="ru">лечебно-профилактическое учреждение для лечения и отдыха</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">hvilehjem</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">härbärge, vilohem</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">resthouse</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">дом отдыха</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">страноприемница</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RKRY"
+                 skos:notation="S.RKRY">
+    <skos:definition xml:lang="en">a breeding place of a colony of birds or seals</skos:definition>
+    <skos:definition xml:lang="ru">место, где лежат стадами некоторые морские животные</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">djurkoloni</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fuglekoloni</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">rookery</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лежбище</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">птича колония</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RLG"
+                 skos:notation="S.RLG">
+    <skos:definition xml:lang="en">an ancient site of significant religious importance</skos:definition>
+    <skos:definition xml:lang="ru">место религиозного поклонения</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">religious site</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">religiös plats</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">religiøst sted</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">религиозная святыня</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">религиозно място</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RLGR"
+                 skos:notation="S.RLGR">
+    <skos:definition xml:lang="en">a place of temporary seclusion, especially for religious groups</skos:definition>
+    <skos:definition xml:lang="ru">жилище, где кто-л. чувствует себя безопасно, уютно и спокойно; пристанище, прибежище для бездомных или одиноких, нуждающихся людей</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">fristad, tillflyktsort</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">retreat</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tilfluktssted</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">приют</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">приют</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RNCH"
+                 skos:notation="S.RNCH">
+    <skos:definition xml:lang="en">a large farm specializing in extensive grazing of livestock</skos:definition>
+    <skos:definition xml:lang="ru">крупная ферма, основной специализацией которой является разведение крупного рогатого скота</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">ranch(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">ranch(es)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">ranch</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ранчо(а)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ранчо</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RSD"
+                 skos:notation="S.RSD">
+    <skos:definition xml:lang="en">a short track parallel to and joining the main track</skos:definition>
+    <skos:definition xml:lang="ru">короткая железная дорога, параллельная и примыкающая к главной железной дороге</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">jernbanesidespor</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">järnvägsstickspår</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">railroad siding</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">запасный железнодорожный путь</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">коловоз</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RSGNL"
+                 skos:notation="S.RSGNL">
+    <skos:definition xml:lang="en">a signal at the entrance of a particular section of track governing the movement of trains</skos:definition>
+    <skos:definition xml:lang="ru">сигнал для передачи приказов и указаний, обеспечивающих безопасность движения поездов, маневровых работ</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">jernbanesignal</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">järnvägssignal</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">railroad signal</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">железнодорожный сигнал</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">жп сигнализация</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RSRT"
+                 skos:notation="S.RSRT">
+    <skos:definition xml:lang="en">a specialized facility for vacation, health, or participation sports activities</skos:definition>
+    <skos:definition xml:lang="ru">местность с целебными природными свойствами, используемая для лечебных целей и для отдыха</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">feriested</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">resort</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">semesterort</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">курорт</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">курорт</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RSTN"
+                 skos:notation="S.RSTN">
+    <skos:definition xml:lang="en">a facility comprising ticket office, platforms, etc. for loading and unloading train passengers and freight</skos:definition>
+    <skos:definition xml:lang="ru">здание или комплекс зданий для обслуживания пассажиров и размещения служб на железнодорожных станциях</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">jernbanestasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">järnvägsstation</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">railroad station</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ж/д вокзал</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">жп гара</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RSTNQ"
+                 skos:notation="S.RSTNQ">
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">abandoned railroad station</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">nedlagt jernbanestasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergiven järnvägsstation</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заброшенный вокзал</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставена жп гара</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RSTP"
+                 skos:notation="S.RSTP">
+    <skos:definition xml:lang="en">a place lacking station facilities where trains stop to pick up and unload passengers and freight</skos:definition>
+    <skos:definition xml:lang="ru">пункт, место, установленные для посадки и высадки пассажиров электропоезда</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">jernbanestoppested</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">järnvägsstopp</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">railroad stop</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">жп спирка</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">остановка поезда</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RSTPQ"
+                 skos:notation="S.RSTPQ">
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">abandoned railroad stop</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">nedlagt jernbanestoppested</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">övergivet järnvägsstopp</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">заброшенная остановка</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">изоставена жп спирка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.RUIN"
+                 skos:notation="S.RUIN">
+    <skos:definition xml:lang="en">a destroyed or decayed structure which is no longer functional</skos:definition>
+    <skos:definition xml:lang="ru">развалины какого-л. строения, сооружения</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">ruin(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">ruin(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">ruin</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">руина(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">руины</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SCH"
+                 skos:notation="S.SCH">
+    <skos:definition xml:lang="en">building(s) where instruction in one or more branches of knowledge takes place</skos:definition>
+    <skos:definition xml:lang="ru">учебное заведение, которое осуществляет общее образование и воспитание молодого поколения; здание, в котором помещается это заведение</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">school</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">skola</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">skole</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">училище</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">школа</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SCHA"
+                 skos:notation="S.SCHA">
+    <skos:definition xml:lang="en">a school with a curriculum focused on agriculture</skos:definition>
+    <skos:definition xml:lang="ru">школа, в учебном плане которой сделан акцент на изучение сельскохозяйственных наук</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">agricultural school</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">jordbruksskola</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">landbruksskole</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">земеделско училище</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">сельскохозяйственная школа</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SCHC"
+                 skos:notation="S.SCHC">
+    <skos:definition xml:lang="en">the grounds and buildings of an institution of higher learning</skos:definition>
+    <skos:definition xml:lang="ru">в Англии, США и некоторых других странах: высшее или среднее учебное заведение</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">college</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">høyskole</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">universitet</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">колеж</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">колледж</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SCHD"
+                 skos:notation="S.SCHD">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">Driving School</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">Driving School</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SCHL"
+                 skos:notation="S.SCHL">
+    <skos:definition xml:lang="en">Language Schools &amp; Institutions</skos:definition>
+    <skos:definition xml:lang="ru">языковые учебные заведения</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">Language School</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">Språkskola</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">language school</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">language school</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">language school</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">языковая школа</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SCHM"
+                 skos:notation="S.SCHM">
+    <skos:definition xml:lang="en">a school at which military science forms the core of the curriculum</skos:definition>
+    <skos:definition xml:lang="ru">военное образовательное учреждение высшего и среднего профессионального образования</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">military school</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">militärskola</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">militærskole</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">военен колеж</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">военное училище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SCHN"
+                 skos:notation="S.SCHN">
+    <skos:definition xml:lang="en">a school at which maritime sciences form the core of the curriculum</skos:definition>
+    <skos:definition xml:lang="ru">военно-учебное заведение для подготовки офицеров военно-морского флота (ВМФ)</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">maritime school</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sjöfartsskola</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sjøfartsskole</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">военно-морское училище</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">морско училище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SCHT"
+                 skos:notation="S.SCHT">
+    <skos:definition xml:lang="en">post-secondary school with a specifically technical or vocational curriculum</skos:definition>
+    <skos:definition xml:lang="ru">школа, предоставляющая профессионально-техническое образование</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">technical school</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">техническое училище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SECP"
+                 skos:notation="S.SECP">
+    <skos:definition xml:lang="en">state exam preparation centres</skos:definition>
+    <skos:definition xml:lang="ru">центры по подготовке к сдаче государственного экзамена</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="bg">State Exam Prep Centre</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">State Exam Prep Centre</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">State Exam Prep Centre</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">State Exam Prep Centre</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">центр подготовки к государственному экзамену</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SHPF"
+                 skos:notation="S.SHPF">
+    <skos:definition xml:lang="en">a fence or wall enclosure for sheep and other small herd animals</skos:definition>
+    <skos:definition xml:lang="ru">хлев, загон для овец</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">fårfälla</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sauekve</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">sheepfold</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">кошара за овце</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">овчарня</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SHRN"
+                 skos:notation="S.SHRN">
+    <skos:definition xml:lang="en">a structure or place memorializing a person or religious concept</skos:definition>
+    <skos:definition xml:lang="ru">в христианской церкви: большой ларец (в виде гробницы или саркофага), в котором хранятся мощи святого</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">helgedom</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">helligdom</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">shrine</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">рака</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">светилище</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SHSE"
+                 skos:notation="S.SHSE">
+    <skos:definition xml:lang="en">a building for storing goods, especially provisions</skos:definition>
+    <skos:definition xml:lang="ru">специальное помещение для хранения товаров, сырья, оборудования и т.п.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">lagerbygning</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">magasin</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">storehouse</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">склад</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">хамбар</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SLCE"
+                 skos:notation="S.SLCE">
+    <skos:definition xml:lang="en">a conduit or passage for carrying off surplus water from a waterbody, usually regulated by means of a sluice gate</skos:definition>
+    <skos:definition xml:lang="ru">гидротехническое сооружение между водоёмами с различными уровнями воды, позволяющее переводить суда из одного водоёма в другой</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">sluice</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sluse</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sluss</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">шлюз</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">шлюз</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SNTR"
+                 skos:notation="S.SNTR">
+    <skos:definition xml:lang="en">a facility where victims of physical or mental disorders are treated</skos:definition>
+    <skos:definition xml:lang="ru">лечебно-профилактическое учреждение для лечения и отдыха</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">sanatorium</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sanatorium</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sanatorium</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">санаторий</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">санаториум</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SPA"
+                 skos:notation="S.SPA">
+    <skos:definition xml:lang="en">a resort area usually developed around a medicinal spring</skos:definition>
+    <skos:definition xml:lang="ru">курорт с минеральным источником</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">bad</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">spa</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">spa</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">спа</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">спа</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SPLY"
+                 skos:notation="S.SPLY">
+    <skos:definition xml:lang="en">a passage or outlet through which surplus water flows over, around or through a dam</skos:definition>
+    <skos:definition xml:lang="ru">водосброс, осуществляющийся путём свободного перелива воды через гребень плотины</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">dammavlopp</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">overløp</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">spillway</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водослив</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">преливник</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SQR"
+                 skos:notation="S.SQR">
+    <skos:definition xml:lang="en">a broad, open, public area near the center of a town or city</skos:definition>
+    <skos:definition xml:lang="ru">незастроенное, обрамлённое какими-л. зданиями, зелёными насаждениями место в пределах города или села, составляющее часть городского, сельского пространства</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">plass</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">square</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">torg</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">площад</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">площадь</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.STBL"
+                 skos:notation="S.STBL">
+    <skos:definition xml:lang="en">a building for the shelter and feeding of farm animals, especially horses</skos:definition>
+    <skos:definition xml:lang="ru">помещение для содержания лошадей, обычно представляет собой постройку, разделённую на индивидуальные для каждой лошади секции, которые называются денниками</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">stable</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">stall</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">stall</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">конюшня</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">обор</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.STDM"
+                 skos:notation="S.STDM">
+    <skos:definition xml:lang="en">a structure with an enclosure for athletic games with tiers of seats for spectators</skos:definition>
+    <skos:definition xml:lang="ru">комплексное спортивное сооружение со специально оборудованными площадками для состязаний, тренировок, вспомогательными помещениями и трибунами для зрителей</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">stadion</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">stadium</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">stadium</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">стадион</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">стадион</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.STNB"
+                 skos:notation="S.STNB">
+    <skos:definition xml:lang="en">a scientific facility used as a base from which research is carried out or monitored</skos:definition>
+    <skos:definition xml:lang="ru">помещение, которое используется в качестве базы для проведения различных научных исследований</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">forskningsbase</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">forskningsstation</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">scientific research base</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">научно иследователска база</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">научно-исследовательская база</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.STNC"
+                 skos:notation="S.STNC">
+    <skos:definition xml:lang="en">a facility from which the coast is guarded by armed vessels</skos:definition>
+    <skos:definition xml:lang="ru">пункт, с которого вооруженные корабли ведут охрану береговой линии</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">coast guard station</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kustvaktsstation</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kystvaktstasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пост береговой охраны</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">станция на брегова охрана</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.STNE"
+                 skos:notation="S.STNE">
+    <skos:definition xml:lang="en">a facility for carrying out experiments</skos:definition>
+    <skos:definition xml:lang="ru">место проведения различного рода испытаний</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">eksperimentstasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">experiment station</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">experimentstation</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">експериментална станция</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">испытательная станция</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.STNF"
+                 skos:notation="S.STNF">
+    <skos:definition xml:lang="en">a collection of buildings and facilities for carrying out forest management</skos:definition>
+    <skos:definition xml:lang="ru">хозяйственные строения, в которых располагается управление лесным участком</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">forest station</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">skogsstation</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">skogstasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">горска станция</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лесничество</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.STNI"
+                 skos:notation="S.STNI">
+    <skos:definition xml:lang="en">a station at which vehicles, goods, and people are inspected</skos:definition>
+    <skos:definition xml:lang="ru">место досмотра вещей и обыска людей</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">inspection station</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">inspeksjonsstasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">inspektionsstation</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">инспекционна станция</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">контрольно-пропускной пункт</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.STNM"
+                 skos:notation="S.STNM">
+    <skos:definition xml:lang="en">a station at which weather elements are recorded</skos:definition>
+    <skos:definition xml:lang="ru">учреждение, которое проводит регулярные наблюдения за состоянием атмосферы</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">meteorological station</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">meteorologisk stasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">meteorologisk station</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">метеорологическая станция</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">метереологична станция</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.STNR"
+                 skos:notation="S.STNR">
+    <skos:definition xml:lang="en">a facility for producing and transmitting information by radio waves</skos:definition>
+    <skos:definition xml:lang="ru">комплекс устройств для передачи информации посредством радиоволн и (или) её приёма</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">radio station</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">radiostasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">radiostation</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">радио станция</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">радиостанция</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.STNS"
+                 skos:notation="S.STNS">
+    <skos:definition xml:lang="en">a facility for tracking and communicating with orbiting satellites</skos:definition>
+    <skos:definition xml:lang="ru">космический аппарат, предназначенный для долговременного пребывания людей на околоземной орбите с целью проведения научных исследований в условиях космического пространства, разведки, наблюдений за поверхностью и атмосферой планеты, астрономических наблюдений, и т.п.</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">satellite station</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">satellitstation</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">satellittstasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">орбитальная станция</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">сателитна станция</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.STNW"
+                 skos:notation="S.STNW">
+    <skos:definition xml:lang="en">a facility for butchering whales and processing train oil</skos:definition>
+    <skos:definition xml:lang="ru">место забоя китов</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">hvalfangststasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">valstation</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">whaling station</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">китобойная станция</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">китоловна станция</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.STPS"
+                 skos:notation="S.STPS">
+    <skos:definition xml:lang="en">stones or slabs placed for ease in ascending or descending a steep slope</skos:definition>
+    <skos:definition xml:lang="ru">пристройка перед входом в дом, состоящая из площадки и лестницы, иногда под навесом</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">steps</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">trappa</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">trinn</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">крыльцо</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">стъпало</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.SWT"
+                 skos:notation="S.SWT">
+    <skos:definition xml:lang="en">facility for the processing of sewage and/or wastewater</skos:definition>
+    <skos:definition xml:lang="ru">комплекс инженерных сооружений в системе канализации населённого места или промышленного предприятия, предназначенный для очистки</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">sewage treatment plant</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">очистное сооружение</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.THTR"
+                 skos:notation="S.THTR">
+    <skos:definition xml:lang="en">A building, room, or outdoor structure for the presentation of plays, films, or other dramatic performances</skos:definition>
+    <skos:definition xml:lang="ru">учреждение, организация, занимающиеся устройством представлений</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">teater</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">teater</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">theater</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">театр</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">театър</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.TMB"
+                 skos:notation="S.TMB">
+    <skos:definition xml:lang="en">a structure for interring bodies</skos:definition>
+    <skos:definition xml:lang="ru">яма для погребения умершего</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">grav(ar)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">grav</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">tomb(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">гробница(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">могила</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.TMPL"
+                 skos:notation="S.TMPL">
+    <skos:definition xml:lang="en">an edifice dedicated to religious worship</skos:definition>
+    <skos:definition xml:lang="ru">здание, предназначенное для совершения богослужений и религиозных обрядов</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">tempel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tempel</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">temple(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">храм(ове)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">храм</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.TNKD"
+                 skos:notation="S.TNKD">
+    <skos:definition xml:lang="en">a small artificial pond used for immersing cattle in chemically treated water for disease control</skos:definition>
+    <skos:definition xml:lang="ru">искусственный водоем со специальным химическим раствором; в этот водоем опускают крупный рогатый скот для профилактики от опасных заболеваний</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">cattle dipping tank</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">cattle dipping tank</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">desinfeksjonsstasjon for kveg</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">макательная ванна для крупного рогатого скота</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">яма за третиране на животни</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.TOWR"
+                 skos:notation="S.TOWR">
+    <skos:definition xml:lang="en">a high conspicuous structure, typically much higher than its diameter</skos:definition>
+    <skos:definition xml:lang="ru">высокое узкое архитектурное или инженерное сооружение (круглой, четырёхгранной или многогранной формы) различного назначения</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">torn</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">tower</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tårn</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">башня</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">кула</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.TRANT"
+                 skos:notation="S.TRANT">
+    <skos:definition xml:lang="en">facilities for the handling of vehicular freight and passengers</skos:definition>
+    <skos:definition xml:lang="ru">станция для перегрузки материалов с одного вида транспорта на другой и для пересадки пассажиров</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">transit terminal</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">перевалочная база/станция пересадки</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.TRIG"
+                 skos:notation="S.TRIG">
+    <skos:definition xml:lang="en">a point on the earth whose position has been determined by triangulation</skos:definition>
+    <skos:definition xml:lang="ru">опорный геодезический пункт, созданный методом триангуляции (геодезия)</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">triangulation station</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">trianguleringsstasjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">trianguleringsstation</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">триангулачна точка</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">триангуляционный пост</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.TRMO"
+                 skos:notation="S.TRMO">
+    <skos:definition xml:lang="en">a tank farm or loading facility at the end of an oil pipeline</skos:definition>
+    <skos:definition xml:lang="ru">нефтебаза или нефтеналивная станция в конце нефтепровода</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">oil pipeline terminal</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">oljepipelineterminal</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">terminal for oljerørledning</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">конечный пункт нефтепровода</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">нефтен терминал</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.TWO"
+                 skos:notation="S.TWO">
+    <skos:definition xml:lang="en">Temporary Work Offices</skos:definition>
+    <skos:definition xml:lang="ru">учреждение, осуществляющее посредничество между предпринимателями и наёмными работниками</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">Temp Work Office</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">temp work office</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">temp work office</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">temp work office</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">биржа труда</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.UNIO"
+                 skos:notation="S.UNIO">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">Post Universitary Education Institutes (post graduate studies and highly specialised master programs) &amp; MBA</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">postgrad &amp; MBA</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.UNIP"
+                 skos:notation="S.UNIP">
+    <skos:definition xml:lang="en">University Preparation Schools &amp; Institutions</skos:definition>
+    <skos:definition xml:lang="ru">подготовительные курсы для поступления в высшее учебное заведение</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">University Prep School</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">university prep school</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">university prep school</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">university prep school</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">подготовительные курсы</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.UNIV"
+                 skos:notation="S.UNIV">
+    <skos:definition xml:lang="en">An institution for higher learning with teaching and research facilities constituting a graduate school and professional schools that award master's degrees and doctorates and an undergraduate division that awards bachelor's degrees.</skos:definition>
+    <skos:definition xml:lang="ru">высшее учебно-научное заведение с различными гуманитарными и естественно-математическими отделениями (факультетами)</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">universitet</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">universitet</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">university</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">университет</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">университет</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.USGE"
+                 skos:notation="S.USGE">
+    <skos:definition xml:lang="en">a facility operated by the United States Government in Panama</skos:definition>
+    <skos:definition xml:lang="ru">учреждение, которое находится под контролем правительства США в Панаме</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">amerikansk regeringsbyggnad</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">anlegg tilhørende USA</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">united states government establishment</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">представителство на САЩ</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">представительство США в Панаме</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.VETF"
+                 skos:notation="S.VETF">
+    <skos:definition xml:lang="en">a building or camp at which veterinary services are available</skos:definition>
+    <skos:definition xml:lang="ru">больница, где лечат животных</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">veterinary facility</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">veterinärklinik</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">veterinæranlegg</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ветеринарна лечебница</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ветеринарная клиника</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.WALL"
+                 skos:notation="S.WALL">
+    <skos:definition xml:lang="en">a thick masonry structure, usually enclosing a field or building, or forming the side of a structure</skos:definition>
+    <skos:definition xml:lang="ru">вертикальная часть здания, служащая для поддержания перекрытий и разделения помещения на части</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">mur</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">mur</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">wall</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">вал</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">стена</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.WALLA"
+                 skos:notation="S.WALLA">
+    <skos:definition xml:lang="en">the remains of a linear defensive stone structure</skos:definition>
+    <skos:definition xml:lang="ru">руины защитного сооружения, построенного из камня</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">ancient wall</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fortidsmur</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">historisk damm</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">античен вал</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">античная стена</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.WEIR"
+                 skos:notation="S.WEIR">
+    <skos:definition xml:lang="en">a small dam in a stream, designed to raise the water level or to divert stream flow through a desired channel</skos:definition>
+    <skos:definition xml:lang="ru">гидротехническое сооружение, перегораживающее водоток для подъёма воды в реке, создания водохранилища или электростанции</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="sv">damm, fördämning</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fiskedam</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">weir(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бент(ове)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">плотина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.WHRF"
+                 skos:notation="S.WHRF">
+    <skos:definition xml:lang="en">a structure of open rather than solid construction along a shore or a bank which provides berthing for ships and cargo-handling facilities</skos:definition>
+    <skos:definition xml:lang="ru">специально оборудованное место, сооружение для причаливания и стоянки судов</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">kai</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kaj, brygga</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">wharf(-ves)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пристан(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пристань</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.WRCK"
+                 skos:notation="S.WRCK">
+    <skos:definition xml:lang="en">the site of the remains of a wrecked vessel</skos:definition>
+    <skos:definition xml:lang="ru">остатки кораблекрушения, выброшенные морем на берег</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">vrak</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vrak</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">wreck</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">гробница за кораби</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">обломки разбитого судна</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.WTRW"
+                 skos:notation="S.WTRW">
+    <skos:definition xml:lang="en">a facility for supplying potable water through a water source and a system of pumps and filtration beds</skos:definition>
+    <skos:definition xml:lang="ru">система наносов и очистных сооружений, сквозь которые проходит вода, используемая в дальнейшем для питья и технических целей</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">vannverk</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vattenverk, vattenkonst</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">waterworks</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">водопроводна станция</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водопроводная станция</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ZNF"
+                 skos:notation="S.ZNF">
+    <skos:definition xml:lang="en">an area, usually a section of a port, where goods may be received and shipped free of customs duty and of most customs regulations</skos:definition>
+    <skos:definition xml:lang="ru">территория, на которой не взимаются таможенные пошлины, налоги и сборы с пересекающих границу иностранных товаров</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="en">free trade zone</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">frihandelssone</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">frihandelszon</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">зона свободной торговли</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">свободна търговска зона</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#S.ZOO"
+                 skos:notation="S.ZOO">
+    <skos:definition xml:lang="en">a zoological garden or park where wild animals are kept for exhibition</skos:definition>
+    <skos:definition xml:lang="ru">зоологический парк, где содержат диких животных с целью их демонстрации</skos:definition>
+    <skos:inScheme rdf:resource="#S"/>
+    <skos:prefLabel xml:lang="no">dyrehage</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">zoo</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">zoo</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">зоопарк</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">зоопарк</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Class rdf:about="#T">
+    <rdfs:comment xml:lang="en">mountain, hill, rock, ...</rdfs:comment>
+  </gn:Class>
+
+  <gn:Code rdf:about="#T.ASPH"
+                 skos:notation="T.ASPH">
+    <skos:definition xml:lang="en">a small basin containing naturally occurring asphalt</skos:definition>
+    <skos:definition xml:lang="ru">небольшой бассейн, который вместо воды заполнен природным асфальтом</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">asfaltsjø</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">asfaltssjö</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">asphalt lake</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">асфалтово езеро</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">асфальтовое озеро</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.ATOL"
+                 skos:notation="T.ATOL">
+    <skos:definition xml:lang="en">a ring-shaped coral reef which has closely spaced islands on it encircling a lagoon</skos:definition>
+    <skos:definition xml:lang="ru">коралловый остров кольцеобразной формы с мелководной лагуной внутри (преимущественно в Индийском и Тихом океанах)</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">atoll(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">atoll(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">atoll</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">атол(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">атолл</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.BAR"
+                 skos:notation="T.BAR">
+    <skos:definition xml:lang="en">a shallow ridge or mound of coarse unconsolidated material in a stream channel, at the mouth of a stream, estuary, or lagoon and in the wave-break zone along coasts</skos:definition>
+    <skos:definition xml:lang="ru">наносная мель у морских берегов (обычно в устье реки)</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">bar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">bar</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">rev</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">бар</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">нанос</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.BCH"
+                 skos:notation="T.BCH">
+    <skos:definition xml:lang="en">a shore zone of coarse unconsolidated sediment that extends from the low-water line to the highest reach of storm waves</skos:definition>
+    <skos:definition xml:lang="ru">отлогий намывной берег, удобный для купания и принятия солнечных ванн</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">beach</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">strand</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">strand</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бряг</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пляж</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.BCHS"
+                 skos:notation="T.BCHS">
+    <skos:definition xml:lang="en">a shore zone of coarse unconsolidated sediment that extends from the low-water line to the highest reach of storm waves</skos:definition>
+    <skos:definition xml:lang="ru">отлогие намывные берега, удобные для купания и принятия солнечных ванн</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">beaches</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">strender</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">stränder</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">брегове</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пляжи</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.BDLD"
+                 skos:notation="T.BDLD">
+    <skos:definition xml:lang="en">an area characterized by a maze of very closely spaced, deep, narrow, steep-sided ravines, and sharp crests and pinnacles</skos:definition>
+    <skos:definition xml:lang="ru">неплодородная эродированная сильнопересечённая местность</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">badlands</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">ofruktbart land</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">steinørken</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Необитаема зона</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">бесплодная земля</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.BLDR"
+                 skos:notation="T.BLDR">
+    <skos:definition xml:lang="en">a high altitude or high latitude bare, flat area covered with large angular rocks</skos:definition>
+    <skos:definition xml:lang="ru">равнинная местность, покрытая большими углообразными валунами</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">boulder field</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">steinmark</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">stenblocksfält</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Скалиста зона</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">завалуненное поле</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.BLHL"
+                 skos:notation="T.BLHL">
+    <skos:definition xml:lang="en">a hole in coastal rock through which sea water is forced by a rising tide or waves and spurted through an outlet into the air</skos:definition>
+    <skos:definition xml:lang="ru">a hole in coastal rock through which sea water is forced by a rising tide or waves and spurted through an outlet into the air</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">blowhole(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">blowhole(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">blowhole</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">luftehull</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ноздра(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.BLOW"
+                 skos:notation="T.BLOW">
+    <skos:definition xml:lang="en">a small depression in sandy terrain, caused by wind erosion</skos:definition>
+    <skos:definition xml:lang="ru">небольшое углубление на песчаной местности, образовавшееся в результате эрозии</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">blowout(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">utblåsning</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">utvidgning(ar)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пукнатина(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">развеянная дюна</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.BNCH"
+                 skos:notation="T.BNCH">
+    <skos:definition xml:lang="en">a long, narrow bedrock platform bounded by steeper slopes above and below, usually overlooking a waterbody</skos:definition>
+    <skos:definition xml:lang="ru">выдающаяся вперед часть горного массива (обычно над водой), имеющая вид ступени или террасы</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">avsats</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">bench</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">benk</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">банка</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">выступ, имеющий вид ступени или террасы</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.BUTE"
+                 skos:notation="T.BUTE">
+    <skos:definition xml:lang="en">a small, isolated, usually flat-topped hill with steep sides</skos:definition>
+    <skos:definition xml:lang="ru">небольшая  возвышенность округлой или овальной формы с крутым склоном</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">butte(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">høyde med bratte sider</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kulle</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Изолирана скала(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">крутой холм на равнине</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.CAPE"
+                 skos:notation="T.CAPE">
+    <skos:definition xml:lang="en">a land area, more prominent than a point, projecting into the sea and marking a notable change in coastal direction</skos:definition>
+    <skos:definition xml:lang="ru">часть суши, острым углом вдающаяся в водное пространство (море, озеро, реку)</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">cape</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">nes</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">udde, kap</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">мыс</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">нос</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.CFT"
+                 skos:notation="T.CFT">
+    <skos:definition xml:lang="en">a deep narrow slot, notch, or groove in a coastal cliff</skos:definition>
+    <skos:definition xml:lang="ru">узкое ущелье в горах</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">cleft(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">klyfta</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kløft</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">расщелина</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">цепнатина(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.CLDA"
+                 skos:notation="T.CLDA">
+    <skos:definition xml:lang="en">a depression measuring kilometers across formed by the collapse of a volcanic mountain</skos:definition>
+    <skos:definition xml:lang="ru">котлообразная впадина с крутыми склонами и ровным дном, образовавшаяся вследствие провала вершины вулкана, а иногда и прилегающей к нему местности</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">caldera</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">caldera</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">krater</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Вулканично пропадане</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">кальдера</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.CLF"
+                 skos:notation="T.CLF">
+    <skos:definition xml:lang="en">a high, steep to perpendicular slope overlooking a waterbody or lower area</skos:definition>
+    <skos:definition xml:lang="ru">отвесная скала</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">brant klippa, stup</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">cliff(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">klippe</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">урва(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">утес</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.CNYN"
+                 skos:notation="T.CNYN">
+    <skos:definition xml:lang="en">a deep, narrow valley with steep sides cutting into a plateau or mountainous area</skos:definition>
+    <skos:definition xml:lang="ru">глубокая речная долина с очень крутыми или отвесными склонами</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">canyon</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">canyon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kanjon, djup flodbädd</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">каньон</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">каньон</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.CONE"
+                 skos:notation="T.CONE">
+    <skos:definition xml:lang="en">a conical landform composed of mud or volcanic material</skos:definition>
+    <skos:definition xml:lang="ru">рельеф канонической формы, образованный из вулканогенного материала и покрытый грязью</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">cone(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kjegle</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kon</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">конус вулкана</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">конус(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.CRDR"
+                 skos:notation="T.CRDR">
+    <skos:definition xml:lang="en">a strip or area of land having significance as an access way</skos:definition>
+    <skos:definition xml:lang="ru">узкое длинное пространство, проход, ограниченные с обеих сторон</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">corridor</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">korridor</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">korridor</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">коридор</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">коридор</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.CRQ"
+                 skos:notation="T.CRQ">
+    <skos:definition xml:lang="en">a bowl-like hollow partially surrounded by cliffs or steep slopes at the head of a glaciated valley</skos:definition>
+    <skos:definition xml:lang="ru">естественное чашеобразное углубление в привершинной части горы (обычно со скалистыми или покрытыми льдом, снегом стенами)</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">cirque</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">dalgryte</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kitteldal</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">цирк</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">циркус</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.CRQS"
+                 skos:notation="T.CRQS">
+    <skos:definition xml:lang="en">bowl-like hollows partially surrounded by cliffs or steep slopes at the head of a glaciated valley</skos:definition>
+    <skos:definition xml:lang="ru">естественные чашеобразные углубления в привершинной части горы (обычно со скалистыми или покрытыми льдом, снегом стенами)</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">cirques</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">dalgryter</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kitteldalar</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">цирки</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">циркуси</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.CRTR"
+                 skos:notation="T.CRTR">
+    <skos:definition xml:lang="en">a generally circular saucer or bowl-shaped depression caused by volcanic or meteorite explosive action</skos:definition>
+    <skos:definition xml:lang="ru">углубление на вершине вулкана, из которого при извержении выливается лава</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">crater(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">krater</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">krater</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">кратер(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">кратер</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.CUET"
+                 skos:notation="T.CUET">
+    <skos:definition xml:lang="en">an asymmetric ridge formed on tilted strata</skos:definition>
+    <skos:definition xml:lang="ru">наклонная равнина, круто обрезанная с одной стороны</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">backe</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">cuesta(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">cuesta</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">куэста</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">стръмен хълм(ове)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.DLTA"
+                 skos:notation="T.DLTA">
+    <skos:definition xml:lang="en">a flat plain formed by alluvial deposits at the mouth of a stream</skos:definition>
+    <skos:definition xml:lang="ru">устье большой реки с его разветвлениями на отдельные рукава и прилегающая к нему суша</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">delta</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">delta</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">delta</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">делта</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">дельта реки</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.DPR"
+                 skos:notation="T.DPR">
+    <skos:definition xml:lang="en">a low area surrounded by higher land and usually characterized by interior drainage</skos:definition>
+    <skos:definition xml:lang="ru">понижение земной поверхности в пределах суши, на дне океанов и морей</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">depression(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">depression(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fordypning</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">впадина</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">депресия(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.DSRT"
+                 skos:notation="T.DSRT">
+    <skos:definition xml:lang="en">a large area with little or no vegetation due to extreme environmental conditions</skos:definition>
+    <skos:definition xml:lang="ru">обширная засушливая область с небольшим количеством осадков, резкими колебаниями воздуха и почвы и скудной растительностью</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">desert</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">öken</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">ørken</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пустина(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пустыня</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.DUNE"
+                 skos:notation="T.DUNE">
+    <skos:definition xml:lang="en">a wave form, ridge or star shape feature composed of sand</skos:definition>
+    <skos:definition xml:lang="ru">песчаный холм или их группа, образованные ветром на слабо закреплённых растительностью песчаных массивах</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">dune(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sanddyn(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sanddyne</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">дюна</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">дюня(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.DVD"
+                 skos:notation="T.DVD">
+    <skos:definition xml:lang="en">a line separating adjacent drainage basins</skos:definition>
+    <skos:definition xml:lang="ru">возвышенная местность между бассейнами рек, разделяющая их</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">divide</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vannskille</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vattendelare</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">водораздел</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">разделение</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.ERG"
+                 skos:notation="T.ERG">
+    <skos:definition xml:lang="en">an extensive tract of shifting sand and sand dunes</skos:definition>
+    <skos:definition xml:lang="ru">тип пустынь с песчаной поверхностью</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">sandy desert</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sandöken</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sandørken</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">песчаная пустыня</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пясъчна пустиня</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.FAN"
+                 skos:notation="T.FAN">
+    <skos:definition xml:lang="en">a fan-shaped wedge of coarse alluvium with apex merging with a mountain stream bed and the fan spreading out at a low angle slope onto an adjacent plain</skos:definition>
+    <skos:definition xml:lang="ru">форма рельефа, имеющая вид слабовыпуклого полуконуса, образованного скоплением рыхлого обломочного материала (аллювия) в устьевой части временных водных потоков и небольших рек или при выходе их из гор на предгорные равнины или из ущелий в более широкую долину</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">avleiringsvifte</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">fan(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fan(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ветрило(а)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">конус выноса</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.FORD"
+                 skos:notation="T.FORD">
+    <skos:definition xml:lang="en">a shallow part of a stream which can be crossed on foot or by land vehicle</skos:definition>
+    <skos:definition xml:lang="ru">мелкое место во всю ширину реки, озера и т.п., удобное для перехода, переезда</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">ford</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vadested</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vadställe</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">брод</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">брод</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.FSR"
+                 skos:notation="T.FSR">
+    <skos:definition xml:lang="en">a crack associated with volcanism</skos:definition>
+    <skos:definition xml:lang="ru">глубокая трещина, узкое ущелье в горной породе, в земле</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">fissure</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">klyfta, spricka</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">revne</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">расселина</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">цепнатина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.GAP"
+                 skos:notation="T.GAP">
+    <skos:definition xml:lang="en">a low place in a ridge, not used for transportation</skos:definition>
+    <skos:definition xml:lang="ru">крутой, глубокий обрыв, очень глубокая расселина, бездна</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">gap, öppning, hål, klyfta</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">gap</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kløft</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">клисура</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пропасть</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.GRGE"
+                 skos:notation="T.GRGE">
+    <skos:definition xml:lang="en">a short, narrow, steep-sided section of a stream valley</skos:definition>
+    <skos:definition xml:lang="ru">узкая крутосклонная долина (обычно в пределах горной страны), промытая рекой в твёрдых коренных породах</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">gorge(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">juv</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">trång klyfta mellan berg</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пролом(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ущелье</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.HDLD"
+                 skos:notation="T.HDLD">
+    <skos:definition xml:lang="en">a high projection of land extending into a large body of water beyond the line of the coast</skos:definition>
+    <skos:definition xml:lang="ru">часть суши, острым углом вдающаяся в водное пространство (море, озеро, реку)</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">halvö,udde</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">headland</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">pynt</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">возвышенный мыс</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">нос</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.HLL"
+                 skos:notation="T.HLL">
+    <skos:definition xml:lang="en">a rounded elevation of limited extent rising above the surrounding land with local relief of less than 300m</skos:definition>
+    <skos:definition xml:lang="ru">небольшая отлогая горка, возвышенность округлой или овальной формы с пологими склонами</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">hill</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kulle</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">ås</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">възвишение</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">холм</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.HLLS"
+                 skos:notation="T.HLLS">
+    <skos:definition xml:lang="en">rounded elevations of limited extent rising above the surrounding land with local relief of less than 300m</skos:definition>
+    <skos:definition xml:lang="ru">небольшие отлогие горки, возвышенности округлой или овальной формы с пологими склонами</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">hills</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kullar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">åser</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">възвишения</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">холмы</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.HMCK"
+                 skos:notation="T.HMCK">
+    <skos:definition xml:lang="en">a patch of ground, distinct from and slightly above the surrounding plain or wetland. Often occurs in groups</skos:definition>
+    <skos:definition xml:lang="ru">ледяная глыба, образовавшаяся при сжатии льдов на северных морях и реках</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">hammock (stykker av hevet land)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">hammock(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">hammock</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">торос</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">хамак(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.HMDA"
+                 skos:notation="T.HMDA">
+    <skos:definition xml:lang="en">a relatively sand-free, high bedrock plateau in a hot desert, with or without a gravel veneer</skos:definition>
+    <skos:definition xml:lang="ru">тип пустыни, развитой на слабовыветренных коренных породах плато низкогорий и мелкосопочника, покрытых щебнем и галькой (поверхность К. п. почти лишена почвенно-растительного покрова, животный компонент типично пустынный)</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">klippöken</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">rock desert</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">steinørken</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">каменистая пустыня</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пустинно плато</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.INTF"
+                 skos:notation="T.INTF">
+    <skos:definition xml:lang="en">a relatively undissected upland between adjacent stream valleys</skos:definition>
+    <skos:definition xml:lang="ru">местность, расположенная между двумя реками</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">interfluve</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">interfluve</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">land mellom to elver</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">междуречье</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">промеждутък</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.ISL"
+                 skos:notation="T.ISL">
+    <skos:definition xml:lang="en">a tract of land, smaller than a continent, surrounded by water at high water</skos:definition>
+    <skos:definition xml:lang="ru">часть суши, со всех сторон окружённая водой</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">island</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">ö</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">øy</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">остров</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">остров</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.ISLET"
+                 skos:notation="T.ISLET">
+    <skos:definition xml:lang="en">small island, bigger than rock, smaller than island.</skos:definition>
+    <skos:historyNote xml:lang="en">Added in v3.0</skos:historyNote>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">islet</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.ISLF"
+                 skos:notation="T.ISLF">
+    <skos:definition xml:lang="en">an island created by landfill or diking and filling in a wetland, bay, or lagoon</skos:definition>
+    <skos:definition xml:lang="ru">искусственный остров (для разработки морских месторождений нефти и газа)</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">artificial island</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">artificiell ö</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kunstig øy</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">искусственный остров</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">искуствен остров</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.ISLM"
+                 skos:notation="T.ISLM">
+    <skos:definition xml:lang="en">a mangrove swamp surrounded by a waterbody</skos:definition>
+    <skos:definition xml:lang="ru">мангровое болото, окруженное водой</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">mangrove island</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">mangrove ö</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">mangroveøy</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">мангров остров</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">мангровый остров</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.ISLS"
+                 skos:notation="T.ISLS">
+    <skos:definition xml:lang="en">tracts of land, smaller than a continent, surrounded by water at high water</skos:definition>
+    <skos:definition xml:lang="ru">части суши, со всех сторон окружённые водой</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">islands</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">öar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">øyer</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">острова</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">острови</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.ISLT"
+                 skos:notation="T.ISLT">
+    <skos:definition xml:lang="en">a coastal island connected to the mainland by barrier beaches, levees or dikes</skos:definition>
+    <skos:definition xml:lang="ru">побережье острова, соединенное с материком посредством вырытого рва, траншеи или дамбы</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">halvö</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">land-tied island</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">øy med landforbindelse</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">остров свързан със сушата</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">соединяющийся с материком остров</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.ISLX"
+                 skos:notation="T.ISLX">
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">del av ö</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">del av øy</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of island</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок острова</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от остров</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.ISTH"
+                 skos:notation="T.ISTH">
+    <skos:definition xml:lang="en">a narrow strip of land connecting two larger land masses and bordered by water</skos:definition>
+    <skos:definition xml:lang="ru">полоса суши, соединяющая два материка или материк с полуостровом и т.п., разделённые водой</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">isthmus</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">landtunge</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">näs</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">перешеек</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">провлак</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.KRST"
+                 skos:notation="T.KRST">
+    <skos:definition xml:lang="en">a distinctive landscape developed on soluble rock such as limestone characterized by sinkholes, caves, disappearing streams, and underground drainage</skos:definition>
+    <skos:definition xml:lang="ru">ландшафт, образованный деятельностью подземных вод на участках суши, поверхность которых сложена растворимыми горными породами: известняками, гипсом, каменной солью и др.</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">karst area</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">karstområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">karstområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">карст</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">карстовый район</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.LAVA"
+                 skos:notation="T.LAVA">
+    <skos:definition xml:lang="en">an area of solidified lava</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">lava area</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">lavaområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">lavaområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">зона с лава</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">район застывшей лавы</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.LEV"
+                 skos:notation="T.LEV">
+    <skos:definition xml:lang="en">a natural low embankment bordering a distributary or meandering stream; often built up artificially to control floods</skos:definition>
+    <skos:definition xml:lang="ru">гидротехническое сооружение, перегораживающее водоток для подъёма воды в реке, создания водохранилища или электростанции</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">demning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">levee</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">skyddsvall</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">вал</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">плотина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.MESA"
+                 skos:notation="T.MESA">
+    <skos:definition xml:lang="en">a flat-topped, isolated elevation with steep slopes on all sides, less extensive than a plateau</skos:definition>
+    <skos:definition xml:lang="ru">обширная возвышенность с равнинной или холмистой поверхностью</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">mesa(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">mesa</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">platå(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">плоскогорье</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">скалисто плато(а)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.MND"
+                 skos:notation="T.MND">
+    <skos:definition xml:lang="en">a low, isolated, rounded hill</skos:definition>
+    <skos:definition xml:lang="ru">холм, горка</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">höjd(er)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">mound(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">voll</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">бугор</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">могила(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.MRN"
+                 skos:notation="T.MRN">
+    <skos:definition xml:lang="en">a mound, ridge, or other accumulation of glacial till</skos:definition>
+    <skos:definition xml:lang="ru">скопление обломков горных пород, образуемое на границе передвижения и таяния ледников</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">moraine</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">morene</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">morän</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">морена</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">морена</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.MT"
+                 skos:notation="T.MT">
+    <skos:definition xml:lang="en">an elevation standing high above the surrounding area with small summit area, steep slopes and local relief of 300m or more</skos:definition>
+    <skos:definition xml:lang="ru">Значительная возвышенность, поднимающаяся над окружающей местностью</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">berg</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fjell</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">mountain</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">гора</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">планина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.MTS"
+                 skos:notation="T.MTS">
+    <skos:definition xml:lang="en">a mountain range or a group of mountains or high ridges</skos:definition>
+    <skos:definition xml:lang="ru">значительные возвышенности, поднимающиеся над окружающей местностью</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">berg</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fjell</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">mountains</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">горы</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">планини</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.NKM"
+                 skos:notation="T.NKM">
+    <skos:definition xml:lang="en">a narrow strip of land between the two limbs of a meander loop at its narrowest point</skos:definition>
+    <skos:definition xml:lang="ru">узкий участок суши между двумя краями излучины реки; самая узкая часть меандра реки</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">meander neck</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">meander neck</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">meanderhals</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Извивка между меандри</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">шейка меандра</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.NTK"
+                 skos:notation="T.NTK">
+    <skos:definition xml:lang="en">a rock or mountain peak protruding through glacial ice</skos:definition>
+    <skos:definition xml:lang="ru">изолированный скалистый пик, горный гребень или холм, выступающий над ледниковой поверхностью</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">nunatak</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">nunatak</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">nunatak</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Ледникова скала</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">нунатак</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.NTKS"
+                 skos:notation="T.NTKS">
+    <skos:definition xml:lang="en">rocks or mountain peaks protruding through glacial ice</skos:definition>
+    <skos:definition xml:lang="ru">изолированные скалистые пики, горные гребни или холмы, выступающие над ледниковой поверхностью</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">nunataker</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">nunatakker</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">nunataks</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Ледникови скали</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">нунатаки</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PAN"
+                 skos:notation="T.PAN">
+    <skos:definition xml:lang="en">a near-level shallow, natural depression or basin, usually containing an intermittent lake, pond, or pool</skos:definition>
+    <skos:definition xml:lang="ru">большое углубление, впадина в земной поверхности с покатым спуском со всех сторон</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">aurhelle</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">pan</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sänka</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">котловина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">котловина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PANS"
+                 skos:notation="T.PANS">
+    <skos:definition xml:lang="en">a near-level shallow, natural depression or basin, usually containing an intermittent lake, pond, or pool</skos:definition>
+    <skos:definition xml:lang="ru">большие углубления, впадины в земной поверхности с покатым спуском со всех сторон</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">aurheller</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">pans</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sänkor</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">котловини</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">котловины</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PASS"
+                 skos:notation="T.PASS">
+    <skos:definition xml:lang="en">a break in a mountain range or other high obstruction, used for transportation from one side to the other [See also gap]</skos:definition>
+    <skos:definition xml:lang="ru">ущелье, узкий, тесный проход между возвышенностями или водными преградами (в котором можно остановить противника)</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">bergspass, trång väg(passage)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">pass</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">pass</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Дефиле</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">дефиле</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PEN"
+                 skos:notation="T.PEN">
+    <skos:definition xml:lang="en">an elongate area of land projecting into a body of water and nearly surrounded by water</skos:definition>
+    <skos:definition xml:lang="ru">часть суши, с трёх сторон омываемая водой, а четвёртой стороной примыкающая к материку или острову</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">halvö</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">halvøy</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">peninsula</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">полуостров</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">полуостров</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PENX"
+                 skos:notation="T.PENX">
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">del av halvö</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">del av halvøy</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of peninsula</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок полуострова</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от полуостров</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PK"
+                 skos:notation="T.PK">
+    <skos:definition xml:lang="en">a pointed elevation atop a mountain, ridge, or other hypsographic feature</skos:definition>
+    <skos:definition xml:lang="ru">остроконечная горная вершина или высшая точка горной вершины вообще</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">peak</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tind</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">topp</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">връх</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пик</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PKS"
+                 skos:notation="T.PKS">
+    <skos:definition xml:lang="en">pointed elevations atop a mountain, ridge, or other hypsographic features</skos:definition>
+    <skos:definition xml:lang="ru">остроконечные горные вершины</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">peaks</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tinder</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">toppar</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">върхове</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пики</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PLAT"
+                 skos:notation="T.PLAT">
+    <skos:definition xml:lang="en">an elevated plain with steep slopes on one or more sides, and often with incised streams</skos:definition>
+    <skos:definition xml:lang="ru">возвышенная равнина, ограниченная чётко выраженными уступами, крутыми склонами</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">plateau</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">platå</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">platå</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">плато</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">плато</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PLATX"
+                 skos:notation="T.PLATX">
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">del av platå</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">del av platå</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of plateau</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок плато</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от плато</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PLDR"
+                 skos:notation="T.PLDR">
+    <skos:definition xml:lang="en">an area reclaimed from the sea by diking and draining</skos:definition>
+    <skos:definition xml:lang="ru">осушенный участок моря или другого водоёма</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">invallat landområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">polder</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">polder</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Преградена с дига зона</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">польдер</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PLN"
+                 skos:notation="T.PLN">
+    <skos:definition xml:lang="en">an extensive area of comparatively level to gently undulating land, lacking surface irregularities, and usually adjacent to a higher area</skos:definition>
+    <skos:definition xml:lang="ru">обширный участок суши без значительных повышений и понижений поверхности</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">plain(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sletteland</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">slätt(land)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">поле(та)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">равнина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PLNX"
+                 skos:notation="T.PLNX">
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">del av slette</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">del av slättland</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of plain</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Част от поле</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок равнины</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PROM"
+                 skos:notation="T.PROM">
+    <skos:definition xml:lang="en">a bluff or prominent hill overlooking or projecting into a lowland</skos:definition>
+    <skos:definition xml:lang="ru">выступ, мыс</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">hög udde</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">promontory(-ies)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tange</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">издатина(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">промонторий</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PT"
+                 skos:notation="T.PT">
+    <skos:definition xml:lang="en">a tapering piece of land projecting into a body of water, less prominent than a cape</skos:definition>
+    <skos:definition xml:lang="ru">длинная узкая отмель, идущая от берега, или низменный узкий мыс</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">odde</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">point</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">udde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Място</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">выступающая морская коса</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.PTS"
+                 skos:notation="T.PTS">
+    <skos:definition xml:lang="en">tapering pieces of land projecting into a body of water, less prominent than a cape</skos:definition>
+    <skos:definition xml:lang="ru">длинные узкие отмели, идущие от берега, или низменные узкие мысы</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">odder</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">points</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">uddar</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Места</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">выступающие морские косы</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.RDGB"
+                 skos:notation="T.RDGB">
+    <skos:definition xml:lang="en">a ridge of sand just inland and parallel to the beach, usually in series</skos:definition>
+    <skos:definition xml:lang="ru">песчаная гряда, находящаяся на суше или идущая параллельно пляжу</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">beach ridge</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">bergskam</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">strandrygg</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Плажен хребет</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">гребень косы</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.RDGE"
+                 skos:notation="T.RDGE">
+    <skos:definition xml:lang="en">a long narrow elevation with steep sides, and a more or less continuous crest</skos:definition>
+    <skos:definition xml:lang="ru">ряд гор, тянущихся в одном направлении, горная цепь</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">ridge(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">rygg, kam, ås</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">rygg</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">горный хребет</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">хребет(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.REG"
+                 skos:notation="T.REG">
+    <skos:definition xml:lang="en">a desert plain characterized by a surface veneer of gravel and stones</skos:definition>
+    <skos:definition xml:lang="ru">каменистая пустыня</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">steinørken</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">stenöken</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">stony desert</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">гаммада</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">камениста пустиня</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.RK"
+                 skos:notation="T.RK">
+    <skos:definition xml:lang="en">a conspicuous, isolated rocky mass</skos:definition>
+    <skos:definition xml:lang="ru">каменная глыба, утёс с крутыми склонами и острыми выступами</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">klippa</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">rock</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">stein</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">скала</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">скала</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.RKFL"
+                 skos:notation="T.RKFL">
+    <skos:definition xml:lang="en">an irregular mass of fallen rock at the base of a cliff or steep slope</skos:definition>
+    <skos:definition xml:lang="ru">камни, низвергающиеся с гор лавиной</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">ras</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">rockfall</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">steinras</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Свлачище</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">камнепад</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.RKS"
+                 skos:notation="T.RKS">
+    <skos:definition xml:lang="en">conspicuous, isolated rocky masses</skos:definition>
+    <skos:definition xml:lang="ru">остроконечные горные вершины или высшие точки горной вершины вообще</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">klipper</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">klippor</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">rocks</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">скали</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">скалы</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.SAND"
+                 skos:notation="T.SAND">
+    <skos:definition xml:lang="en">a tract of land covered with sand</skos:definition>
+    <skos:definition xml:lang="ru">территория, покрытая песками</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">sand area</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sandområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sandområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Пясъчна област</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">район песков</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.SBED"
+                 skos:notation="T.SBED">
+    <skos:definition xml:lang="en">a channel formerly containing the water of a stream</skos:definition>
+    <skos:definition xml:lang="ru">углубление в почве, по которому ранее текла вода</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">dry stream bed</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tørt elveleie</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">uttorkad flodbädd</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Сухо легло на поток</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">высохшее речное русло</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.SCRP"
+                 skos:notation="T.SCRP">
+    <skos:definition xml:lang="en">a long line of cliffs or steep slopes separating level surfaces above and below</skos:definition>
+    <skos:definition xml:lang="ru">покатая поверхность горы, холма и т.п.; склон</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">brant sluttning</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">bratt skråning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">escarpment</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Насип</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">откос</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.SDL"
+                 skos:notation="T.SDL">
+    <skos:definition xml:lang="en">a broad, open pass crossing a ridge or between hills or mountains</skos:definition>
+    <skos:definition xml:lang="ru">продолговатая впадина, понижение между вершинами горного хребта или возвышенности</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">saddle</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sadelformad bergsrygg</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sal</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Седловина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">седловина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.SHOR"
+                 skos:notation="T.SHOR">
+    <skos:definition xml:lang="en">a narrow zone bordering a waterbody which covers and uncovers at high and low water, respectively</skos:definition>
+    <skos:definition xml:lang="ru">полоса земной поверхности по обе стороны береговой линии моря, озера, водохранилища</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">bredd</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kust, strand</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">shore</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бряг</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">побережье</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.SINK"
+                 skos:notation="T.SINK">
+    <skos:definition xml:lang="en">a small crater-shape depression in a karst area</skos:definition>
+    <skos:definition xml:lang="ru">отрицательная форма рельефа, замкнутая впадина чашеобразной, конической или другой формы, диаметром до 50 метров, глубиной до 15 (иногда до 200) метров</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">jordfallshull</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">sinkhole</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sänka</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Впадина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">карстовая воронка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.SLID"
+                 skos:notation="T.SLID">
+    <skos:definition xml:lang="en">a mound of earth material, at the base of a slope and the associated scoured area</skos:definition>
+    <skos:definition xml:lang="ru">естественное или специально сооруженное возвышение для спуска на лыжах, санках и т.п.</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">kana</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">ras</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">slide</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Стръмнина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">горка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.SLP"
+                 skos:notation="T.SLP">
+    <skos:definition xml:lang="en">a surface with a relatively uniform slope angle</skos:definition>
+    <skos:definition xml:lang="ru">наклонная поверхность, скат (горы, холма и т.п.)</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">kontinentalskråning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">slope(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sluttning</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">наклон(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">склон</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.SPIT"
+                 skos:notation="T.SPIT">
+    <skos:definition xml:lang="en">a narrow, straight or curved continuation of a beach into a waterbody</skos:definition>
+    <skos:definition xml:lang="ru">узкий и длинный мыс при слиянии двух рек; песчаная коса, намытая прибоем</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">landtunga</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">spit</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tange</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Дълъг подводен бряг</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">стрелка</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.SPUR"
+                 skos:notation="T.SPUR">
+    <skos:definition xml:lang="en">a subordinate ridge projecting outward from a hill, mountain or other elevation</skos:definition>
+    <skos:definition xml:lang="ru">ответвление основной горной цепи</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">spur(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">utlöpare</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">utspring</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Издадена скала(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">отрог</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.TAL"
+                 skos:notation="T.TAL">
+    <skos:definition xml:lang="en">a steep concave slope formed by an accumulation of loose rock fragments at the base of a cliff or steep slope</skos:definition>
+    <skos:definition xml:lang="ru">пологий спуск, покрытый обломками горных пород, осыпающимися в результате выветривания</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">steinur</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">stenrassluttning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">talus slope</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Склон</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">скат, покрытый осыпью</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.TRGD"
+                 skos:notation="T.TRGD">
+    <skos:definition xml:lang="en">a long wind-swept trough between parallel longitudinal dunes</skos:definition>
+    <skos:definition xml:lang="ru">понижение земной поверхности в пределах суши, на дне океанов и морей, расположенное между двумя дюнами</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">dal mellom sanddyner</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">interdune trough(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">ränna mellan dyner</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бразда(и) между дюни</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">впадина между дюнами</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.TRR"
+                 skos:notation="T.TRR">
+    <skos:definition xml:lang="en">a long, narrow alluvial platform bounded by steeper slopes above and below, usually overlooking a waterbody</skos:definition>
+    <skos:definition xml:lang="ru">горизонтальная или слегка наклонная площадка, образующая уступ на склоне местности, естественного происхождения или устроенная искусственно</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">terass</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">terrace</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">terrasse</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">тераса</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">терраса</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.UPLD"
+                 skos:notation="T.UPLD">
+    <skos:definition xml:lang="en">an extensive interior region of high land with low to moderate surface relief</skos:definition>
+    <skos:definition xml:lang="ru">обширная возвышенность с равнинной или холмистой поверхностью</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">högland</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">oppland</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">upland</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">низина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">плоскогорье</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.VAL"
+                 skos:notation="T.VAL">
+    <skos:definition xml:lang="en">an elongated depression usually traversed by a stream</skos:definition>
+    <skos:definition xml:lang="ru">удлинённая впадина между гор или в холмистой местности; равнина вдоль речного русла</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">dal</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">dal</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">valley</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">долина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">долина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.VALG"
+                 skos:notation="T.VALG">
+    <skos:definition xml:lang="en">a valley the floor of which is notably higher than the valley or shore to which it leads; most common in areas that have been glaciated</skos:definition>
+    <skos:definition xml:lang="ru">боковая долина, днище которой оканчивается выше днища главной долины</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">hanging valley</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">hengende dal</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">hängdal</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Наклонена долина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">висячая долина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.VALS"
+                 skos:notation="T.VALS">
+    <skos:definition xml:lang="en">elongated depressions usually traversed by a stream</skos:definition>
+    <skos:definition xml:lang="ru">удлинённые впадины между гор или в холмистой местности; равнины вдоль речного русла</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="sv">dalar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">daler</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">valleys</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">долини</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">долины</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.VALX"
+                 skos:notation="T.VALX">
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="no">del av dal</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">del av dal</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">section of valley</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">участок долины</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">част от долина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#T.VLC"
+                 skos:notation="T.VLC">
+    <skos:definition xml:lang="en">a conical elevation composed of volcanic materials with a crater at the top</skos:definition>
+    <skos:definition xml:lang="ru">конусообразная гора с кратером на вершине, через который из недр земли извергаются огонь, лава, пепел, горячие газы, пары воды и обломки горных пород</skos:definition>
+    <skos:inScheme rdf:resource="#T"/>
+    <skos:prefLabel xml:lang="en">volcano</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vulkan</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vulkan</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">вулкан</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">вулкан</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Class rdf:about="#U">
+    <rdfs:comment xml:lang="en">undersea</rdfs:comment>
+  </gn:Class>
+
+  <gn:Code rdf:about="#U.APNU"
+                 skos:notation="U.APNU">
+    <skos:definition xml:lang="en">a gentle slope, with a generally smooth surface, particularly found around groups of islands and seamounts</skos:definition>
+    <skos:definition xml:lang="ru">прибрежная мелководная зона океана (с глубинами до 200 м); материковая отмель</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">apron</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">plattform</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">slette</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Козирка</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">береговой шельф</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.ARCU"
+                 skos:notation="U.ARCU">
+    <skos:definition xml:lang="en">a low bulge around the southeastern end of the island of Hawaii</skos:definition>
+    <skos:definition xml:lang="ru">территория, пространство, границы которого имеют форму изогнутой линии (например, дуга на юго-востоке Гавайского хребта)</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">arch</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">bue</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">båge, valv</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Арка</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">дуга</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.ARRU"
+                 skos:notation="U.ARRU">
+    <skos:definition xml:lang="en">an area of subdued corrugations off Baja California</skos:definition>
+    <skos:definition xml:lang="ru">an area of subdued corrugations off Baja California</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">arrugado</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">arrugado</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">arrugado</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">veckig</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Нагъване</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.BDLU"
+                 skos:notation="U.BDLU">
+    <skos:definition xml:lang="en">a region adjacent to a continent, normally occupied by or bordering a shelf, that is highly irregular with depths well in excess of those typical of a shelf</skos:definition>
+    <skos:definition xml:lang="ru">невысокий порог, отделяющий геосинклиналь от океана</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">borderland</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">grenseområde</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">gränsland</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Гранична област</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">бордерленд</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.BKSU"
+                 skos:notation="U.BKSU">
+    <skos:definition xml:lang="en">elevations, typically located on a shelf, over which the depth of water is relatively shallow but sufficient for safe surface navigation</skos:definition>
+    <skos:definition xml:lang="ru">геологические образования, обязанные своим происхождением деятельности текучей воды; возвышенности на поверхности шельфа, не препятствующие судоходству</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">banks</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">bredd</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">strandsluttningar</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Крайбрежия</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">наносы</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.BNCU"
+                 skos:notation="U.BNCU">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">a small terrace</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">bench</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.BNKU"
+                 skos:notation="U.BNKU">
+    <skos:definition xml:lang="en">an elevation, typically located on a shelf, over which the depth of water is relatively shallow but sufficient for safe surface navigation</skos:definition>
+    <skos:definition xml:lang="ru">геологическое образование, обязанное своим происхождением деятельности текучей воды; возвышенность на поверхности шельфа, не препятствующее судоходству</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">bank</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">bredd</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">strandsluttning, vall</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Крайбрежие</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">нанос</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.BSNU"
+                 skos:notation="U.BSNU">
+    <skos:definition xml:lang="en">a depression more or less equidimensional in plan and of variable extent</skos:definition>
+    <skos:definition xml:lang="ru">понижение земной поверхности в пределах суши, на дне океанов и морей</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">basin</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">basseng</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sänka, bassäng</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">басейн</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">впадина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.CDAU"
+                 skos:notation="U.CDAU">
+    <skos:definition xml:lang="en">an entire mountain system including the subordinate ranges, interior plateaus, and basins</skos:definition>
+    <skos:definition xml:lang="ru">горная цепь</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">bergskedja</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">cordillera</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fjellkjede</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">кордельера</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">кордилиери</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.CNSU"
+                 skos:notation="U.CNSU">
+    <skos:definition xml:lang="en">relatively narrow, deep depressions with steep sides, the bottom of which generally has a continuous slope</skos:definition>
+    <skos:definition xml:lang="ru">глубокие речные долины с очень крутыми или отвесными склонами</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">canyoner</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">canyons</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kanjoner</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">каньони</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">каньоны</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.CNYU"
+                 skos:notation="U.CNYU">
+    <skos:definition xml:lang="en">a relatively narrow, deep depression with steep sides, the bottom of which generally has a continuous slope</skos:definition>
+    <skos:definition xml:lang="ru">глубокая речная долина с очень крутыми или отвесными склонами</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">canyon</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">canyon</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kanjon</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">каньон</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">каньон</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.CRSU"
+                 skos:notation="U.CRSU">
+    <skos:definition xml:lang="en">a gentle slope rising from oceanic depths towards the foot of a continental slope</skos:definition>
+    <skos:definition xml:lang="ru">континентальное подножие, один из основных элементов подводной окраины материков; расположено между основанием материкового склона и внешней границей ложа океана</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">continental rise</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kontinentalhöjning</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kontinentalstigning</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Континентална издатина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">материковое подножие</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.DEPU"
+                 skos:notation="U.DEPU">
+    <skos:definition xml:lang="en">a localized deep area within the confines of a larger feature, such as a trough, basin or trench</skos:definition>
+    <skos:definition xml:lang="ru">водная глубь, морская бездна; глубокий провал в болоте, топь</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">deep</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">djup</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">dyp</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Бездна</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пучина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.EDGU"
+                 skos:notation="U.EDGU">
+    <skos:definition xml:lang="en">a line along which there is a marked increase of slope at the outer margin of a continental shelf or island shelf</skos:definition>
+    <skos:definition xml:lang="ru">внешний край континентального шельфа</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">kontinentalsokkelkant</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">shelf edge</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">shelf edge</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">бровка шельфа</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">бряг</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.ESCU"
+                 skos:notation="U.ESCU">
+    <skos:definition xml:lang="en">an elongated and comparatively steep slope separating flat or gently sloping areas</skos:definition>
+    <skos:definition xml:lang="ru">отвесная скала</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">brant sluttning</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">bratt skråning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">escarpment (or scarp)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Насип</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">утес</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.FANU"
+                 skos:notation="U.FANU">
+    <skos:definition xml:lang="en">a relatively smooth feature normally sloping away from the lower termination of a canyon or canyon system</skos:definition>
+    <skos:definition xml:lang="ru">аккумулятивная форма рельефа, образованная скоплением обломочных пород, вынесенных горными реками на предгорную равнину или в более плоскую широкую долину, где происходит резкое уменьшение живой силы потока</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">avleiringsvifte</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">fan</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fan</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Вертрило</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">конус выступа</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.FLTU"
+                 skos:notation="U.FLTU">
+    <skos:definition xml:lang="en">a small level or nearly level area</skos:definition>
+    <skos:definition xml:lang="ru">равнина, расположенная не выше 200 м над уровнем моря; низменная территория, местность</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">flat</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">flat</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">flate</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Плитчина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">низменность</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.FRKU"
+                 skos:notation="U.FRKU">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">a branch of a canyon or valley</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">fork</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.FRSU"
+                 skos:notation="U.FRSU">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">a branch of a canyon or valley</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">forks</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.FRZU"
+                 skos:notation="U.FRZU">
+    <skos:definition xml:lang="en">an extensive linear zone of irregular topography of the sea floor, characterized by steep-sided or asymmetrical ridges, troughs, or escarpments</skos:definition>
+    <skos:definition xml:lang="ru">система крупных разломов (сбросов) и грабенов (рифтов)</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">bruddsone</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">fracture zone</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fracture zone</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Зона на накъсване</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">зона разломов земной коры</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.FURU"
+                 skos:notation="U.FURU">
+    <skos:definition xml:lang="en">a closed, linear, narrow, shallow depression</skos:definition>
+    <skos:definition xml:lang="ru">длинная узкая впадина на дне океана или моря</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">fure</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">furrow</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">spår</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Улей</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">желоб</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.GAPU"
+                 skos:notation="U.GAPU">
+    <skos:definition xml:lang="en">a narrow break in a ridge or rise</skos:definition>
+    <skos:definition xml:lang="ru">узкая крутосклонная долина (обычно в пределах горной страны), промытая рекой в твёрдых коренных породах</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">gap</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">klyfta</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">passasje</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">клисура</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ущелье</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.GLYU"
+                 skos:notation="U.GLYU">
+    <skos:definition xml:lang="en">a small valley-like feature</skos:definition>
+    <skos:definition xml:lang="ru">впадина в земле, промытая ливнем, образованная потоком воды</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">gully</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">ravin</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">renne</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Дере</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">промоина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.HLLU"
+                 skos:notation="U.HLLU">
+    <skos:definition xml:lang="en">an elevation rising generally less than 500 meters</skos:definition>
+    <skos:definition xml:lang="ru">возвышенность, высота которой менее 500 метров</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">hill</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kulle</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">ås</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Стръмнина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">холм</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.HLSU"
+                 skos:notation="U.HLSU">
+    <skos:definition xml:lang="en">elevations rising generally less than 500 meters</skos:definition>
+    <skos:definition xml:lang="ru">возвышенности, высота которых менее 500 метров</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">hills</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kullar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">åser</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Стръмнини</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">холмы</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.HOLU"
+                 skos:notation="U.HOLU">
+    <skos:definition xml:lang="en">a small depression of the sea floor</skos:definition>
+    <skos:definition xml:lang="ru">понижение земной поверхности в пределах суши, на дне океанов и морей</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">hole</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">hull</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">hål</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Вдлъбнатина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">впадина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.KNLU"
+                 skos:notation="U.KNLU">
+    <skos:definition xml:lang="en">an elevation rising generally more than 500 meters and less than 1,000 meters and of limited extent across the summit</skos:definition>
+    <skos:definition xml:lang="ru">небольшая подводная возвышенность   округлой или овальной формы с пологими склонами</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">knaus</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">knoll</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">liten kulle</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Хълм</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">возвышение морского дна</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.KNSU"
+                 skos:notation="U.KNSU">
+    <skos:definition xml:lang="en">elevations rising generally more than 500 meters and less than 1,000 meters and of limited extent across the summits</skos:definition>
+    <skos:definition xml:lang="ru">небольшие подводные возвышенности округлой или овальной формы с пологими склонами</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">knauser</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">knolls</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">små kullar</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Хълмове</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">возвышения морского дна</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.LDGU"
+                 skos:notation="U.LDGU">
+    <skos:definition xml:lang="en">a rocky projection or outcrop, commonly linear and near shore</skos:definition>
+    <skos:definition xml:lang="ru">надводные или подводные скалистые возвышения морского дна, опасные для судоходства</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">avsats</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">klippavsats</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">ledge</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">риф</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">тераса</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.LEVU"
+                 skos:notation="U.LEVU">
+    <skos:definition xml:lang="en">an embankment bordering a canyon, valley, or seachannel</skos:definition>
+    <skos:definition xml:lang="ru">искусственное земляное возвышение, ограждающее каньон, речную долину или морской канал</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">damm</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">demning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">levee</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Стръмен бряг</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">насыпь</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.MDVU"
+                 skos:notation="U.MDVU">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">the axial depression of the mid-oceanic ridge system</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">median valley</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.MESU"
+                 skos:notation="U.MESU">
+    <skos:definition xml:lang="en">an isolated, extensive, flat-topped elevation on the shelf, with relatively steep sides</skos:definition>
+    <skos:definition xml:lang="ru">гора с плоскими вершинами и более или менее крутыми, иногда ступенчатыми склонами</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">högplatå</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">mesa</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">mesa</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Високо плато</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">столовая гора</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.MNDU"
+                 skos:notation="U.MNDU">
+    <skos:definition xml:lang="en">a low, isolated, rounded hill</skos:definition>
+    <skos:definition xml:lang="ru">низкий холмик округлой формы на месте погребения</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">gravkulle</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">mound</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">voll</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Могила</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">могильный холм</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.MOTU"
+                 skos:notation="U.MOTU">
+    <skos:definition xml:lang="en">an annular depression that may not be continuous, located at the base of many seamounts, islands, and other isolated elevations</skos:definition>
+    <skos:definition xml:lang="ru">длинное углубление, вырытое в земле</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">moat</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vallgrav</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vollgrav</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Ров</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">ров</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.MTSU"
+                 skos:notation="U.MTSU">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">well-delineated subdivisions of a large and complex positive feature</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">mountains</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.MTU"
+                 skos:notation="U.MTU">
+    <skos:definition xml:lang="en">a well-delineated subdivision of a large and complex positive feature</skos:definition>
+    <skos:definition xml:lang="ru">значительная возвышенность, поднимающаяся над окружающей местностью</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">berg</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">fjell</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">mountain</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">гора</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">планина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.PKSU"
+                 skos:notation="U.PKSU">
+    <skos:definition xml:lang="en">prominent elevations, part of a larger feature, either pointed or of very limited extent across the summit</skos:definition>
+    <skos:definition xml:lang="ru">остроконечные горные вершины или высшие точки горной вершины вообще</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">peaks</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">toppar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">topper</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">върхове</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пики</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.PKU"
+                 skos:notation="U.PKU">
+    <skos:definition xml:lang="en">a prominent elevation, part of a larger feature, either pointed or of very limited extent across the summit</skos:definition>
+    <skos:definition xml:lang="ru">остроконечная горная вершина или высшая точка горной вершины вообще</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">peak</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">topp</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">topp</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">връх</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пик</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.PLFU"
+                 skos:notation="U.PLFU">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">a flat or gently sloping underwater surface extending seaward from the shore</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">platform</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.PLNU"
+                 skos:notation="U.PLNU">
+    <skos:definition xml:lang="en">a flat, gently sloping or nearly level region</skos:definition>
+    <skos:definition xml:lang="ru">участок дна моря, океана без резких колебаний высот</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">plain</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">slette</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">slätt(land)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Поле</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">равнина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.PLTU"
+                 skos:notation="U.PLTU">
+    <skos:definition xml:lang="en">a comparatively flat-topped feature of considerable extent, dropping off abruptly on one or more sides</skos:definition>
+    <skos:definition xml:lang="ru">возвышенная равнина, ограниченная чётко выраженными уступами, крутыми склонами</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">plateau</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">platå</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">platå</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">плато</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">плато</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.PNLU"
+                 skos:notation="U.PNLU">
+    <skos:definition xml:lang="en">a high tower or spire-shaped pillar of rock or coral, alone or cresting a summit</skos:definition>
+    <skos:definition xml:lang="ru">остроконечная скала</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">klippa</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">pinnacle</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tind</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Шпиц</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">шпиц</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.PRVU"
+                 skos:notation="U.PRVU">
+    <skos:definition xml:lang="en">a region identifiable by a group of similar physiographic features whose characteristics are markedly in contrast with surrounding areas</skos:definition>
+    <skos:definition xml:lang="ru">часть природной географической зоны в составе определенной физико-географической области; региональная единица физико-географического районирования. Физико-географические провинции выделяются по морфоструктурным особенностям рельефа и климату, а в горах - по характеру высотной поясности</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">province</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">provins</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">provins</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Регион</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">провинция, физико-географическая</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.RAVU"
+                 skos:notation="U.RAVU">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">a small canyon</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">ravine</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.RDGU"
+                 skos:notation="U.RDGU">
+    <skos:definition xml:lang="en">a long narrow elevation with steep sides</skos:definition>
+    <skos:definition xml:lang="ru">цепи невысоких гор</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">ridge</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">rygg</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">ås</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Гребен</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">горный кряжи</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.RDSU"
+                 skos:notation="U.RDSU">
+    <skos:definition xml:lang="en">long narrow elevations with steep sides</skos:definition>
+    <skos:definition xml:lang="ru">цепь невысоких гор</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">ridges</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">rygger</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">åsar</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Гребени</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">горный кряж</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.RFSU"
+                 skos:notation="U.RFSU">
+    <skos:definition xml:lang="en">surface-navigation hazards composed of consolidated material</skos:definition>
+    <skos:definition xml:lang="ru">надводные или подводные скалистые возвышения морского дна, опасные для судоходства</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">reefs</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">rev</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">rev</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Рифове</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">рифы</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.RFU"
+                 skos:notation="U.RFU">
+    <skos:definition xml:lang="en">a surface-navigation hazard composed of consolidated material</skos:definition>
+    <skos:definition xml:lang="ru">надводные или подводные скалистые возвышения морского дна, опасные для судоходства</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">reef</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">rev</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">rev</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Риф</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">риф</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.RISU"
+                 skos:notation="U.RISU">
+    <skos:definition xml:lang="en">a broad elevation that rises gently, and generally smoothly, from the sea floor</skos:definition>
+    <skos:definition xml:lang="ru">участок морского дна,  возвышающийся над окружающим рельефом</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">höjd</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">rise</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">stigning</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">възвишение</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">небольшое возвышение морского дна</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.RMPU"
+                 skos:notation="U.RMPU">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">a gentle slope connecting areas of different elevations</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">ramp</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.RNGU"
+                 skos:notation="U.RNGU">
+    <owl:deprecated rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">true</owl:deprecated>
+    <skos:definition xml:lang="en">a series of associated ridges or seamounts</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">range</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.SCNU"
+                 skos:notation="U.SCNU">
+    <skos:definition xml:lang="en">a continuously sloping, elongated depression commonly found in fans or plains and customarily bordered by levees on one or two sides</skos:definition>
+    <skos:definition xml:lang="ru">впадина на дне морского дна, с покатыми краями и защищенная с одной или двух сторон валом</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">havskanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">seachannel</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sjøkanal</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Морски канал</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">канал на дне океана</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.SCSU"
+                 skos:notation="U.SCSU">
+    <skos:definition xml:lang="en">continuously sloping, elongated depressions commonly found in fans or plains and customarily bordered by levees on one or two sides</skos:definition>
+    <skos:definition xml:lang="ru">впадины на дне морского дна с пологими склонами, защищенные с одной или двух сторон валом</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">havskanaler</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">seachannels</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sjøkanaler</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Морски канали</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">каналы на дне океана</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.SDLU"
+                 skos:notation="U.SDLU">
+    <skos:definition xml:lang="en">a low part, resembling in shape a saddle, in a ridge or between contiguous seamounts</skos:definition>
+    <skos:definition xml:lang="ru">продолговатая впадина, понижение между вершинами подводного горного хребта или возвышенности</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">saddle</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sadelformad bergsrygg</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sal</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Седловина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">седловина подводной горной цепи</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.SHFU"
+                 skos:notation="U.SHFU">
+    <skos:definition xml:lang="en">a zone adjacent to a continent (or around an island) that extends from the low water line to a depth at which there is usually a marked increase of slope towards oceanic depths</skos:definition>
+    <skos:definition xml:lang="ru">прибрежная мелководная зона океана (с глубинами до 200 м); материковая отмель</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">hylle</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sandrev, klippavsats</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">shelf</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">шелф</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">шельф</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.SHLU"
+                 skos:notation="U.SHLU">
+    <skos:definition xml:lang="en">a surface-navigation hazard composed of unconsolidated material</skos:definition>
+    <skos:definition xml:lang="ru">участок (обычно прибрежный) реки, озера и т.п. с небольшой глубиной</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">grund, sandrev</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sandgrunne</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">shoal</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Плитчина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">мелководье</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.SHSU"
+                 skos:notation="U.SHSU">
+    <skos:definition xml:lang="en">hazards to surface navigation composed of unconsolidated material</skos:definition>
+    <skos:definition xml:lang="ru">участки (обычно прибрежные) реки, озера и т.п. с небольшой глубиной</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">sandbankar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">sandgrunner</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">shoals</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Плитчини</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">мелководья</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.SHVU"
+                 skos:notation="U.SHVU">
+    <skos:definition xml:lang="en">a valley on the shelf, generally the shoreward extension of a canyon</skos:definition>
+    <skos:definition xml:lang="ru">относительно мелководная подводная равнина, прилегающая к берегам материков и генетически составляющая часть материковой платформы</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">dal gjennom kontinentalhyllen</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">shelf valley</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">shelf valley</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Шелфова долина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">материковая отмель</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.SILU"
+                 skos:notation="U.SILU">
+    <skos:definition xml:lang="en">the low part of a gap or saddle separating basins</skos:definition>
+    <skos:definition xml:lang="ru">каменистое поперечное возвышение дна реки, нарушающее плавность её течения и затрудняющее судоходство</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">sill</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">terskel</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tröskel</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Интрузия</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">порог</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.SLPU"
+                 skos:notation="U.SLPU">
+    <skos:definition xml:lang="en">the slope seaward from the shelf edge to the beginning of a continental rise or the point where there is a general reduction in slope</skos:definition>
+    <skos:definition xml:lang="ru">покатая поверхность горы, холма и т.п.; склон</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">skråning</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">slope</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">sluttning</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">откос</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">скат</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.SMSU"
+                 skos:notation="U.SMSU">
+    <skos:definition xml:lang="en">elevations rising generally more than 1,000 meters and of limited extent across the summit</skos:definition>
+    <skos:definition xml:lang="ru">изолированные поднятия морского дна с относительной высотой более 500 м и четко выраженной конической или куполообразной одной или несколькими вершинами и крутыми склонами</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">seamounts</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">undersjøiske fjell</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">undervattensberg</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Морски връх</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">подводные горы</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.SMU"
+                 skos:notation="U.SMU">
+    <skos:definition xml:lang="en">an elevation rising generally more than 1,000 meters and of limited extent across the summit</skos:definition>
+    <skos:definition xml:lang="ru">изолированное поднятие морского дна с относительной высотой более 500 м и четко выраженной конической или куполообразной одной или несколькими вершинами и крутыми склонами</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">seamount</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">undersjøisk fjell</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">undervattensberg</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Морски върхове</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">подводная гора</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.SPRU"
+                 skos:notation="U.SPRU">
+    <skos:definition xml:lang="en">a subordinate elevation, ridge, or rise projecting outward from a larger feature</skos:definition>
+    <skos:definition xml:lang="ru">ряд гор, тянущихся в одном направлении, горная цепь</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="en">spur</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">utlöpare</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">utspring</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">хребет</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">хребет</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.TERU"
+                 skos:notation="U.TERU">
+    <skos:definition xml:lang="en">a relatively flat horizontal or gently inclined surface, sometimes long and narrow, which is bounded by a steeper ascending slope on one side and by a steep descending slope on the opposite side</skos:definition>
+    <skos:definition xml:lang="ru">горизонтальная или слегка наклонная площадка, образующая уступ на склоне местности, естественного происхождения или устроенная искусственно</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">terass</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">terrace</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">terrasse</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">тераса</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">терраса</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.TMSU"
+                 skos:notation="U.TMSU">
+    <skos:definition xml:lang="en">seamounts having a comparatively smooth, flat top</skos:definition>
+    <skos:definition xml:lang="ru">плосковершинные подводные вулканические горы, встречающиеся одиночно или группами</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">guyoter</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">tablemounts (or guyots)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">undervattensberg</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Плоски възвишения</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">гайоты</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.TMTU"
+                 skos:notation="U.TMTU">
+    <skos:definition xml:lang="en">a seamount having a comparatively smooth, flat top</skos:definition>
+    <skos:definition xml:lang="ru">подводный плосковершинный вулкан</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">guyot</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">tablemount (or guyot)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">undervattensberg</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">Плоско възвишение</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">гайот</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.TNGU"
+                 skos:notation="U.TNGU">
+    <skos:definition xml:lang="en">an elongate (tongue-like) extension of a flat sea floor into an adjacent higher feature</skos:definition>
+    <skos:definition xml:lang="ru">длинная узкая отмель, идущая от берега, или низменный узкий мыс</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">landtunga</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">landtunge</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">tongue</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">коса</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">нос</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.TRGU"
+                 skos:notation="U.TRGU">
+    <skos:definition xml:lang="en">a long depression of the sea floor characteristically flat bottomed and steep sided, and normally shallower than a trench</skos:definition>
+    <skos:definition xml:lang="ru">углубление с пологими склонами  на дне океанов и морей</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">gjennomgang</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">ränna</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">trough</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">впадина на дне океана с пологими склонами</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">падина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.TRNU"
+                 skos:notation="U.TRNU">
+    <skos:definition xml:lang="en">a long, narrow, characteristically very deep and asymmetrical depression of the sea floor, with relatively steep sides</skos:definition>
+    <skos:definition xml:lang="ru">углубление с крутыми склонами на дне океанов и морей</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">dike</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">renne</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">trench</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">впадина на дне океана с крутыми склонами</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">просека</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.VALU"
+                 skos:notation="U.VALU">
+    <skos:definition xml:lang="en">a relatively shallow, wide depression, the bottom of which usually has a continuous gradient</skos:definition>
+    <skos:definition xml:lang="ru">овраг с пологими склонами</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="no">dal</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">dal</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">valley</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">долина</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лощина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#U.VLSU"
+                 skos:notation="U.VLSU">
+    <skos:definition xml:lang="en">a relatively shallow, wide depression, the bottom of which usually has a continuous gradient</skos:definition>
+    <skos:definition xml:lang="ru">овраги с пологими склонами</skos:definition>
+    <skos:inScheme rdf:resource="#U"/>
+    <skos:prefLabel xml:lang="sv">dalar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">daler</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">valleys</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">долини</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лощины</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Class rdf:about="#V">
+    <rdfs:comment xml:lang="en">forest, heath, ...</rdfs:comment>
+  </gn:Class>
+
+  <gn:Code rdf:about="#V.BUSH"
+                 skos:notation="V.BUSH">
+    <skos:definition xml:lang="en">a small clump of conspicuous bushes in an otherwise bare area</skos:definition>
+    <skos:definition xml:lang="ru">заросли куста</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="en">bush(es)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">busk</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">djungel</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">кустарник</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">храст(и)</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.CULT"
+                 skos:notation="V.CULT">
+    <skos:definition xml:lang="en">an area under cultivation</skos:definition>
+    <skos:definition xml:lang="ru">площадь, предназначенная для возделывания многих с.-х. культур</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="en">cultivated area</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">dyrket mark</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">uppodlat område</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">обработваеми площи</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">посевная площадь</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.FRST"
+                 skos:notation="V.FRST">
+    <skos:definition xml:lang="en">an area dominated by tree vegetation</skos:definition>
+    <skos:definition xml:lang="ru">множество дикорастущих деревьев, расположенных на большом пространстве; пространство, обильно поросшее деревьями</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="en">forest(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">skog(ar)</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">skog</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">гори</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">лес</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.FRSTF"
+                 skos:notation="V.FRSTF">
+    <skos:definition xml:lang="en">a forest fossilized by geologic processes and now exposed at the earth's surface</skos:definition>
+    <skos:definition xml:lang="ru">значительное скопление древесных окаменелостей на небольшом участке</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="no">forsteinet skog</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fossil skog</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">fossilized forest</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">горски вкаменелости</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">окаменелый лес</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.GRSLD"
+                 skos:notation="V.GRSLD">
+    <skos:definition xml:lang="en">an area dominated by grass vegetation</skos:definition>
+    <skos:definition xml:lang="ru">пространство земли, покрытое травянистой растительностью; сенокосное, пастбищное угодье</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="en">grassland</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">gresslette</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">grässlätt</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ливади</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">луг</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.GRVC"
+                 skos:notation="V.GRVC">
+    <skos:definition xml:lang="en">a planting of coconut trees</skos:definition>
+    <skos:definition xml:lang="ru">большой участок земли, занятый кокосовыми деревьями</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="en">coconut grove</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">kokoslund</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">kokospalmelund</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">кокосови насаждения</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">плантация кокосовых деревьев</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.GRVO"
+                 skos:notation="V.GRVO">
+    <skos:definition xml:lang="en">a planting of olive trees</skos:definition>
+    <skos:definition xml:lang="ru">большой участок земли, занятый оливковыми деревьями</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="en">olive grove</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">olivenlund</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">olivlund</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">маслинова плантация</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">плантация оливковых деревьев</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.GRVP"
+                 skos:notation="V.GRVP">
+    <skos:definition xml:lang="en">a planting of palm trees</skos:definition>
+    <skos:definition xml:lang="ru">небольшой лесной участок, состоящий из пальмовых деревьев</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="en">palm grove</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">palmelund</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">palmlund</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">палмова плантация</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">пальмовая роща</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.GRVPN"
+                 skos:notation="V.GRVPN">
+    <skos:definition xml:lang="en">a planting of pine trees</skos:definition>
+    <skos:definition xml:lang="ru">небольшой лесной участок, состоящий из сосен</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="no">furulund</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">furulund</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">pine grove</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">иглолистни насаждения</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">сосновая роща</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.HTH"
+                 skos:notation="V.HTH">
+    <skos:definition xml:lang="en">an upland moor or sandy area dominated by low shrubby vegetation including heather</skos:definition>
+    <skos:definition xml:lang="ru">вересковые пустоши, тип растительности, представленный вечнозелёными кустарниками и кустарничками, преимущественно семейства вересковых, имеющих жёсткие узкие листья</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="en">heath</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">hed</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">hei</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">верещатник</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">пустош</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.MDW"
+                 skos:notation="V.MDW">
+    <skos:definition xml:lang="en">a small, poorly drained area dominated by grassy vegetation</skos:definition>
+    <skos:definition xml:lang="ru">небольшой луг, луг среди других угодий (лесных, пастбищных</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="no">eng</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">meadow</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">äng</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">ливада</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">луговина</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.OCH"
+                 skos:notation="V.OCH">
+    <skos:definition xml:lang="en">a planting of fruit or nut trees</skos:definition>
+    <skos:definition xml:lang="ru">участок земли, на котором выращивают фруктовые деревья</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="no">frukthage</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">fruktträdgård(ar)</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">orchard(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">овощна градина(и)</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">фруктовый сад</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.SCRB"
+                 skos:notation="V.SCRB">
+    <skos:definition xml:lang="en">an area of low trees, bushes, and shrubs stunted by some environmental limitation</skos:definition>
+    <skos:definition xml:lang="ru">густо разросшийся кустарник, массив трав, деревьев и т. п.</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="sv">buskterräng</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">krattskog</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">scrubland</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">кустарниковая заросль</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">храсти</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.TREE"
+                 skos:notation="V.TREE">
+    <skos:definition xml:lang="en">a conspicuous tree used as a landmark</skos:definition>
+    <skos:definition xml:lang="ru">дерево (известное благодаря чему-л.), являющееся  достопримечательностью</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="no">tre</skos:prefLabel>
+    <skos:prefLabel xml:lang="en">tree(s)</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">träd</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">дерево</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">дървета</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.TUND"
+                 skos:notation="V.TUND">
+    <skos:definition xml:lang="en">a marshy, treeless, high latitude plain, dominated by mosses, lichens, and low shrub vegetation under permafrost conditions</skos:definition>
+    <skos:definition xml:lang="ru">тип растительности высоких широт Северного полушария Земли, характеризующийся развитием мохового и лишайникового покровов, наличием низкорослых кустарников и т.п.; природная зона с таким типом растительности</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="en">tundra</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">tundra</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">tundra</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">тундра</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">тундра</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.VIN"
+                 skos:notation="V.VIN">
+    <skos:definition xml:lang="en">a planting of grapevines</skos:definition>
+    <skos:definition xml:lang="ru">участок, засаженный виноградом; виноградная плантация</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="en">vineyard</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vingård</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vingård</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">виноградник</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">лозя</skos:prefLabel>
+  </gn:Code>
+
+  <gn:Code rdf:about="#V.VINS"
+                 skos:notation="V.VINS">
+    <skos:definition xml:lang="en">plantings of grapevines</skos:definition>
+    <skos:definition xml:lang="ru">виноградные плантации</skos:definition>
+    <skos:inScheme rdf:resource="#V"/>
+    <skos:prefLabel xml:lang="en">vineyards</skos:prefLabel>
+    <skos:prefLabel xml:lang="sv">vingårdar</skos:prefLabel>
+    <skos:prefLabel xml:lang="no">vingårder</skos:prefLabel>
+    <skos:prefLabel xml:lang="ru">виноградники</skos:prefLabel>
+    <skos:prefLabel xml:lang="bg">лозя</skos:prefLabel>
+  </gn:Code>
+      
+      <gn:Code rdf:about="#A.ADM1H"
+            skos:notation="A.ADM1H">
+            <skos:historyNote xml:lang="en">Added in v3.1</skos:historyNote>
+            <skos:inScheme rdf:resource="#A"/>
+            <skos:prefLabel xml:lang="en">historical first-order administrative division</skos:prefLabel>
+      </gn:Code>
+      
+      <gn:Code rdf:about="#A.ADM2H"
+            skos:notation="A.ADM2H">
+            <skos:historyNote xml:lang="en">Added in v3.1</skos:historyNote>
+            <skos:inScheme rdf:resource="#A"/>
+            <skos:prefLabel xml:lang="en">historical second-order administrative division</skos:prefLabel>
+      </gn:Code>
+      
+      <gn:Code rdf:about="#A.ADM3H"
+            skos:notation="A.ADM3H">
+            <skos:historyNote xml:lang="en">Added in v3.1</skos:historyNote>
+            <skos:inScheme rdf:resource="#A"/>
+            <skos:prefLabel xml:lang="en">historical third-order administrative division</skos:prefLabel>
+      </gn:Code>
+      
+      <gn:Code rdf:about="#A.ADM4H"
+            skos:notation="A.ADM4H">
+            <skos:historyNote xml:lang="en">Added in v3.1</skos:historyNote>
+            <skos:inScheme rdf:resource="#A"/>
+            <skos:prefLabel xml:lang="en">historical fourth-order administrative division</skos:prefLabel>
+      </gn:Code>
+      
+      <gn:Code rdf:about="#A.ADMH"
+            skos:notation="A.ADMH">
+            <skos:historyNote xml:lang="en">Added in v3.1</skos:historyNote>
+            <skos:inScheme rdf:resource="#A"/>
+            <skos:prefLabel xml:lang="en">historical administrative division</skos:prefLabel>
+      </gn:Code>
+      
+      <gn:Code rdf:about="#A.PCLH"
+            skos:notation="A.PCLH">
+            <skos:historyNote xml:lang="en">Added in v3.1</skos:historyNote>
+            <skos:inScheme rdf:resource="#A"/>
+            <skos:prefLabel xml:lang="en">historical political entity</skos:prefLabel>
+      </gn:Code>
+      
+      <gn:Code rdf:about="#A.PPCLH"
+            skos:notation="A.PPCLH">
+            <skos:historyNote xml:lang="en">Added in v3.1</skos:historyNote>
+            <skos:inScheme rdf:resource="#P"/>
+            <skos:prefLabel xml:lang="en">historical capital of a political entity</skos:prefLabel>
+      </gn:Code>
+      
+      <gn:Code rdf:about="#A.PPLH"
+            skos:notation="A.PPLH">
+            <skos:historyNote xml:lang="en">Added in v3.1</skos:historyNote>
+            <skos:inScheme rdf:resource="#P"/>
+            <skos:prefLabel xml:lang="en">historical populated place</skos:prefLabel>
+      </gn:Code>
+
+      <gn:Code rdf:about="#L.RGNH"
+            skos:notation="L.RGNH">
+            <skos:historyNote xml:lang="en">Added in v3.1</skos:historyNote>
+            <skos:inScheme rdf:resource="#L"/>
+            <skos:prefLabel xml:lang="en">historical region</skos:prefLabel>
+      </gn:Code>
+
+      <gn:Code rdf:about="#S.HMSD"
+            skos:notation="S.HMSD">
+            <skos:historyNote xml:lang="en">Added in v3.1</skos:historyNote>
+            <skos:inScheme rdf:resource="#S"/>
+            <skos:prefLabel xml:lang="en">homestead</skos:prefLabel>
+            <skos:definition>a residence, owner's or manager's, on a sheep or cattle station, woolshed, outcamp, or Aboriginal outstation, specific to Australia and New Zealand</skos:definition>
+      </gn:Code>
+
+</rdf:RDF>
diff --git a/ontologies/withDependencies/musicontology.rdfs b/ontologies/withDependencies/musicontology.rdfs
new file mode 100644
index 0000000..8b29d8f
--- /dev/null
+++ b/ontologies/withDependencies/musicontology.rdfs
@@ -0,0 +1,3232 @@
+<?xml version="1.0" encoding="utf-8"?>
+<rdf:RDF
+   xmlns:ao="http://purl.org/ontology/ao/core#"
+   xmlns:bio="http://purl.org/vocab/bio/0.1/"
+   xmlns:cc="http://web.resource.org/cc/"
+   xmlns:dc="http://purl.org/dc/elements/1.1/"
+   xmlns:dcterms="http://purl.org/dc/terms/"
+   xmlns:event="http://purl.org/NET/c4dm/event.owl#"
+   xmlns:foaf="http://xmlns.com/foaf/0.1/"
+   xmlns:frbr="http://purl.org/vocab/frbr/core#"
+   xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
+   xmlns:keys="http://purl.org/NET/c4dm/keys.owl#"
+   xmlns:mo="http://purl.org/ontology/mo/"
+   xmlns:owl="http://www.w3.org/2002/07/owl#"
+   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+   xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+   xmlns:time="http://www.w3.org/2006/time#"
+   xmlns:vann="http://purl.org/vocab/vann/"
+   xmlns:vs="http://www.w3.org/2003/06/sw-vocab-status/ns#"
+   xmlns:wot="http://xmlns.com/wot/0.1/"
+   xmlns:xsd="http://www.w3.org/2001/XMLSchema#" xml:base="http://purl.org/ontology/mo/">
+  <rdf:Description rdf:about="http://foaf.me/zazi#me">
+    <foaf:homepage rdf:resource="http://smiy.wordpress.com/"/>
+    <foaf:name>Thomas Gängler</foaf:name>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://kurtisrandom.com/foaf.rdf#kurtjx">
+    <foaf:homepage rdf:resource="http://kurtisrandom.com/"/>
+    <foaf:name>Kurt Jacobson</foaf:name>
+  </rdf:Description>
+  <owl:Ontology rdf:about="">
+    <dc:created>2006/12/21 12:00:00</dc:created>
+    <dc:date>2013/07/22 16:54:19</dc:date>
+    <dc:description>
+        The Music Ontology Specification provides main concepts and 
+        properties fo describing music (i.e. artists, albums and tracks) 
+        on the Semantic Web. 
+    </dc:description>
+    <dc:title>The Music Ontology</dc:title>
+    <vann:preferredNamespacePrefix>mo</vann:preferredNamespacePrefix>
+    <vann:preferredNamespaceUri>http://purl.org/ontology/mo/</vann:preferredNamespaceUri>
+    <owl:imports rdf:resource="../../NET/c4dm/event.owl"/>
+    <owl:imports rdf:resource="../../NET/c4dm/keys.owl"/>
+    <owl:imports rdf:resource="../../dc/terms/"/>
+    <owl:imports rdf:resource="../ao/core"/>
+    <owl:imports rdf:resource="../../vocab/bio/0.1/"/>
+    <owl:imports rdf:resource="../../vocab/frbr/core"/>
+    <owl:imports rdf:resource="http://www.w3.org/2006/time"/>
+    <owl:imports rdf:resource="http://xmlns.com/foaf/0.1/"/>
+    <owl:versionInfo>Revision: 2.1.5</owl:versionInfo>
+    <foaf:maker rdf:resource="http://foaf.me/zazi#me"/>
+    <foaf:maker rdf:resource="http://kurtisrandom.com/foaf.rdf#kurtjx"/>
+    <foaf:maker rdf:resource="http://raimond.me.uk/foaf.rdf#moustaki"/>
+    <foaf:maker rdf:resource="http://www.talkdigger.com/foaf/fgiasson"/>
+    <foaf:maker>
+      <rdf:Description>
+        <foaf:name>George Fazekas</foaf:name>
+      </rdf:Description>
+    </foaf:maker>
+    <foaf:maker>
+      <rdf:Description>
+        <foaf:homepage rdf:resource="http://simon-reinhardt.de/"/>
+        <foaf:name>Simon Reinhardt</foaf:name>
+      </rdf:Description>
+    </foaf:maker>
+    <foaf:maker>
+      <rdf:Description>
+        <foaf:homepage rdf:resource="http://apassant.net/"/>
+        <foaf:name>Alexandre Passant</foaf:name>
+      </rdf:Description>
+    </foaf:maker>
+  </owl:Ontology>
+  <owl:Class rdf:about="Activity">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        An activity period, defining when an artist was musically active.
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>activity</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../NET/c4dm/event.owl#Event"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="AnalogSignal">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        An analog signal.
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>analogue signal</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Signal"/>
+    <owl:disjointWith rdf:resource="DigitalSignal"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Arrangement">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        An arrangement event.
+        Takes as agent the arranger, and produces a score (informational object, not the actually published score).
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>arrangement</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../NET/c4dm/event.owl#Event"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Arranger">
+    <mo:level>2</mo:level>
+    <rdfs:label>arranger</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <owl:equivalentClass>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="../../NET/c4dm/event.owl#isAgentIn"/>
+        <owl:someValuesFrom rdf:resource="Arrangement"/>
+      </owl:Restriction>
+    </owl:equivalentClass>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="AudioFile">
+    <mo:level>1</mo:level>
+    <rdfs:comment>An audio file, which may be available on a local file system or through http, ftp, etc.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>audio file</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Medium"/>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="CD">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Compact Disc used as medium to record a musical manifestation.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>CD</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Medium"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Composer">
+    <mo:level>2</mo:level>
+    <rdfs:label>composer</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <owl:equivalentClass>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="../../NET/c4dm/event.owl#isAgentIn"/>
+        <owl:someValuesFrom rdf:resource="Composition"/>
+      </owl:Restriction>
+    </owl:equivalentClass>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Composition">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        A composition event.
+        Takes as agent the composer himself.
+        It produces a MusicalWork, or a MusicalExpression (when the initial "product" is a score, for example), or both...
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>composition</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../NET/c4dm/event.owl#Event"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Conductor">
+    <mo:level>2</mo:level>
+    <rdfs:label>conductor</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <owl:equivalentClass>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="conducted"/>
+        <owl:someValuesFrom rdf:resource="Performance"/>
+      </owl:Restriction>
+    </owl:equivalentClass>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="CorporateBody">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Organization or group of individuals and/or other organizations involved in the music market.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>corporate body</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Organization"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="DAT">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Digital Audio Tape used as medium to record a musical manifestation.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>DAT</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Medium"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="DCC">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Digital Compact Cassette used as medium to record a musical manifestation.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>DCC</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Medium"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="DVDA">
+    <mo:level>1</mo:level>
+    <rdfs:comment>DVD-Audio used as medium to record a musical manifestation.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>DVDA</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Medium"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="DigitalSignal">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        A digital signal
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>digital signal</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Signal"/>
+    <owl:disjointWith rdf:resource="AnalogSignal"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="ED2K">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Something available on the E-Donkey peer-2-peer filesharing network</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>ED2K</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Medium"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Festival">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        A festival - musical/artistic event lasting several days, like Glastonbury, Rock Am Ring...
+        We migth decompose this event (which is in fact just a classification of the space/time region related to 
+        a particular festival) using hasSubEvent in several performances at different space/time.
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>Festival</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../NET/c4dm/event.owl#Event"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Genre">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        An expressive style of music.
+        
+        Any taxonomy can be plug-in here. You can either define a genre by yourself, like this:
+
+        :mygenre a mo:Genre; dc:title "electro rock".
+
+        Or you can refer to a DBPedia genre (such as http://dbpedia.org/resource/Baroque_music), allowing semantic web
+        clients to access easily really detailed structured information about the genre you are refering to.
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>Genre</rdfs:label>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Instrument">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Any of various devices or contrivances that can be used to produce musical tones or sound.
+        
+        Any taxonomy can be used to subsume this concept. The default one is one extracted by Ivan Herman
+        from the Musicbrainz instrument taxonomy, conforming to SKOS. This concept holds a seeAlso link 
+        towards this taxonomy.
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>Instrument</rdfs:label>
+    <rdfs:seeAlso rdf:resource="mit#"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Instrumentation">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Instrumentation deals with the techniques of writing music for a specific instrument, 
+        including the limitations of the instrument, playing techniques and idiomatic handling of the instrument.
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>instrumentation</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Arrangement"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Label">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Trade name of a company that produces musical works or expression of musical works.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>label</rdfs:label>
+    <rdfs:subClassOf rdf:resource="CorporateBody"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Libretto">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+                Libretto
+        </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>libretto</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicalExpression"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Listener">
+    <mo:level>2</mo:level>
+    <rdfs:label>listened</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <owl:equivalentClass>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="listened"/>
+        <owl:someValuesFrom rdf:resource="Performance"/>
+      </owl:Restriction>
+    </owl:equivalentClass>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Lyrics">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Lyrics
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>lyrics</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicalExpression"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="MD">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Mini Disc used as medium to record a musical manifestation.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>MD</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Medium"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="MagneticTape">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Magnetic analogue tape used as medium to record a musical manifestation.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>MagneticTape</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Medium"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Medium">
+    <mo:level>1</mo:level>
+    <rdfs:comment>A means or instrumentality for storing or communicating musical manifestation.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>Medium</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicalItem"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Membership">
+    <mo:level>1</mo:level>
+    <rdfs:comment>A membership event, where one or several people belongs to a group during a particular time period.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>membership</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../NET/c4dm/event.owl#Event"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Movement">
+    <mo:level>2</mo:level>
+    <rdfs:comment>A movement is a self-contained part of a musical work. While individual or selected movements from a composition are sometimes performed separately, a performance of the complete work requires all the movements to be performed in succession.
+
+Often a composer attempts to interrelate the movements thematically, or sometimes in more subtle ways, in order that the individual
+movements exert a cumulative effect. In some forms, composers sometimes link the movements, or ask for them to be played without a
+pause between them.
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>movement</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicalWork"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="MusicArtist">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        A person or a group of people (or a computer :-) ), whose musical 
+        creative work shows sensitivity and imagination 
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>music artist</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="MusicGroup">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Group of musicians, or musical ensemble, usually popular or folk, playing parts of or improvising off of a musical arrangement. </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>music group</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicArtist"/>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Group"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="MusicalExpression">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+The intellectual or artistic realization of a work in the form of alpha-numeric, musical, or choreographic notation, sound, etc., or any combination of such forms.    
+
+
+For example:
+
+Work #1 Franz Schubert's Trout quintet
+
+    * Expression #1 the composer's score
+    * Expression #2 sound issued from the performance by the Amadeus Quartet and Hephzibah Menuhin on piano
+    * Expression #3 sound issued from the performance by the Cleveland Quartet and Yo-Yo Ma on the cello
+    * . . . . 
+
+The Music Ontology defines the following sub-concepts of a MusicalExpression, which should be used instead of MusicalExpression itself: Score (the
+result of an arrangement), Sound (produced during a performance), Signal. However, it is possible to stick to FRBR and bypass the worflow
+mechanism this ontology defines by using the core FRBR properties on such objects. But it is often better to use events to interconnect such 
+expressions (allowing to go deeply into the production process - `this performer was playing this particular instrument at that
+particular time').
+    
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>musical expression</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../vocab/frbr/core#Expression"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="MusicalItem">
+    <mo:level>1</mo:level>
+    <rdfs:comment>A single exemplar of a musical expression.
+    
+For example, it could be a single exemplar of a CD. This is normally an single object (a CD) possessed by somebody.
+
+From the FRBR final report: The entity defined as item is a concrete entity. It is in many instances a single physical object (e.g., a copy of a one-volume monograph, a single audio cassette, etc.). There are instances, however, where the entity defined as item comprises more than one physical object (e.g., a monograph issued as two separately bound volumes, a recording issued on three separate compact discs, etc.).
+
+In terms of intellectual content and physical form, an item exemplifying a manifestation is normally the same as the manifestation itself. However, variations may occur from one item to another, even when the items exemplify the same manifestation, where those variations are the result of actions external to the intent of the producer of the manifestation (e.g., damage occurring after the item was produced, binding performed by a library, etc.). 
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>MusicalItem</rdfs:label>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="MusicalManifestation">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+
+This entity is related to the edition/production/publication of a musical expression (musical manifestation are closely related with the music industry (their terms, concepts, definitions, methods (production, publication, etc.), etc.)
+    
+From the FRBR final report: The entity defined as manifestation encompasses a wide range of materials, including manuscripts, books, periodicals, maps, posters, sound recordings, films, video recordings, CD-ROMs, multimedia kits, etc. As an entity, manifestation represents all the physical objects that bear the same characteristics, in respect to both intellectual content and physical form.
+
+
+Work #1 J. S. Bach's Six suites for unaccompanied cello
+
+    * Expression #1 sound issued during the performance by Janos Starker recorded in 1963 and 1965
+          o Manifestation #1 recordings released on 33 1/3 rpm sound discs in 1965 by Mercury
+          o Manifestation #2 recordings re-released on compact disc in 1991 by Mercury 
+    * Expression #2 sound issued during the performances by Yo-Yo Ma recorded in 1983
+          o Manifestation #1 recordings released on 33 1/3 rpm sound discs in 1983 by CBS Records
+          o Manifestation #2 recordings re-released on compact disc in 1992 by CBS Records 
+
+          
+Changes that occur deliberately or even inadvertently in the production process that affect the copies result, strictly speaking, in a new manifestation. A manifestation resulting from such a change may be identified as a particular "state" or "issue" of the publication.
+
+Changes that occur to an individual copy after the production process is complete (e.g., the loss of a page, rebinding, etc.) are not considered to result in a new manifestation. That copy is simply considered to be an exemplar (or item) of the manifestation that deviates from the copy as produced.
+
+With the entity defined as manifestation we can describe the physical characteristics of a set of items and the characteristics associated with the production and distribution of that set of items that may be important factors in enabling users to choose a manifestation appropriate to their physical needs and constraints, and to identify and acquire a copy of that manifestation.
+
+Defining manifestation as an entity also enables us to draw relationships between specific manifestations of a work. We can use the relationships between manifestations to identify, for example, the specific publication that was used to create a microreproduction.          
+
+</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>musical manifestation</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../vocab/frbr/core#Manifestation"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="MusicalWork">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+    Distinct intellectual or artistic musical creation.
+    
+From the FRBR final report: A work is an abstract entity; there is no single material object one can point to as the work. We recognize the work through individual realizations or expressions of the work, but the work itself exists only in the commonality of
+content between and among the various expressions of the work. When we speak of Homer's Iliad as a work, our point of reference is not a particular recitation or text of the work, but the intellectual creation that lies behind all the various expressions of the work.     
+
+For example:
+
+work #1 J. S. Bach's The art of the fugue
+
+    
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>musical work</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../vocab/frbr/core#Work"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Orchestration">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+            Orchestration includes, in addition to instrumentation, the handling of groups of instruments and their balance and interaction.
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>orchestration</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Arrangement"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Performance">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        A performance event. 
+        It might include as agents performers, engineers, conductors, or even listeners.
+        It might include as factors a score, a MusicalWork, musical instruments. 
+        It might produce a sound:-)
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>performance</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../NET/c4dm/event.owl#Event"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Performer">
+    <mo:level>2</mo:level>
+    <rdfs:label>performer</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <owl:equivalentClass>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="performed"/>
+        <owl:someValuesFrom rdf:resource="Performance"/>
+      </owl:Restriction>
+    </owl:equivalentClass>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="PublishedLibretto">
+    <mo:level>2</mo:level>
+    <rdfs:comment>A published libretto</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>published libretto</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicalManifestation"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="PublishedLyrics">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Published lyrics, as a book or as a text file, for example</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>published lyrics</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicalManifestation"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="PublishedScore">
+    <mo:level>2</mo:level>
+    <rdfs:comment>A published score (subclass of MusicalManifestation)</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>published score</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicalManifestation"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Record">
+    <mo:level>1</mo:level>
+    <rdfs:comment>A published record (manifestation which first aim is to render the product of a recording)</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>record</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicalManifestation"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Recording">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        A recording event.
+        Takes a sound as a factor to produce a signal (analog or digital).
+        The location of such events (if any) is the actual location of the corresponding
+        microphone or the "recording device".
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>recording</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../NET/c4dm/event.owl#Event"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="RecordingSession">
+    <mo:level>2</mo:level>
+    <rdfs:comment>A set of performances/recordings/mastering events. This event can be decomposed in its constituent events using event:sub_event</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>recording session</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../NET/c4dm/event.owl#Event"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Release">
+    <mo:level>1</mo:level>
+    <rdfs:comment>A specific release, with barcode, box, liner notes, cover art, and a number of records</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>release</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicalManifestation"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="ReleaseEvent">
+    <mo:level>1</mo:level>
+    <rdfs:comment>A release event, in a particular place (e.g. a country) at a particular time. Other factors of this event might include cover art, liner notes, box, etc. or a release grouping all these.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>release event</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../NET/c4dm/event.owl#Event"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="ReleaseStatus">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Musical manifestation release status.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>release status</rdfs:label>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="ReleaseType">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        Release type of a particular manifestation, such as "album" or "interview"...
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>Release type</rdfs:label>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="SACD">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Super Audio Compact Disc used as medium to record a musical manifestation.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>SACD</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Medium"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Score">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Here, we are dealing with the informational object (the MusicalExpression), not the actually "published" score.
+        This may be, for example, the product of an arrangement process.
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>score</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicalExpression"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Show">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        A show - a musical event lasting several days, in a particular venue. Examples can be
+        "The Magic Flute" at the Opera Bastille, August 2005, or a musical in the west end...
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>Show</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../NET/c4dm/event.owl#Event"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Signal">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        A subclass of MusicalExpression, representing a signal, for example a master signal produced by a performance and a recording.
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>signal</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicalExpression"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="SignalGroup">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        A musical expression representing a group of signals, for example a set of masters resulting from a whole recording/mastering session.
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>signal group</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicalExpression"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="SoloMusicArtist">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Single person whose musical creative work shows sensitivity and imagination.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>solo music artist</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicArtist"/>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Person"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Sound">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        A subclass of MusicalExpression, representing a sound. Realisation of a MusicalWork during a musical Performance.
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>sound</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../NET/c4dm/event.owl#Event"/>
+    <rdfs:subClassOf rdf:resource="MusicalExpression"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="SoundEngineer">
+    <mo:level>2</mo:level>
+    <rdfs:label>sound engineer</rdfs:label>
+    <rdfs:subClassOf rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <owl:equivalentClass>
+      <owl:Restriction>
+        <owl:onProperty rdf:resource="engineered"/>
+        <owl:someValuesFrom rdf:resource="Performance"/>
+      </owl:Restriction>
+    </owl:equivalentClass>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Stream">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Transmission over a network  used as medium to broadcast a musical manifestation</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>Stream</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Medium"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Torrent">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Something available on the Bittorrent peer-2-peer filesharing network</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>Torrent</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Medium"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Track">
+    <mo:level>1</mo:level>
+    <rdfs:comment>A track on a particular record</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>track</rdfs:label>
+    <rdfs:subClassOf rdf:resource="MusicalManifestation"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Transcription">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Transcription event</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>transcription</rdfs:label>
+    <rdfs:subClassOf rdf:resource="../../NET/c4dm/event.owl#Event"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:Class>
+  <owl:Class rdf:about="Vinyl">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Vinyl used as medium to record a musical manifestation</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>Vinyl</rdfs:label>
+    <rdfs:subClassOf rdf:resource="Medium"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:Class>
+  <owl:ObjectProperty rdf:about="activity">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Relates an artist to an activity period</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicArtist"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>activity</rdfs:label>
+    <rdfs:range rdf:resource="Activity"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="activity_end">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Relates an artist to a date at which its activity ended</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicArtist"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>activity end</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="activity_start">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Relates an artist to a date at which its activity started</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicArtist"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>activity start</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#date"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <mo:ReleaseType rdf:about="album">
+    <dc:description>
+        One or more track issued together.
+            This is a type of MusicalManifestation defined by the musical industry.
+    </dc:description>
+    <dc:title>album</dc:title>
+    <mo:level>1</mo:level>
+    <rdfs:isDefinedBy rdf:resource=""/>
+  </mo:ReleaseType>
+  <owl:ObjectProperty rdf:about="amazon_asin">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to link a work or the expression of a work to its corresponding Amazon ASINs page.</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="../../vocab/frbr/core#Work"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="../../vocab/frbr/core#Expression"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="../../vocab/frbr/core#Manifestation"/>
+                    <rdf:rest>
+                      <rdf:Description>
+                        <rdf:first rdf:resource="../../vocab/frbr/core#Item"/>
+                        <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                      </rdf:Description>
+                    </rdf:rest>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>amazon_asin</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="arranged_in">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Associates a work to an arrangement event where it was arranged
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalWork"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>arranged in</rdfs:label>
+    <rdfs:range rdf:resource="Arrangement"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#isFactorOf"/>
+    <owl:inverseOf rdf:resource="arrangement_of"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="arrangement_of">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+                Associates an arrangement event to a work
+        </rdfs:comment>
+    <rdfs:domain rdf:resource="Arrangement"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>arrangement of</rdfs:label>
+    <rdfs:range rdf:resource="MusicalWork"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#factor"/>
+    <owl:inverseOf rdf:resource="arranged_in"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="artist">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Relates a membership event with the corresponding artist</rdfs:comment>
+    <rdfs:domain rdf:resource="Membership"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>artist</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <mo:ReleaseType rdf:about="audiobook">
+    <dc:description>
+        Book read by a narrator without music.
+        This is a type of MusicalManifestation defined by the musical industry.
+    </dc:description>
+    <dc:title>audio book</dc:title>
+    <mo:level>1</mo:level>
+    <rdfs:isDefinedBy rdf:resource=""/>
+  </mo:ReleaseType>
+  <owl:ObjectProperty rdf:about="availableAs">
+    <owl:equivalentProperty rdf:resource="available_as"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="available_as">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        Relates a musical manifestation to a musical item (this album, and my particular cd). By using
+        this property, there is no assumption on wether the full content is available on the linked item.
+        To be explicit about this, you can use a sub-property, such as mo:item (the full manifestation
+        is available on that item) or mo:preview (only a part of the manifestation is available on
+        that item).
+
+        This is a subproperty of frbr:examplar.
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="MusicalItem"/>
+    <rdfs:subPropertyOf rdf:resource="../../vocab/frbr/core#exemplar"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="biography">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to link an artist to their online biography.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicArtist"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>biography</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:FunctionalProperty rdf:about="bitsPerSample">
+    <mo:level>1</mo:level>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:comment>
+        Associates a digital signal to the number a bits used to encode one sample. Range is xsd:int.
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="DigitalSignal"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:FunctionalProperty>
+  <mo:ReleaseStatus rdf:about="bootleg">
+    <dc:description>An unofficial/underground musical work or the expression of a musical work that was not sanctioned by the artist and/or the corporate body. </dc:description>
+    <dc:title>bootleg</dc:title>
+    <mo:level>1</mo:level>
+    <rdfs:isDefinedBy rdf:resource=""/>
+  </mo:ReleaseStatus>
+  <owl:DatatypeProperty rdf:about="bpm">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Indicates the BPM of a MusicalWork or a particular Performance 
+        Beats per minute: the pace of music measured by the number of beats occurring in 60 seconds.
+    </rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="MusicalWork"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="Performance"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="Signal"/>
+                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>bpm</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="catalogue_number">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Links a release with the corresponding catalogue number</rdfs:comment>
+    <rdfs:domain rdf:resource="Release"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>catalogue number</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:subPropertyOf rdf:resource="uuid"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:FunctionalProperty rdf:about="channels">
+    <mo:level>1</mo:level>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:comment>
+        Associates a signal to the number of channels it holds (mono --&gt; 1, stereo --&gt; 2). Range is xsd:int.
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="Signal"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:FunctionalProperty>
+  <owl:SymmetricProperty rdf:about="collaborated_with">
+    <mo:level>1</mo:level>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:comment>Used to relate two collaborating people on a work.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>collaborated_with</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:SymmetricProperty>
+  <mo:ReleaseType rdf:about="compilation">
+    <dc:description>
+        Collection of previously released manifestations of a musical expression by one or more artists.
+        This is a type of MusicalManifestation defined by the musical industry.
+    </dc:description>
+    <dc:title>compilation</dc:title>
+    <mo:level>1</mo:level>
+    <rdfs:isDefinedBy rdf:resource=""/>
+  </mo:ReleaseType>
+  <owl:ObjectProperty rdf:about="compilation_of">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Indicates that a musical manifestation is a compilation of several Signals.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>compilation_of</rdfs:label>
+    <rdfs:range rdf:resource="Signal"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="compiled">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate an person or a group of person who compiled the manifestation of a musical work.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicArtist"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>compiled</rdfs:label>
+    <rdfs:range rdf:resource="MusicalManifestation"/>
+    <owl:inverseOf rdf:resource="compiler"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="compiler">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate the manifestation of a musical work to a person or a group of person who compiled it.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>compiler</rdfs:label>
+    <rdfs:range rdf:resource="MusicArtist"/>
+    <owl:inverseOf rdf:resource="compiled"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="composed_in">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Associates a MusicalWork to the Composition event pertaining
+        to its creation. For example, I might use this property to associate
+        the Magic Flute to its composition event, occuring during 1782 and having as
+        a mo:composer Mozart.
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalWork"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>composed in</rdfs:label>
+    <rdfs:range rdf:resource="Composition"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#producedIn"/>
+    <owl:inverseOf rdf:resource="produced_work"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="composer">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Associates a composition event to the actual composer. For example,
+        this property could link the event corresponding to the composition of the
+        Magic Flute in 1782 to Mozart himself (who obviously has a FOAF profile:-) ).
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="Composition"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>composer</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#agent"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="conducted">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Relates agents to the performances they were conducting</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>conducted</rdfs:label>
+    <rdfs:range rdf:resource="Performance"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#isAgentIn"/>
+    <rdfs:subPropertyOf rdf:resource="../../vocab/bio/0.1/event"/>
+    <owl:inverseOf rdf:resource="conductor"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="conductor">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Relates a performance to the conductor involved</rdfs:comment>
+    <rdfs:domain rdf:resource="Performance"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#agent"/>
+    <owl:inverseOf rdf:resource="conducted"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="contains_sample_from">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        Relates a signal to another signal, which has been sampled.
+        </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>contains_sample_from</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="derived_from"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="derived_from">
+    <mo:level>1</mo:level>
+    <rdfs:comment>A related signal from which the described signal is derived.</rdfs:comment>
+    <rdfs:domain rdf:resource="Signal"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>derived from</rdfs:label>
+    <rdfs:range rdf:resource="Signal"/>
+    <rdfs:subPropertyOf rdf:resource="../../dc/terms/source"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="discography">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to links an artist to an online discography of their musical works. The discography should provide a summary of each released musical work of the artist.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicArtist"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>discography</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="discogs">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to link a musical work or the expression of a musical work, an artist or a corporate body to to its corresponding Discogs page.</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="MusicalWork"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="MusicalExpression"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="MusicalManifestation"/>
+                    <rdf:rest>
+                      <rdf:Description>
+                        <rdf:first rdf:resource="MusicArtist"/>
+                        <rdf:rest>
+                          <rdf:Description>
+                            <rdf:first rdf:resource="CorporateBody"/>
+                            <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                          </rdf:Description>
+                        </rdf:rest>
+                      </rdf:Description>
+                    </rdf:rest>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>discogs</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="djmix_of">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Indicates that all (or most of) the tracks of a musical work or the expression of a musical work were mixed together from all (or most of) the tracks from another musical work or the expression of a musical work to form a so called DJ-Mix. 
+    
+The tracks might have been altered by pitching (so that the tempo of one track matches the tempo of the following track) and fading (so that one track blends in smoothly with the other). If the tracks have been more substantially altered, the "mo:remix" relationship type is more appropriate. </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>djmix_of</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="derived_from"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="djmixed">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate an artist who djmixed a musical work or the expression of a musical work. 
+    
+The artist usually selected the tracks, chose their sequence, and slightly changed them by fading (so that one track blends in smoothly with the other) or pitching (so that the tempo of one track matches the tempo of the following track). This applies to a 'Mixtape' in which all tracks were DJ-mixed together into one single long track. </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicArtist"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>djmixed</rdfs:label>
+    <rdfs:range rdf:resource="Signal"/>
+    <owl:inverseOf rdf:resource="djmixed_by"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="djmixed_by">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate a work or the expression of a work to an artist who djmixed it. 
+    
+The artist usually selected the tracks, chose their sequence, and slightly changed them by fading (so that one track blends in smoothly with the other) or pitching (so that the tempo of one track matches the tempo of the following track). This applies to a 'Mixtape' in which all tracks were DJ-mixed together into one single long track. </rdfs:comment>
+    <rdfs:domain rdf:resource="Signal"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>djmixed_by</rdfs:label>
+    <rdfs:range rdf:resource="MusicArtist"/>
+    <owl:inverseOf rdf:resource="djmixed"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="download">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+                This property can be used to link from a person to the website where they make their works available, or from
+                a manifestation (a track or an album, for example) to a web page where it is available for
+                download.
+        
+        It is better to use one of the three sub-properties instead of this one in order to specify wether the
+        content can be accessed for free (mo:freedownload), if it is just free preview material (mo:previewdownload), or
+        if it can be accessed for some money (mo:paiddownload) (this includes links to the Amazon store, for example).
+
+                This property MUST be used only if the content is just available through a web page (holding, for example
+                a Flash application) - it is better to link to actual content directly through the use of mo:available_as and
+                mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even
+                less to rip streams from Flash applications can still access the audio content.
+        </rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="../../vocab/frbr/core#Manifestation"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="CorporateBody"/>
+                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>download</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="duration">
+    <mo:level>1</mo:level>
+    <rdfs:comment>The duration of a track or a signal in ms</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="Track"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="Signal"/>
+                <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="ean">
+    <mo:level>1</mo:level>
+    <rdfs:comment>The European Article Number (EAN) is a universal identifier for products, commonly printed in form of barcodes on them. The numbers represented by those codes can either be 8 or 13 digits long, with the 13-digit-version being most common. EANs form a superset of the North American Universal Product Code (UPC) as every UPC can be made an EAN by adding a leading zero to it. Additionally every EAN is also a Japanese Article Number (JAN). The identifiers were formerly assigned by EAN International which merged with Uniform Code Council (UCC, the guys behind the UPCs) and Electronic Commerce Council of Canada (ECCC) to become GS1. </rdfs:comment>
+    <rdfs:domain rdf:resource="Release"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>ean</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:subPropertyOf rdf:resource="gtin"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="encodes">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        Relates a MusicalItem (a track on a particular CD, an audio file, a stream somewhere) to the signal it encodes.
+
+        This is usually a lower-resolution version of the master signal (issued from a Recording event).
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalItem"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>encodes</rdfs:label>
+    <rdfs:range rdf:resource="Signal"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="encoding">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Method used to convert analog electronic signals into digital format such as "MP3 CBR @ 128kbps", "OGG @ 160kbps", "FLAC", etc.</rdfs:comment>
+    <rdfs:domain rdf:resource="AudioFile"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>encoding</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="engineer">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Relates a performance or a recording to the engineer involved</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="Performance"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="Recording"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="RecordingSession"/>
+                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#agent"/>
+    <owl:inverseOf rdf:resource="engineered"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="engineered">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Relates agents to the performances/recordings they were engineering in</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>engineered</rdfs:label>
+    <rdfs:range>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="Performance"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="Recording"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="RecordingSession"/>
+                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:range>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#isAgentIn"/>
+    <rdfs:subPropertyOf rdf:resource="../../vocab/bio/0.1/event"/>
+    <owl:inverseOf rdf:resource="engineer"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <mo:ReleaseType rdf:about="ep">
+    <dc:description>
+            An EP
+    </dc:description>
+    <dc:title>ep</dc:title>
+    <mo:level>1</mo:level>
+    <rdfs:isDefinedBy rdf:resource=""/>
+  </mo:ReleaseType>
+  <owl:ObjectProperty rdf:about="eventHomePage">
+    <owl:equivalentProperty rdf:resource="event_homepage"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="event_homepage">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Links a particular event to a web page</rdfs:comment>
+    <rdfs:domain rdf:resource="../../NET/c4dm/event.owl#Event"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>event homepage</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="exchange_item">
+    <mo:level>1</mo:level>
+    <rdfs:comment>A person, a group of person or an organization exchanging an exemplar of a single manifestation.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>exchange_item</rdfs:label>
+    <rdfs:range rdf:resource="../../vocab/frbr/core#Item"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="fanpage">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to link an artist to a fan-created webpage devoted to that artist.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicArtist"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>fanpage</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="free_download">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        This property can be used to link from a person to the website where they make their works available, or from
+        a manifestation (a track or an album, for example) to a web page where it is available for free 
+        download.
+
+        This property MUST be used only if the content is just available through a web page (holding, for example
+        a Flash application) - it is better to link to actual content directly through the use of mo:available_as and 
+        mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even
+        less to rip streams from Flash applications can still access the audio content.
+    </rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="../../vocab/frbr/core#Manifestation"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="CorporateBody"/>
+                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>free download</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="download"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="freedownload">
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <owl:equivalentProperty rdf:resource="free_download"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="genre">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Associates an event (like a performance or a recording) to a particular musical genre.
+        Further version of this property may also include works and scores in the domain.
+    </rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="Performance"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="Arrangement"/>
+                    <rdf:rest>
+                      <rdf:Description>
+                        <rdf:first rdf:resource="Composition"/>
+                        <rdf:rest>
+                          <rdf:Description>
+                            <rdf:first rdf:resource="Recording"/>
+                            <rdf:rest>
+                              <rdf:Description>
+                                <rdf:first rdf:resource="RecordingSession"/>
+                                <rdf:rest>
+                                  <rdf:Description>
+                                    <rdf:first rdf:resource="MusicalWork"/>
+                                    <rdf:rest>
+                                      <rdf:Description>
+                                        <rdf:first rdf:resource="MusicalExpression"/>
+                                        <rdf:rest>
+                                          <rdf:Description>
+                                            <rdf:first rdf:resource="MusicalManifestation"/>
+                                            <rdf:rest>
+                                              <rdf:Description>
+                                                <rdf:first rdf:resource="MusicalItem"/>
+                                                <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                                              </rdf:Description>
+                                            </rdf:rest>
+                                          </rdf:Description>
+                                        </rdf:rest>
+                                      </rdf:Description>
+                                    </rdf:rest>
+                                  </rdf:Description>
+                                </rdf:rest>
+                              </rdf:Description>
+                            </rdf:rest>
+                          </rdf:Description>
+                        </rdf:rest>
+                      </rdf:Description>
+                    </rdf:rest>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>genre</rdfs:label>
+    <rdfs:range rdf:resource="Genre"/>
+    <rdfs:subPropertyOf rdf:resource="../ao/core#genre"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="grid">
+    <mo:level>1</mo:level>
+    <rdfs:comment>The Global Release Identifier (GRid) is a system for uniquely identifying Releases of music over electronic networks (that is, online stores where you can buy music as digital files). As that it can be seen as the equivalent of the BarCode (or more correctly the GTIN) as found on physical releases of music. Like the ISRC (a code for identifying single recordings as found on releases) it was developed by the IFPI but it does not appear to be a standard of the ISO.</rdfs:comment>
+    <rdfs:domain rdf:resource="Release"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>GRid</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:subPropertyOf rdf:resource="uuid"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="group">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Relates a membership event with the corresponding group</rdfs:comment>
+    <rdfs:domain rdf:resource="Membership"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>group</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Group"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="gtin">
+    <mo:level>1</mo:level>
+    <rdfs:comment>GTIN is a grouping term for EANs and UPCs. In common speech those are called barcodes although the barcodes are just a representation of those identifying numbers.</rdfs:comment>
+    <rdfs:domain rdf:resource="Release"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>gtin</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="has_track">
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <owl:equivalentProperty rdf:resource="track"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="headliner">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Relates a performance to the headliner(s) involved</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>headliner</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="performer"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="homepage">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Links an artist, a record, etc. to a corresponding web page</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="MusicalWork"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="MusicArtist"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="MusicalExpression"/>
+                    <rdf:rest>
+                      <rdf:Description>
+                        <rdf:first rdf:resource="MusicalManifestation"/>
+                        <rdf:rest>
+                          <rdf:Description>
+                            <rdf:first rdf:resource="MusicalItem"/>
+                            <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                          </rdf:Description>
+                        </rdf:rest>
+                      </rdf:Description>
+                    </rdf:rest>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>homepage</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="image">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Indicates a pictorial image (JPEG, GIF, PNG, Etc.) of a musical work, the expression of a musical work, the manifestation of a work or the examplar of a manifestation.</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="MusicalWork"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="MusicArtist"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="MusicalExpression"/>
+                    <rdf:rest>
+                      <rdf:Description>
+                        <rdf:first rdf:resource="MusicalManifestation"/>
+                        <rdf:rest>
+                          <rdf:Description>
+                            <rdf:first rdf:resource="MusicalItem"/>
+                            <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                          </rdf:Description>
+                        </rdf:rest>
+                      </rdf:Description>
+                    </rdf:rest>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>image</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Image"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/depiction"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="imdb">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to link an artist, a musical work or the expression of a musical work to their equivalent page on IMDb, the InternetMovieDatabase.</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="MusicalWork"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="MusicalExpression"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="MusicalManifestation"/>
+                    <rdf:rest>
+                      <rdf:Description>
+                        <rdf:first rdf:resource="MusicArtist"/>
+                        <rdf:rest>
+                          <rdf:Description>
+                            <rdf:first rdf:resource="CorporateBody"/>
+                            <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                          </rdf:Description>
+                        </rdf:rest>
+                      </rdf:Description>
+                    </rdf:rest>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>imdb</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="instrument">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Relates a performance to a musical instrument involved</rdfs:comment>
+    <rdfs:domain rdf:resource="Performance"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="Instrument"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#factor"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="interpreter">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Adds an involved music artist, who interpreted, remixed, or otherwise modified an existing signal, which resulted in the signal that is here the subject of this relation.</rdfs:comment>
+    <rdfs:domain rdf:resource="Signal"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>has interpeter</rdfs:label>
+    <rdfs:range rdf:resource="MusicArtist"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <mo:ReleaseType rdf:about="interview">
+    <dc:description>
+        Recording of the questioning of a person.
+        This is a type of MusicalManifestation defined by the musical industry.
+    </dc:description>
+    <dc:title>interview</dc:title>
+    <mo:level>1</mo:level>
+    <rdfs:isDefinedBy rdf:resource=""/>
+  </mo:ReleaseType>
+  <owl:DatatypeProperty rdf:about="ipi">
+    <mo:level>1</mo:level>
+    <rdfs:comment>The Interested Parties Information Code (IPI) is an ISO standard similar to ISBNs for identifying the people or groups with some involvement with a particular musical work / compositions.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicArtist"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>ipi</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:subPropertyOf rdf:resource="uuid"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="ismn">
+    <mo:level>1</mo:level>
+    <rdfs:comment>The International Standard Music Number (ISMN) is an ISO standard similar to ISBNs for identifying printed music publications</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="PublishedLyrics"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="PublishedLibretto"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="PublishedScore"/>
+                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>ismn</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:subPropertyOf rdf:resource="uuid"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="isrc">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+    The ISRC (International Standard Recording Code) is the international identification system for sound recordings and music videorecordings. 
+    Each ISRC is a unique and permanent identifier for a specific recording which can be permanently encoded into a product as its digital fingerprint. 
+    Encoded ISRC provide the means to automatically identify recordings for royalty payments.
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="Signal"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>isrc</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:subPropertyOf rdf:resource="uuid"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="iswc">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Links a musical work to the corresponding ISWC number</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalWork"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>iswc</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:subPropertyOf rdf:resource="uuid"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="item">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+                Relates a musical manifestation to a musical item (this album, and my particular cd) holding the
+                entire manifestation, and not just a part of it.
+        </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="MusicalItem"/>
+    <rdfs:subPropertyOf rdf:resource="available_as"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="key">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Indicated the key used by the musicians during a performance, or the key of a MusicalWork.
+        Any of 24 major or minor diatonic scales that provide the tonal framework for a piece of music.</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="MusicalWork"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="Performance"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="Signal"/>
+                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>key</rdfs:label>
+    <rdfs:range rdf:resource="../../NET/c4dm/keys.owl#Key"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="label">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Associates a release event with the label releasing the record</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="Release"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="MusicArtist"/>
+                <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>label</rdfs:label>
+    <rdfs:range rdf:resource="Label"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="lc">
+    <mo:level>1</mo:level>
+    <rdfs:comment>The Label Code (LC) was introduced in 1977 by the IFPI (International Federation of Phonogram and Videogram Industries) in order to unmistakably identify the different record labels (see Introduction, Record labels) for rights purposes. The Label Code consists historically of 4 figures, presently being extended to 5 figures, preceded by LC and a dash (e.g. LC-0193 = Electrola; LC-0233 = His Master's Voice). Note that the number of countries using the LC is limited, and that the code given on the item is not always accurate.</rdfs:comment>
+    <rdfs:domain rdf:resource="Label"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>lc</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:subPropertyOf rdf:resource="uuid"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:AnnotationProperty rdf:about="level">
+    <rdfs:comment>
+        This annotation property associates to a particular Music Ontology term the corresponding
+        expressiveness level. These levels can be:
+
+            - 1: Only editorial/Musicbrainz type information
+            - 2: Workflow information
+            - 3: Even decomposition
+        
+        This property is mainly used for specification generation.
+    </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>level</rdfs:label>
+  </owl:AnnotationProperty>
+  <owl:ObjectProperty rdf:about="licence">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to link a work or the expression of a work to the license under which they can be manipulated (downloaded, modified, etc). 
+    
+This is usually used to link to a Creative Commons licence.</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="../../vocab/frbr/core#Work"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="../../vocab/frbr/core#Expression"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="../../vocab/frbr/core#Manifestation"/>
+                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>licence</rdfs:label>
+    <rdfs:range rdf:resource="http://web.resource.org/cc/License"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="listened">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Relates agents to the performances they were listening in</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>listened</rdfs:label>
+    <rdfs:range rdf:resource="Performance"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#isAgentIn"/>
+    <rdfs:subPropertyOf rdf:resource="../../vocab/bio/0.1/event"/>
+    <owl:inverseOf rdf:resource="listener"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="listener">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Relates a performance to the listener involved</rdfs:comment>
+    <rdfs:domain rdf:resource="Performance"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#agent"/>
+    <owl:inverseOf rdf:resource="listened"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <mo:ReleaseType rdf:about="live">
+    <dc:description>
+        A musical manifestation that was recorded live.
+        This is a type of MusicalManifestation defined by the musical industry.</dc:description>
+    <dc:title>live</dc:title>
+    <mo:level>1</mo:level>
+    <rdfs:isDefinedBy rdf:resource=""/>
+  </mo:ReleaseType>
+  <owl:ObjectProperty rdf:about="lyrics">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Associates lyrics with a musical work</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalWork"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>lyrics</rdfs:label>
+    <rdfs:range rdf:resource="Lyrics"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="mailorder">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to link a musical work or the expression of a musical work to a website where people can buy a copy of the musical manifestation.</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="../../vocab/frbr/core#Manifestation"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="MusicArtist"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="CorporateBody"/>
+                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>mailorder</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="mashup_of">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Indicates that musical works or the expressions of a musical work were mashed up on this album or track. 
+    
+This means that two musical works or the expressions of a musical work by different artists are mixed together, over each other, or otherwise combined into a single musical work (usually by a third artist, the remixer).</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>mashup_of</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="derived_from"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="media_type">
+    <mo:level>1</mo:level>
+    <rdfs:comment>The mediatype (file format or MIME type, or physical medium) of a musical manifestation, e.g. a MP3, CD or vinyl.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>has media type</rdfs:label>
+    <rdfs:range rdf:resource="../../dc/terms/MediaType"/>
+    <rdfs:subPropertyOf rdf:resource="../../dc/terms/format"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="medley_of">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Indicates that a musical expression is a medley of several other musical expressions. 
+    
+This means that the orignial musical expression were rearranged to create a new musical expression in the form of a medley. </rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>medley_of</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="derived_from"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="member">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        Indicates a member of a musical group
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicGroup"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>member</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/member"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="member_of">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Inverse of the foaf:member property</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>member_of</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Group"/>
+    <owl:inverseOf rdf:resource="http://xmlns.com/foaf/0.1/member"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="membership">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Relates an agent with related membership events</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>membership</rdfs:label>
+    <rdfs:range rdf:resource="Membership"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="meter">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Associates a musical work or a score with its meter</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="MusicalWork"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="Score"/>
+                <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>meter</rdfs:label>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="movement">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Indicates that a musical work has movements</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalWork"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>has_movement</rdfs:label>
+    <rdfs:range rdf:resource="Movement"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="movementNum">
+    <owl:equivalentProperty rdf:resource="movement_number"/>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="movement_number">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Indicates the position of a movement in a musical work.</rdfs:comment>
+    <rdfs:domain rdf:resource="Movement"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>movement number</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="musicbrainz">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        Linking an agent, a track or a record to its corresponding Musicbrainz page.
+        </rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="MusicalWork"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="MusicalManifestation"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+                    <rdf:rest>
+                      <rdf:Description>
+                        <rdf:first rdf:resource="Signal"/>
+                        <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                      </rdf:Description>
+                    </rdf:rest>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>musicbrainz</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="musicbrainz_guid">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Links an object to the corresponding Musicbrainz identifier</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="MusicArtist"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="Track"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="Record"/>
+                    <rdf:rest>
+                      <rdf:Description>
+                        <rdf:first rdf:resource="SignalGroup"/>
+                        <rdf:rest>
+                          <rdf:Description>
+                            <rdf:first rdf:resource="Signal"/>
+                            <rdf:rest>
+                              <rdf:Description>
+                                <rdf:first rdf:resource="ReleaseEvent"/>
+                                <rdf:rest>
+                                  <rdf:Description>
+                                    <rdf:first rdf:resource="Label"/>
+                                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                                  </rdf:Description>
+                                </rdf:rest>
+                              </rdf:Description>
+                            </rdf:rest>
+                          </rdf:Description>
+                        </rdf:rest>
+                      </rdf:Description>
+                    </rdf:rest>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>Musicbrainz GUID</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="uuid"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="musicmoz">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to link an artist, a musical work or the expression of a musical work to its corresponding MusicMoz page.</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="MusicArtist"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="MusicalWork"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="MusicalExpression"/>
+                    <rdf:rest>
+                      <rdf:Description>
+                        <rdf:first rdf:resource="MusicalManifestation"/>
+                        <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                      </rdf:Description>
+                    </rdf:rest>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>musicmoz</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="myspace">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to link a person to its corresponding MySpace page.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>myspace</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <mo:ReleaseStatus rdf:about="official">
+    <dc:description>Any musical work or the expression of a musical work officially sanctioned by the artist and/or their corporate body.</dc:description>
+    <dc:title>official</dc:title>
+    <mo:level>1</mo:level>
+    <rdfs:isDefinedBy rdf:resource=""/>
+  </mo:ReleaseStatus>
+  <owl:ObjectProperty rdf:about="olga">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to link a track to a tabulature file for track in the On-Line Guitar Archive.</rdfs:comment>
+    <rdfs:domain rdf:resource="Track"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>olga</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="onlinecommunity">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to link a person with an online community web page like a blog, a wiki, a forum, a livejournal page, Etc.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>onlinecommunity</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="opus">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Used to define a creative work, especially a musical composition numbered to designate the order of a composer's works.
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalWork"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>opus</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="origin">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Relates an artist to its geographic origin</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicArtist"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>origin</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:SymmetricProperty rdf:about="other_release_of">
+    <mo:level>1</mo:level>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:comment>Indicates that two musical manifestations are essentially the same.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>other_release_of</rdfs:label>
+    <rdfs:range rdf:resource="MusicalManifestation"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:SymmetricProperty>
+  <owl:ObjectProperty rdf:about="paid_download">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+                Provide a link from an artist to a web page where all of that artist's musical work is available for some money,
+                or a link from a manifestation (record/track, for example) to a web page providing a paid access to this manifestation.
+        </rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="../../vocab/frbr/core#Manifestation"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="MusicArtist"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="CorporateBody"/>
+                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>paid download</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="download"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="paiddownload">
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <owl:equivalentProperty rdf:resource="paid_download"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="performance_of">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Associates a Performance to a musical work or an arrangement that is being used as a factor in it.
+        For example, I might use this property to attach the Magic Flute musical work to 
+        a particular Performance.
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="Performance"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>performance of</rdfs:label>
+    <rdfs:range>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="Score"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="MusicalWork"/>
+                <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:range>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#factor"/>
+    <owl:inverseOf rdf:resource="performed_in"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="performed">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Relates agents to the performances they were performing in</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>performed</rdfs:label>
+    <rdfs:range rdf:resource="Performance"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#isAgentIn"/>
+    <rdfs:subPropertyOf rdf:resource="../../vocab/bio/0.1/event"/>
+    <owl:inverseOf rdf:resource="performer"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="performed_in">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Associates a Musical Work or an Score to Performances in which they were
+        a factor. For example, I might use this property in order to 
+        associate the Magic Flute to a particular performance at the Opera
+        Bastille last year.</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="Score"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="MusicalWork"/>
+                <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>performed in</rdfs:label>
+    <rdfs:range rdf:resource="Performance"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#isFactorOf"/>
+    <owl:inverseOf rdf:resource="performance_of"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="performer">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Relates a performance to the performers involved</rdfs:comment>
+    <rdfs:domain rdf:resource="Performance"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#agent"/>
+    <owl:inverseOf rdf:resource="performed"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="possess_item">
+    <mo:level>1</mo:level>
+    <rdfs:comment>A person, a group of person or an organization possessing an exemplar of a single manifestation.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>possess_item</rdfs:label>
+    <rdfs:range rdf:resource="../../vocab/frbr/core#Item"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="preview">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+                Relates a musical manifestation to a musical item (this album, and my particular cd), which holds
+                a preview of the manifestation (eg. one track for an album, or a snippet for a track)
+        </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="MusicalItem"/>
+    <rdfs:subPropertyOf rdf:resource="available_as"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="preview_download">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+                This property can be used to link from a person to the website where they make previews of their works available, or from
+                a manifestation (a track or an album, for example) to a web page where a preview download is available.
+
+                This property MUST be used only if the content is just available through a web page (holding, for example
+                a Flash application) - it is better to link to actual content directly through the use of mo:available_as and
+                mo:Stream, mo:Torrent or mo:ED2K, etc. Therefore, Semantic Web user agents that don't know how to read HTML and even
+                less to rip streams from Flash applications can still access the audio content.
+        </rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="../../vocab/frbr/core#Manifestation"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="CorporateBody"/>
+                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>preview download</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="download"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="primary_instrument">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Indicates that an artist primarily plays an instrument, or that a member was primarily playing a particular instrument during his membership</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="Membership"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+                <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>primary instrument</rdfs:label>
+    <rdfs:range rdf:resource="Instrument"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="produced">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate an person or a group of person who produced the manifestation of a work.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>produced</rdfs:label>
+    <rdfs:range rdf:resource="MusicalManifestation"/>
+    <owl:inverseOf rdf:resource="producer"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="produced_score">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Associates an arrangement or a composition event to a score product (score here does not refer to a published score, but more
+        an abstract arrangement of a particular work).
+    </rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="Composition"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="Arrangement"/>
+                <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>produced score</rdfs:label>
+    <rdfs:range rdf:resource="Score"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#product"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="produced_signal">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+                Associates a Recording to the outputted signal.
+        </rdfs:comment>
+    <rdfs:domain rdf:resource="Recording"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>produced signal</rdfs:label>
+    <rdfs:range rdf:resource="Signal"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#product"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="produced_signal_group">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Associates a recording session with a group of master signals produced by it.</rdfs:comment>
+    <rdfs:domain rdf:resource="RecordingSession"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>produced signal group</rdfs:label>
+    <rdfs:range rdf:resource="SignalGroup"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#product"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="produced_sound">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+                Associates a Performance to a physical Sound that is being produced by it.
+        </rdfs:comment>
+    <rdfs:domain rdf:resource="Performance"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>produced sound</rdfs:label>
+    <rdfs:range rdf:resource="Sound"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#product"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="produced_work">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+                Associates a composition event to the produced MusicalWork. For example,
+                this property could link the event corresponding to the composition of the
+                Magic Flute in 1782 to the Magic Flute musical work itself. This musical work
+                can then be used in particular performances.
+        </rdfs:comment>
+    <rdfs:domain rdf:resource="Composition"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>produced work</rdfs:label>
+    <rdfs:range rdf:resource="MusicalWork"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#product"/>
+    <owl:inverseOf rdf:resource="composed_in"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="producer">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate the manifestation of a work to a person or a group of person who produced it.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>producer</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <owl:inverseOf rdf:resource="produced"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="producesSignal">
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <owl:equivalentProperty rdf:resource="produced_signal"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="producesSound">
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <owl:equivalentProperty rdf:resource="produced_sound"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="producesWork">
+    <owl:equivalentProperty rdf:resource="produced_work"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="productOfComposition">
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <owl:equivalentProperty rdf:resource="composed_in"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <mo:ReleaseStatus rdf:about="promotion">
+    <dc:description>A giveaway musical work or the expression of a musical work intended to promote an upcoming official musical work or the expression of a musical work.</dc:description>
+    <dc:title>promotion</dc:title>
+    <mo:level>1</mo:level>
+    <rdfs:isDefinedBy rdf:resource=""/>
+  </mo:ReleaseStatus>
+  <owl:ObjectProperty rdf:about="publicationOf">
+    <owl:equivalentProperty rdf:resource="publication_of"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="publication_of">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Link a particular manifestation to the related signal, score, libretto, or lyrics</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>publication of</rdfs:label>
+    <rdfs:range rdf:resource="MusicalExpression"/>
+    <owl:inverseOf rdf:resource="published_as"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="published">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate an person or a group of person who published the manifestation of a work.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>published</rdfs:label>
+    <rdfs:range rdf:resource="MusicalManifestation"/>
+    <owl:inverseOf rdf:resource="publisher"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="publishedAs">
+    <owl:equivalentProperty rdf:resource="published_as"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="published_as">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        Links a musical expression (e.g. a signal or a score) to one of its manifestations (e.g. a track on a particular record or a published score).
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalExpression"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>published as</rdfs:label>
+    <rdfs:range rdf:resource="MusicalManifestation"/>
+    <rdfs:subPropertyOf rdf:resource="../../vocab/frbr/core#embodiment"/>
+    <owl:inverseOf rdf:resource="publication_of"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="publisher">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate a musical manifestation to a person or a group of person who published it.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>publisher</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <owl:inverseOf rdf:resource="published"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="publishingLocation">
+    <owl:equivalentProperty rdf:resource="publishing_location"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="publishing_location">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        Relates a musical manifestation to its publication location.
+        </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>publishingLocation</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2003/01/geo/wgs84_pos#SpatialThing"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="puid">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        Link a signal to the PUIDs associated with it, that is, PUID computed from MusicalItems (mo:AudioFile) 
+        derived from this signal.
+        PUIDs (Portable Unique IDentifier) are the IDs used in the 
+        proprietary MusicDNS AudioFingerprinting system which is operated by MusicIP.
+
+        Using PUIDs, one (with some luck) can identify the Signal object associated with a particular audio file, therefore allowing
+        to access further information (on which release this track is featured? etc.). Using some more metadata one can identify
+        the particular Track corresponding to the audio file (a track on a particular release).</rdfs:comment>
+    <rdfs:domain rdf:resource="Signal"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>puid</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="record">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Associates a release with the records it contains. A single release can be associated with multiple records, for example for a multi-disc release.</rdfs:comment>
+    <rdfs:domain rdf:resource="Release"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>released record</rdfs:label>
+    <rdfs:range rdf:resource="Record"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="record_count">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Associates a release with the number of records it contains, e.g. the number of discs it contains in the case of a multi-disc release.</rdfs:comment>
+    <rdfs:domain rdf:resource="Release"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>record count</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="record_number">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Indicates the position of a record in a release (e.g. a 2xLP, etc.).</rdfs:comment>
+    <rdfs:domain rdf:resource="Record"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>has record number</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="record_side">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Associates the side on a vinyl record, where a track is located, e.g. A, B, C, etc. This property can then also be used 
+in conjunction with mo:track_number, so that one can infer e.g. "A1", that means, track number 1 on side A.</rdfs:comment>
+    <rdfs:domain rdf:resource="Track"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>has record side</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="recordedAs">
+    <owl:equivalentProperty rdf:resource="recorded_as"/>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="recorded_as">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        This is a shortcut property, allowing to bypass all the Sound/Recording steps. This property
+        allows to directly link a Performance to the recorded Signal. This is recommended for "normal"
+        users. However, advanced users wanting to express things such as the location of the microphone will
+        have to create this shortcut as well as the whole workflow, in order to let the "normal" users access
+        simply the, well, simple information:-) .
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="Performance"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>recorded as</rdfs:label>
+    <rdfs:range rdf:resource="Signal"/>
+    <owl:inverseOf rdf:resource="records"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="recorded_in">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+            Associates a physical Sound to a Recording event where it is being used 
+        in order to produce a signal. For example, I might use this property to 
+        associate the sound produced by a particular performance of the magic flute
+        to a given recording, done using my cell-phone.
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="Sound"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>recorded in</rdfs:label>
+    <rdfs:range rdf:resource="Recording"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#isFactorOf"/>
+    <owl:inverseOf rdf:resource="recording_of"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="recording_of">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+            Associates a Recording event to a physical Sound being recorded.
+                For example, I might use this property to
+                associate a given recording, done using my cell phone, to the 
+        sound produced by a particular performance of the magic flute.
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="Recording"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>recorded sound</rdfs:label>
+    <rdfs:range rdf:resource="Sound"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#factor"/>
+    <owl:inverseOf rdf:resource="recorded_in"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="records">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        This is the inverse of the shortcut property recordedAs, allowing to relate directly a performance
+        to a signal.
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="Signal"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>records</rdfs:label>
+    <rdfs:range rdf:resource="Performance"/>
+    <owl:inverseOf rdf:resource="recordedAs"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="release">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Associates a release with the corresponding release event</rdfs:comment>
+    <rdfs:domain rdf:resource="ReleaseEvent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>release</rdfs:label>
+    <rdfs:range rdf:resource="Release"/>
+    <rdfs:subPropertyOf rdf:resource="../../NET/c4dm/event.owl#product"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="releaseStatus">
+    <owl:equivalentProperty rdf:resource="release_status"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="releaseType">
+    <owl:equivalentProperty rdf:resource="release_type"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="release_status">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+                Relates a musical manifestation to its release status (bootleg, ...)
+        </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="ReleaseStatus"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="release_type">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        Relates a musical manifestation to its release type (interview, spoken word, album, ...)
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="ReleaseType"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="remaster_of">
+    <mo:level>1</mo:level>
+    <rdfs:comment>This relates two musical work or the expression of a musical work, where one is a remaster of the other. 
+    
+A remaster is a new version made for release from source recordings that were earlier released separately. This is usually done to improve the audio quality or adjust for more modern playback equipment. The process generally doesn't involve changing the music in any artistically important way. It may, however, result in tracks that are a few seconds longer or shorter.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>remaster_of</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="derived_from"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <mo:ReleaseType rdf:about="remix">
+    <dc:description>
+        Musical manifestation that primarily contains remixed material. 
+        This is a type of MusicalManifestation defined by the musical industry.
+    </dc:description>
+    <dc:title>remix</dc:title>
+    <mo:level>1</mo:level>
+    <rdfs:isDefinedBy rdf:resource=""/>
+  </mo:ReleaseType>
+  <owl:ObjectProperty rdf:about="remix_of">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate the remix of a musical work in a substantially altered version produced by mixing together individual tracks or segments of an original musical source work.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>remix_of</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="derived_from"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="remixed">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate an artist who remixed a musical work or the expression of a musical work. 
+    
+This involves taking just one other musical work and using audio editing to make it sound like a significantly different, but usually still recognisable, song. It can be used to link an artist to a single song that they remixed, or, if they remixed an entire musical work.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicArtist"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>remixed</rdfs:label>
+    <rdfs:range rdf:resource="Signal"/>
+    <owl:inverseOf rdf:resource="remixer"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="remixer">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate a musical work or the expression of a musical work to an artist who remixed it. 
+    
+This involves taking just one other musical work and using audio editing to make it sound like a significantly different, but usually still recognisable, song. It can be used to link an artist to a single song that they remixed, or, if they remixed an entire musical work.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>remixer</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="interpreter"/>
+    <owl:inverseOf rdf:resource="remixed"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="review">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to link a work or the expression of a work to a review. 
+    
+The review does not have to be open content, as long as it is accessible to the general internet population.</rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="../../vocab/frbr/core#Work"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="../../vocab/frbr/core#Expression"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="../../vocab/frbr/core#Manifestation"/>
+                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>review</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="sampleRate">
+    <owl:equivalentProperty rdf:resource="sample_rate"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:FunctionalProperty rdf:about="sample_rate">
+    <mo:level>1</mo:level>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#DatatypeProperty"/>
+    <rdfs:comment>
+        Associates a digital signal to its sample rate. It might be easier to express it this way instead of
+        defining a timeline map:-) Range is xsd:float.
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="DigitalSignal"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#float"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:FunctionalProperty>
+  <owl:ObjectProperty rdf:about="sampled">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate an artist who sampled a Signal.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicArtist"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>sampled</rdfs:label>
+    <rdfs:range rdf:resource="Signal"/>
+    <owl:inverseOf rdf:resource="sampler"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="sampledVersionOf">
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <owl:equivalentProperty rdf:resource="sampled_version_of"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="sampled_version">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Associates an analog signal with a sampled version of it
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="AnalogSignal"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>sampled version</rdfs:label>
+    <rdfs:range rdf:resource="DigitalSignal"/>
+    <owl:inverseOf rdf:resource="sampled_version_of"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:FunctionalProperty rdf:about="sampled_version_of">
+    <mo:level>2</mo:level>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:comment>
+        Associates a digital signal with the analog version of it
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="DigitalSignal"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>sampled version of</rdfs:label>
+    <rdfs:range rdf:resource="AnalogSignal"/>
+    <rdfs:subPropertyOf rdf:resource="derived_from"/>
+    <owl:inverseOf rdf:resource="sampled_version"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:FunctionalProperty>
+  <owl:ObjectProperty rdf:about="sampler">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate the signal of a musical work to an artist who sampled it.</rdfs:comment>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>sampler</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="interpreter"/>
+    <owl:inverseOf rdf:resource="sampled"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="sell_item">
+    <mo:level>1</mo:level>
+    <rdfs:comment>A person, a group of person or an organization selling an exemplar of a single manifestation.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>sell_item</rdfs:label>
+    <rdfs:range rdf:resource="../../vocab/frbr/core#Item"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="signal">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Associates a group of signals with one of the signals it contains</rdfs:comment>
+    <rdfs:domain rdf:resource="SignalGroup"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>signal</rdfs:label>
+    <rdfs:range rdf:resource="Signal"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="signalTime">
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <owl:equivalentProperty rdf:resource="time"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="similar_to">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+            A similarity relationships between two objects (so far, either an agent, a signal or a genre, but
+        this could grow).
+        This relationship is pretty general and doesn't make any assumptions on how the similarity claim
+        was derived.
+        Such similarity statements can come from a range of different sources (Musicbrainz similarities between
+        artists, or coming from some automatic content analysis).
+        However, the origin of such statements should be kept using a named graph approach - and ultimately, the 
+        documents providing such statements should attach some metadata to themselves (confidence of the claim, etc.).
+        </rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="MusicalWork"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="MusicalExpression"/>
+                    <rdf:rest>
+                      <rdf:Description>
+                        <rdf:first rdf:resource="MusicalManifestation"/>
+                        <rdf:rest>
+                          <rdf:Description>
+                            <rdf:first rdf:resource="MusicalItem"/>
+                            <rdf:rest>
+                              <rdf:Description>
+                                <rdf:first rdf:resource="Genre"/>
+                                <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                              </rdf:Description>
+                            </rdf:rest>
+                          </rdf:Description>
+                        </rdf:rest>
+                      </rdf:Description>
+                    </rdf:rest>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>similar_to</rdfs:label>
+    <rdfs:range>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="MusicalWork"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="MusicalExpression"/>
+                    <rdf:rest>
+                      <rdf:Description>
+                        <rdf:first rdf:resource="MusicalManifestation"/>
+                        <rdf:rest>
+                          <rdf:Description>
+                            <rdf:first rdf:resource="MusicalItem"/>
+                            <rdf:rest>
+                              <rdf:Description>
+                                <rdf:first rdf:resource="Genre"/>
+                                <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                              </rdf:Description>
+                            </rdf:rest>
+                          </rdf:Description>
+                        </rdf:rest>
+                      </rdf:Description>
+                    </rdf:rest>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:range>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="singer">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Relates a performance to an involved singer</rdfs:comment>
+    <rdfs:domain rdf:resource="Performance"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:subPropertyOf rdf:resource="performer"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <mo:ReleaseType rdf:about="single">
+    <dc:description>A single or record single is a type of release, typically a recording of two tracks. In most cases, the single is a song that is released separately from an album, but it can still appear on an album.</dc:description>
+    <dc:title>single</dc:title>
+    <mo:level>1</mo:level>
+    <rdfs:isDefinedBy rdf:resource=""/>
+  </mo:ReleaseType>
+  <mo:ReleaseType rdf:about="soundtrack">
+    <dc:description>
+        Sound recording on a narrow strip of a motion picture film.
+        This is a type of MusicalManifestation defined by the musical industry.
+    </dc:description>
+    <dc:title>soundtrack</dc:title>
+    <mo:level>1</mo:level>
+    <rdfs:isDefinedBy rdf:resource=""/>
+  </mo:ReleaseType>
+  <mo:ReleaseType rdf:about="spokenword">
+    <dc:description>
+        Spoken word is a form of music or artistic performance in which lyrics, poetry, or stories are spoken rather than sung. 
+        Spoken-word is often done with a musical background, but emphasis is kept on the speaker.
+        This is a type of MusicalManifestation defined by the musical industry.
+    </dc:description>
+    <dc:title>spoken word</dc:title>
+    <mo:level>1</mo:level>
+    <rdfs:isDefinedBy rdf:resource=""/>
+  </mo:ReleaseType>
+  <owl:ObjectProperty rdf:about="supporting_musician">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Used to relate an artist doing long-time instrumental or vocal support for another artist.</rdfs:comment>
+    <rdfs:domain rdf:resource="MusicArtist"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>supporting_musician</rdfs:label>
+    <rdfs:range rdf:resource="MusicArtist"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="tempo">
+    <mo:level>2</mo:level>
+    <rdfs:comment>
+        Rate of speed or pace of music. Tempo markings are traditionally given in Italian; 
+        common markings include: grave (solemn; very, very slow); largo (broad; very slow); 
+        adagio (quite slow); andante (a walking pace); moderato (moderate); allegro (fast; cheerful); 
+        vivace (lively); presto (very fast); accelerando (getting faster); ritardando (getting slower); 
+        and a tempo (in time; returning to the original pace).
+    </rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="MusicalWork"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="Performance"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="Signal"/>
+                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>tempo</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="text">
+    <mo:level>2</mo:level>
+    <rdfs:comment>Associates lyrics with their text.</rdfs:comment>
+    <rdfs:domain rdf:resource="Lyrics"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>text</rdfs:label>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:FunctionalProperty rdf:about="time">
+    <mo:level>1</mo:level>
+    <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#ObjectProperty"/>
+    <rdfs:comment>
+        Associates a Signal to a time object - its actual domain
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="Signal"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>time</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2006/time#TemporalEntity"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:FunctionalProperty>
+  <owl:ObjectProperty rdf:about="track">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Indicates a part of a musical manifestation - in this particular case, a track.</rdfs:comment>
+    <rdfs:domain rdf:resource="Record"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>track</rdfs:label>
+    <rdfs:range rdf:resource="Track"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="trackNum">
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <owl:equivalentProperty rdf:resource="track_number"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="track_count">
+    <mo:level>1</mo:level>
+    <rdfs:comment>The track count of a record</rdfs:comment>
+    <rdfs:domain rdf:resource="Record"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>track count</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#int"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="track_number">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Indicates the position of a track on a record medium (a CD, etc.).</rdfs:comment>
+    <rdfs:domain rdf:resource="Track"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>track number</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#nonNegativeInteger"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="translation_of">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Indicates that a work or the expression of a work has translated or transliterated into another expression of a work.</rdfs:comment>
+    <rdfs:domain rdf:resource="../../vocab/frbr/core#Expression"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>translation_of</rdfs:label>
+    <rdfs:range rdf:resource="../../vocab/frbr/core#Expression"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="tribute_to">
+    <mo:level>1</mo:level>
+    <rdfs:comment>Indicates a musical work or the expression of a musical work that is a tribute to an artist - normally consisting of music being composed by the artist but performed by other artists. </rdfs:comment>
+    <rdfs:domain rdf:resource="MusicalManifestation"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>tribute_to</rdfs:label>
+    <rdfs:range rdf:resource="MusicArtist"/>
+    <vs:term_status>unstable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="trmid">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        Indicates the TRMID of a track.
+        TRM IDs are MusicBrainz' old AudioFingerprinting system. 
+        TRM (TRM Recognizes Music) IDs are (somewhat) unique ids that represent 
+        the audio signature of a musical piece (see AudioFingerprint).
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="Signal"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>trmid</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:DatatypeProperty rdf:about="upc">
+    <mo:level>1</mo:level>
+    <rdfs:comment>UPC stands for "Universal Product Code", which was the original barcode used in the United States and Canada. The UPC (now officially EAN.UCC-12 is a numerical method of identifying products without redundancy worldwide for all types of products in the retail sector. The EAN is a superset of the original UPC increasing the digits to 13 with the prefix 0 reserved for UPC. As of 2005, manufacturers are only allowed to use the new 13-digit codes on their items, rather than having two separate numbers.</rdfs:comment>
+    <rdfs:domain rdf:resource="Release"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>upc</rdfs:label>
+    <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
+    <rdfs:subPropertyOf rdf:resource="gtin"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="usedInPerformance">
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <owl:equivalentProperty rdf:resource="performed_in"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="usedInRecording">
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <owl:equivalentProperty rdf:resource="recorded_in"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="usesSound">
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <owl:equivalentProperty rdf:resource="recording_of"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="usesWork">
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <owl:equivalentProperty rdf:resource="performance_of"/>
+    <vs:term_status>deprecated</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:DatatypeProperty rdf:about="uuid">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+            Links an object to an universally unique identifier for it.
+    </rdfs:comment>
+    <rdfs:domain rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+    <rdfs:label>universally unique identifier</rdfs:label>
+    <rdfs:subPropertyOf rdf:resource="../../dc/terms/identifier"/>
+    <vs:term_status>testing</vs:term_status>
+  </owl:DatatypeProperty>
+  <owl:ObjectProperty rdf:about="want_item">
+    <mo:level>1</mo:level>
+    <rdfs:comment>A person, a group of person or an organization wanting an exemplar of a single manifestation.</rdfs:comment>
+    <rdfs:domain rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>want_item</rdfs:label>
+    <rdfs:range rdf:resource="../../vocab/frbr/core#Item"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <owl:ObjectProperty rdf:about="wikipedia">
+    <mo:level>1</mo:level>
+    <rdfs:comment>
+        Used to link an work, an expression of a work, a manifestation of a work, 
+        a person, an instrument or a musical genre to its corresponding WikiPedia page. 
+        The full URL should be used, not just the WikiName.
+    </rdfs:comment>
+    <rdfs:domain>
+      <owl:Class>
+        <owl:unionOf>
+          <rdf:Description>
+            <rdf:first rdf:resource="../../vocab/frbr/core#Work"/>
+            <rdf:rest>
+              <rdf:Description>
+                <rdf:first rdf:resource="../../vocab/frbr/core#Expression"/>
+                <rdf:rest>
+                  <rdf:Description>
+                    <rdf:first rdf:resource="../../vocab/frbr/core#Manifestation"/>
+                    <rdf:rest>
+                      <rdf:Description>
+                        <rdf:first rdf:resource="../../vocab/frbr/core#Item"/>
+                        <rdf:rest>
+                          <rdf:Description>
+                            <rdf:first rdf:resource="http://xmlns.com/foaf/0.1/Agent"/>
+                            <rdf:rest>
+                              <rdf:Description>
+                                <rdf:first rdf:resource="Instrument"/>
+                                <rdf:rest>
+                                  <rdf:Description>
+                                    <rdf:first rdf:resource="Genre"/>
+                                    <rdf:rest rdf:resource="http://www.w3.org/1999/02/22-rdf-syntax-ns#nil"/>
+                                  </rdf:Description>
+                                </rdf:rest>
+                              </rdf:Description>
+                            </rdf:rest>
+                          </rdf:Description>
+                        </rdf:rest>
+                      </rdf:Description>
+                    </rdf:rest>
+                  </rdf:Description>
+                </rdf:rest>
+              </rdf:Description>
+            </rdf:rest>
+          </rdf:Description>
+        </owl:unionOf>
+      </owl:Class>
+    </rdfs:domain>
+    <rdfs:isDefinedBy rdf:resource=""/>
+    <rdfs:label>wikipedia</rdfs:label>
+    <rdfs:range rdf:resource="http://xmlns.com/foaf/0.1/Document"/>
+    <rdfs:subPropertyOf rdf:resource="http://xmlns.com/foaf/0.1/isPrimaryTopicOf"/>
+    <vs:term_status>stable</vs:term_status>
+  </owl:ObjectProperty>
+  <rdf:Description rdf:about="http://raimond.me.uk/foaf.rdf#moustaki">
+    <foaf:homepage rdf:resource="http://raimond.me.uk/"/>
+    <foaf:name>Yves Raimond</foaf:name>
+  </rdf:Description>
+  <rdf:Description rdf:about="http://www.talkdigger.com/foaf/fgiasson">
+    <foaf:homepage rdf:resource="http://fgiasson.com/"/>
+    <foaf:name>Frédérick Giasson</foaf:name>
+  </rdf:Description>
+  <owl:AnnotationProperty rdf:about="http://www.w3.org/2003/06/sw-vocab-status/ns#term_status"/>
+</rdf:RDF>
diff --git a/ontologies/withDependencies/prov.owl b/ontologies/withDependencies/prov.owl
new file mode 100644
index 0000000..f8c004c
--- /dev/null
+++ b/ontologies/withDependencies/prov.owl
@@ -0,0 +1,2289 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<rdf:RDF xmlns:prov="http://www.w3.org/ns/prov#"
+         xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
+         xmlns="http://www.w3.org/ns/prov#"
+         xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
+         xmlns:owl="http://www.w3.org/2002/07/owl#"
+         xmlns:xsd="http://www.w3.org/2001/XMLSchema#">
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov#">
+      <rdfs:label xml:lang="en">W3C PROVenance Interchange</rdfs:label>
+      <rdfs:comment xml:lang="en">This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page).
+
+If you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/
+Archives/Public/public-prov-comments/). All feedback is welcome.</rdfs:comment>
+      <owl:versionIRI rdf:resource="http://www.w3.org/ns/prov-20130430"/>
+      <prov:wasRevisionOf rdf:resource="http://www.w3.org/ns/prov-20130312"/>
+      <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov"/>
+      <rdfs:seeAlso rdf:resource="http://www.w3.org/TR/prov-overview/"/>
+
+      <prov:wasDerivedFrom rdf:resource="http://www.w3.org/ns/prov-o#"/>
+      <prov:wasDerivedFrom rdf:resource="http://www.w3.org/ns/prov-o-inverses#"/>
+      <prov:wasDerivedFrom rdf:resource="http://www.w3.org/ns/prov-aq#"/>
+      <prov:wasDerivedFrom rdf:resource="http://www.w3.org/ns/prov-dc#"/>
+      <prov:wasDerivedFrom rdf:resource="http://www.w3.org/ns/prov-dictionary#"/>
+      <prov:wasDerivedFrom rdf:resource="http://www.w3.org/ns/prov-links#"/>
+
+      <!--This file contains the results of importing the following.-->
+      <owl:imports rdf:resource="http://www.w3.org/ns/prov-o#"/>
+      <owl:imports rdf:resource="http://www.w3.org/ns/prov-o-inverses#"/>
+      <owl:imports rdf:resource="http://www.w3.org/ns/prov-aq#"/>
+      <owl:imports rdf:resource="http://www.w3.org/ns/prov-dc#"/>
+      <owl:imports rdf:resource="http://www.w3.org/ns/prov-dictionary#"/>
+      <owl:imports rdf:resource="http://www.w3.org/ns/prov-links#"/>
+   </owl:Ontology>
+
+
+
+
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov-o#"/>
+
+   <!--The following was imported from http://www.w3.org/ns/prov-o#-->
+
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov-o#">
+        <rdfs:label xml:lang="en">W3C PROVenance Interchange Ontology (PROV-O)</rdfs:label>
+        <owl:versionInfo xml:lang="en">Recommendation version 2013-04-30</owl:versionInfo>
+        <rdfs:comment xml:lang="en">This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page). 
+
+If you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/Archives/Public/public-prov-comments/). All feedback is welcome.</rdfs:comment>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/TR/prov-o/"/>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov"/>
+        <specializationOf rdf:resource="http://www.w3.org/ns/prov-o"/>
+        <wasRevisionOf rdf:resource="http://www.w3.org/ns/prov-o-20120312"/>
+        <owl:versionIRI rdf:resource="http://www.w3.org/ns/prov-o-20130430"/>
+    </owl:Ontology>
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov#"/>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#unqualifiedForm">
+        <rdfs:comment xml:lang="en">Classes and properties used to qualify relationships are annotated with prov:unqualifiedForm to indicate the property used to assert an unqualified provenance relation.</rdfs:comment>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#wasRevisionOf">
+        <rdfs:label>wasRevisionOf</rdfs:label>
+        <component>derivations</component>
+        <rdfs:comment xml:lang="en">A revision is a derivation that revises an entity into a revised version.</rdfs:comment>
+        <inverse>hadRevision</inverse>
+        <category>expanded</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Revision"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedRevision"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#aq">
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#sharesDefinitionWith">
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#definition">
+        <rdfs:comment xml:lang="en">A definition quoted from PROV-DM or PROV-CONSTRAINTS that describes the concept expressed with this OWL term.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#editorialNote">
+        <rdfs:comment xml:lang="en">A note by the OWL development team about how this term expresses the PROV-DM concept, or how it should be used in context of semantic web or linked data.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
+        <rdfs:comment xml:lang="en"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#inverse">
+        <rdfs:comment xml:lang="en">PROV-O does not define all property inverses. The directionalities defined in PROV-O should be given preference over those not defined. However, if users wish to name the inverse of a PROV-O property, the local name given by prov:inverse should be used.</rdfs:comment>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/TR/prov-o/#names-of-inverse-properties"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment">
+        <rdfs:comment xml:lang="en"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#constraints">
+        <rdfs:comment xml:lang="en">A reference to the principal section of the PROV-CONSTRAINTS document that describes this concept.</rdfs:comment>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso">
+        <rdfs:comment xml:lang="en"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#versionInfo"/>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#specializationOf">
+        <rdfs:label>specializationOf</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-specialization</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-specialization</n>
+        <component>alternate</component>
+        <inverse>generalizationOf</inverse>
+        <category>expanded</category>
+        <definition xml:lang="en">An entity that is a specialization of another shares all aspects of the latter, and additionally presents more specific aspects of the same thing as the latter. In particular, the lifetime of the entity being specialized contains that of any specialization. Examples of aspects include a time period, an abstraction, and a context associated with the entity.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov#alternateOf"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#dm">
+        <rdfs:comment xml:lang="en">A reference to the principal section of the PROV-DM document that describes this concept.</rdfs:comment>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#category">
+        <rdfs:comment xml:lang="en">Classify prov-o terms into three categories, including 'starting-point', 'qualifed', and 'extended'. This classification is used by the prov-o html document to gently introduce prov-o terms to its users. </rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#order">
+        <rdfs:comment xml:lang="en">The position that this OWL term should be listed within documentation. The scope of the documentation (e.g., among all terms, among terms within a prov:category, among properties applying to a particular class, etc.) is unspecified.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy"/>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#editorsDefinition">
+        <rdfs:comment xml:lang="en">When the prov-o term does not have a definition drawn from prov-dm, and the prov-o editor provides one.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#definition"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#component">
+        <rdfs:comment xml:lang="en">Classify prov-o terms into six components according to prov-dm, including 'agents-responsibility', 'alternate', 'annotations', 'collections', 'derivations', and 'entities-activities'. This classification is used so that readers of prov-o specification can find its correspondence with the prov-dm specification.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#qualifiedForm">
+        <rdfs:comment xml:lang="en">This annotation property links a subproperty of prov:wasInfluencedBy with the subclass of prov:Influence and the qualifying property that are used to qualify it. 
+
+Example annotation:
+
+    prov:wasGeneratedBy prov:qualifiedForm prov:qualifiedGeneration, prov:Generation .
+
+Then this unqualified assertion:
+
+    :entity1 prov:wasGeneratedBy :activity1 .
+
+can be qualified by adding:
+
+   :entity1 prov:qualifiedGeneration :entity1Gen .
+   :entity1Gen 
+       a prov:Generation, prov:Influence;
+       prov:activity :activity1;
+       :customValue 1337 .
+
+Note how the value of the unqualified influence (prov:wasGeneratedBy :activity1) is mirrored as the value of the prov:activity (or prov:entity, or prov:agent) property on the influence class.</rdfs:comment>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#todo"/>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#n">
+        <rdfs:comment xml:lang="en">A reference to the principal section of the PROV-DM document that describes this concept.</rdfs:comment>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:AnnotationProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#actedOnBehalfOf">
+        <rdfs:label>actedOnBehalfOf</rdfs:label>
+        <component>agents-responsibility</component>
+        <inverse>hadDelegate</inverse>
+        <rdfs:comment xml:lang="en">An object property to express the accountability of an agent towards another agent. The subordinate agent acted on behalf of the responsible agent in an actual activity. </rdfs:comment>
+        <category>starting-point</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Agent"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Agent"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Delegation"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedDelegation"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedDelegation"/>
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#agent"/>
+        </owl:propertyChainAxiom>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#activity">
+        <rdfs:label>activity</rdfs:label>
+        <editorsDefinition>The prov:activity property references an prov:Activity which influenced a resource. This property applies to an prov:ActivityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.</editorsDefinition>
+        <inverse>activityOfInfluence</inverse>
+        <editorialNote xml:lang="en">This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.</editorialNote>
+        <category>qualified</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#ActivityInfluence"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#influencer"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#agent">
+        <rdfs:label>agent</rdfs:label>
+        <editorsDefinition xml:lang="en">The prov:agent property references an prov:Agent which influenced a resource. This property applies to an prov:AgentInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.</editorsDefinition>
+        <inverse>agentOfInfluence</inverse>
+        <editorialNote xml:lang="en">This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.</editorialNote>
+        <category>qualified</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Agent"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#AgentInfluence"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#influencer"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#alternateOf">
+        <rdfs:label>alternateOf</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-alternate</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-alternate</n>
+        <definition xml:lang="en">Two alternate entities present aspects of the same thing. These aspects may be the same or different, and the alternate entities may or may not overlap in time.</definition>
+        <category>expanded</category>
+        <component>alternate</component>
+        <inverse>alternateOf</inverse>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov#specializationOf"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#atLocation">
+        <rdfs:label>atLocation</rdfs:label>
+        <rdfs:comment xml:lang="en">The Location of any resource.</rdfs:comment>
+        <inverse>locationOf</inverse>
+        <editorialNote xml:lang="en">The naming of prov:atLocation parallels prov:atTime, and is not named prov:hadLocation to avoid conflicting with the convention that prov:had* properties are used on prov:Influence classes.</editorialNote>
+        <rdfs:comment>This property has multiple RDFS domains to suit multiple OWL Profiles. See &lt;a href="#owl-profile"&gt;PROV-O OWL Profile&lt;/a&gt;.</rdfs:comment>
+        <editorialNote xml:lang="en">This property is not functional because the many values could be at a variety of granularies (In this building, in this room, in that chair).</editorialNote>
+        <category>expanded</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Location"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Location"/>
+        <rdfs:domain>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Activity"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Agent"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Entity"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#InstantaneousEvent"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:domain>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#entity">
+        <rdfs:label>entity</rdfs:label>
+        <editorsDefinition>The prov:entity property references an prov:Entity which influenced a resource. This property applies to an prov:EntityInfluence, which is given by a subproperty of prov:qualifiedInfluence from the influenced prov:Entity, prov:Activity or prov:Agent.</editorsDefinition>
+        <inverse>entityOfInfluence</inverse>
+        <editorialNote xml:lang="en">This property behaves in spirit like rdf:object; it references the object of a prov:wasInfluencedBy triple.</editorialNote>
+        <category>qualified</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#influencer"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#generated">
+        <rdfs:label>generated</rdfs:label>
+        <component>entities-activities</component>
+        <inverse>wasGeneratedBy</inverse>
+        <category>expanded</category>
+        <editorialNote xml:lang="en">prov:generated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.</editorialNote>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Generation"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#influenced"/>
+        <owl:inverseOf rdf:resource="http://www.w3.org/ns/prov#wasGeneratedBy"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadActivity">
+        <rdfs:label>hadActivity</rdfs:label>
+        <rdfs:comment>This property has multiple RDFS domains to suit multiple OWL Profiles. See &lt;a href="#owl-profile"&gt;PROV-O OWL Profile&lt;/a&gt;.</rdfs:comment>
+        <rdfs:comment xml:lang="en">The _optional_ Activity of an Influence, which used, generated, invalidated, or was the responsibility of some Entity. This property is _not_ used by ActivityInfluence (use prov:activity instead).</rdfs:comment>
+        <editorialNote xml:lang="en">The multiple rdfs:domain assertions are intended. One is simpler and works for OWL-RL, the union is more specific but is not recognized by OWL-RL.</editorialNote>
+        <component>derivations</component>
+        <category>qualified</category>
+        <inverse>wasActivityOfInfluence</inverse>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Influence"/>
+        <rdfs:domain>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Delegation"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Derivation"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#End"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Start"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:domain>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadGeneration">
+        <rdfs:label>hadGeneration</rdfs:label>
+        <inverse>generatedAsDerivation</inverse>
+        <category>qualified</category>
+        <rdfs:comment xml:lang="en">The _optional_ Generation involved in an Entity's Derivation.</rdfs:comment>
+        <component>derivations</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Generation"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Generation"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadMember">
+        <rdfs:label>hadMember</rdfs:label>
+        <category>expanded</category>
+        <component>expanded</component>
+        <inverse>wasMemberOf</inverse>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Collection"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Collection"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+    </owl:ObjectProperty>
+   <owl:Axiom>
+        <rdfs:comment xml:lang="en">A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections.</rdfs:comment>
+        <dm>http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-collection</dm>
+        <owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#range"/>
+        <owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#hadMember"/>
+    </owl:Axiom>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadPlan">
+        <rdfs:label>hadPlan</rdfs:label>
+        <category>qualified</category>
+        <component>agents-responsibility</component>
+        <inverse>wasPlanOf</inverse>
+        <rdfs:comment xml:lang="en">The _optional_ Plan adopted by an Agent in Association with some Activity. Plan specifications are out of the scope of this specification.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Association"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Plan"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Plan"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadPrimarySource">
+        <rdfs:label>hadPrimarySource</rdfs:label>
+        <component>derivations</component>
+        <category>expanded</category>
+        <inverse>wasPrimarySourceOf</inverse>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#PrimarySource"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedPrimarySource"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedPrimarySource"/>
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#entity"/>
+        </owl:propertyChainAxiom>
+    </owl:ObjectProperty>
+   <owl:Axiom>
+        <rdfs:comment>hadPrimarySource property is a particular case of wasDerivedFrom (see http://www.w3.org/TR/prov-dm/#term-original-source) that aims to give credit to the source that originated some information.</rdfs:comment>
+        <owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subPropertyOf"/>
+        <owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#hadPrimarySource"/>
+        <owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
+    </owl:Axiom>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadRole">
+        <rdfs:label>hadRole</rdfs:label>
+        <component>agents-responsibility</component>
+        <inverse>wasRoleIn</inverse>
+        <rdfs:comment>This property has multiple RDFS domains to suit multiple OWL Profiles. See &lt;a href="#owl-profile"&gt;PROV-O OWL Profile&lt;/a&gt;.</rdfs:comment>
+        <category>qualified</category>
+        <rdfs:comment xml:lang="en">The _optional_ Role that an Entity assumed in the context of an Activity. For example, :baking prov:used :spoon; prov:qualified [ a prov:Usage; prov:entity :spoon; prov:hadRole roles:mixing_implement ].</rdfs:comment>
+        <editorsDefinition xml:lang="en">prov:hadRole references the Role (i.e. the function of an entity with respect to an activity), in the context of an instantaneous usage, generation, association, start, and end.</editorsDefinition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Influence"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Role"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Role"/>
+        <rdfs:domain>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Association"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#InstantaneousEvent"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:domain>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadUsage">
+        <rdfs:label>hadUsage</rdfs:label>
+        <category>qualified</category>
+        <rdfs:comment xml:lang="en">The _optional_ Usage involved in an Entity's Derivation.</rdfs:comment>
+        <inverse>wasUsedInDerivation</inverse>
+        <component>derivations</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Usage"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Usage"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#influenced">
+        <rdfs:label>influenced</rdfs:label>
+        <inverse>wasInfluencedBy</inverse>
+        <component>agents-responsibility</component>
+        <category>expanded</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Influence"/>
+        <owl:inverseOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#influencer">
+        <rdfs:label>influencer</rdfs:label>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence</dm>
+        <category>qualified</category>
+        <inverse>hadInfluence</inverse>
+        <rdfs:comment xml:lang="en">Subproperties of prov:influencer are used to cite the object of an unqualified PROV-O triple whose predicate is a subproperty of prov:wasInfluencedBy (e.g. prov:used, prov:wasGeneratedBy). prov:influencer is used much like rdf:object is used.</rdfs:comment>
+        <editorialNote xml:lang="en">This property and its subproperties are used in the same way as the rdf:object property, i.e. to reference the object of an unqualified prov:wasInfluencedBy or prov:influenced triple.</editorialNote>
+        <editorsDefinition xml:lang="en">This property is used as part of the qualified influence pattern. Subclasses of prov:Influence use these subproperties to reference the resource (Entity, Agent, or Activity) whose influence is being qualified.</editorsDefinition>
+        <rdfs:range rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Influence"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#invalidated">
+        <rdfs:label>invalidated</rdfs:label>
+        <category>expanded</category>
+        <inverse>wasInvalidatedBy</inverse>
+        <component>entities-activities</component>
+        <editorialNote xml:lang="en">prov:invalidated is one of few inverse property defined, to allow Activity-oriented assertions in addition to Entity-oriented assertions.</editorialNote>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Invalidation"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#influenced"/>
+        <owl:inverseOf rdf:resource="http://www.w3.org/ns/prov#wasInvalidatedBy"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedAssociation">
+        <rdfs:label>qualifiedAssociation</rdfs:label>
+        <inverse>qualifiedAssociationOf</inverse>
+        <rdfs:comment xml:lang="en">If this Activity prov:wasAssociatedWith Agent :ag, then it can qualify the Association using prov:qualifiedAssociation [ a prov:Association;  prov:agent :ag; :foo :bar ].</rdfs:comment>
+        <component>agents-responsibility</component>
+        <category>qualified</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Association"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Association"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasAssociatedWith"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedAttribution">
+        <rdfs:label>qualifiedAttribution</rdfs:label>
+        <inverse>qualifiedAttributionOf</inverse>
+        <category>qualified</category>
+        <component>agents-responsibility</component>
+        <rdfs:comment xml:lang="en">If this Entity prov:wasAttributedTo Agent :ag, then it can qualify how it was influenced using prov:qualifiedAttribution [ a prov:Attribution;  prov:agent :ag; :foo :bar ].</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Attribution"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Attribution"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasAttributedTo"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedCommunication">
+        <rdfs:label>qualifiedCommunication</rdfs:label>
+        <inverse>qualifiedCommunicationOf</inverse>
+        <component>entities-activities</component>
+        <rdfs:comment xml:lang="en">If this Activity prov:wasInformedBy Activity :a, then it can qualify how it was influenced using prov:qualifiedCommunication [ a prov:Communication;  prov:activity :a; :foo :bar ].</rdfs:comment>
+        <category>qualified</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Communication"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Communication"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Communication"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedDelegation">
+        <rdfs:label>qualifiedDelegation</rdfs:label>
+        <category>qualified</category>
+        <rdfs:comment xml:lang="en">If this Agent prov:actedOnBehalfOf Agent :ag, then it can qualify how with prov:qualifiedResponsibility [ a prov:Responsibility;  prov:agent :ag; :foo :bar ].</rdfs:comment>
+        <inverse>qualifiedDelegationOf</inverse>
+        <component>agents-responsibility</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Agent"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Delegation"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Delegation"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#actedOnBehalfOf"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedDerivation">
+        <rdfs:label>qualifiedDerivation</rdfs:label>
+        <component>derivations</component>
+        <category>qualified</category>
+        <rdfs:comment xml:lang="en">If this Entity prov:wasDerivedFrom Entity :e, then it can qualify how it was derived using prov:qualifiedDerivation [ a prov:Derivation;  prov:entity :e; :foo :bar ].</rdfs:comment>
+        <inverse>qualifiedDerivationOf</inverse>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedEnd">
+        <rdfs:label>qualifiedEnd</rdfs:label>
+        <category>qualified</category>
+        <inverse>qualifiedEndOf</inverse>
+        <component>entities-activities</component>
+        <rdfs:comment xml:lang="en">If this Activity prov:wasEndedBy Entity :e1, then it can qualify how it was ended using prov:qualifiedEnd [ a prov:End;  prov:entity :e1; :foo :bar ].</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#End"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#End"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasEndedBy"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedGeneration">
+        <rdfs:label>qualifiedGeneration</rdfs:label>
+        <inverse>qualifiedGenerationOf</inverse>
+        <component>entities-activities</component>
+        <category>qualified</category>
+        <rdfs:comment xml:lang="en">If this Activity prov:generated Entity :e, then it can qualify how it performed the Generation using prov:qualifiedGeneration [ a prov:Generation;  prov:entity :e; :foo :bar ].</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Generation"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Generation"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasGeneratedBy"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedInfluence">
+        <rdfs:label>qualifiedInfluence</rdfs:label>
+        <rdfs:comment xml:lang="en">Because prov:qualifiedInfluence is a broad relation, the more specific relations (qualifiedCommunication, qualifiedDelegation, qualifiedEnd, etc.) should be used when applicable.</rdfs:comment>
+        <category>qualified</category>
+        <inverse>qualifiedInfluenceOf</inverse>
+        <component>derivations</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Influence"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Influence"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+        <rdfs:domain>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Activity"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Agent"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Entity"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:domain>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedInvalidation">
+        <rdfs:label>qualifiedInvalidation</rdfs:label>
+        <rdfs:comment xml:lang="en">If this Entity prov:wasInvalidatedBy Activity :a, then it can qualify how it was invalidated using prov:qualifiedInvalidation [ a prov:Invalidation;  prov:activity :a; :foo :bar ].</rdfs:comment>
+        <component>entities-activities</component>
+        <category>qualified</category>
+        <inverse>qualifiedInvalidationOf</inverse>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Invalidation"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Invalidation"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasInvalidatedBy"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedPrimarySource">
+        <rdfs:label>qualifiedPrimarySource</rdfs:label>
+        <rdfs:comment xml:lang="en">If this Entity prov:hadPrimarySource Entity :e, then it can qualify how using prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :e; :foo :bar ].</rdfs:comment>
+        <component>derivations</component>
+        <category>qualified</category>
+        <inverse>qualifiedSourceOf</inverse>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#PrimarySource"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#PrimarySource"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#hadPrimarySource"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedQuotation">
+        <rdfs:label>qualifiedQuotation</rdfs:label>
+        <category>qualified</category>
+        <inverse>qualifiedQuotationOf</inverse>
+        <rdfs:comment xml:lang="en">If this Entity prov:wasQuotedFrom Entity :e, then it can qualify how using prov:qualifiedQuotation [ a prov:Quotation;  prov:entity :e; :foo :bar ].</rdfs:comment>
+        <component>derivations</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Quotation"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Quotation"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasQuotedFrom"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedRevision">
+        <rdfs:label>qualifiedRevision</rdfs:label>
+        <rdfs:comment xml:lang="en">If this Entity prov:wasRevisionOf Entity :e, then it can qualify how it was revised using prov:qualifiedRevision [ a prov:Revision;  prov:entity :e; :foo :bar ].</rdfs:comment>
+        <category>qualified</category>
+        <inverse>revisedEntity</inverse>
+        <component>derivations</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Revision"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Revision"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasRevisionOf"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedStart">
+        <rdfs:label>qualifiedStart</rdfs:label>
+        <inverse>qualifiedStartOf</inverse>
+        <category>qualified</category>
+        <component>entities-activities</component>
+        <rdfs:comment xml:lang="en">If this Activity prov:wasStartedBy Entity :e1, then it can qualify how it was started using prov:qualifiedStart [ a prov:Start;  prov:entity :e1; :foo :bar ].</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Start"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Start"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasStartedBy"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedUsage">
+        <rdfs:label>qualifiedUsage</rdfs:label>
+        <category>qualified</category>
+        <inverse>qualifiedUsingActivity</inverse>
+        <component>entities-activities</component>
+        <rdfs:comment xml:lang="en">If this Activity prov:used Entity :e, then it can qualify how it used it using prov:qualifiedUsage [ a prov:Usage; prov:entity :e; :foo :bar ].</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Usage"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Usage"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#used"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#specializationOf">
+        <rdfs:label>specializationOf</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-specialization</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-specialization</n>
+        <component>alternate</component>
+        <category>expanded</category>
+        <inverse>generalizationOf</inverse>
+        <definition xml:lang="en">An entity that is a specialization of another shares all aspects of the latter, and additionally presents more specific aspects of the same thing as the latter. In particular, the lifetime of the entity being specialized contains that of any specialization. Examples of aspects include a time period, an abstraction, and a context associated with the entity.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov#alternateOf"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#alternateOf"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#used">
+        <rdfs:label>used</rdfs:label>
+        <inverse>wasUsedBy</inverse>
+        <rdfs:comment xml:lang="en">A prov:Entity that was used by this prov:Activity. For example, :baking prov:used :spoon, :egg, :oven .</rdfs:comment>
+        <category>starting-point</category>
+        <component>entities-activities</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Usage"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedUsage"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedUsage"/>
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#entity"/>
+        </owl:propertyChainAxiom>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasAssociatedWith">
+        <rdfs:label>wasAssociatedWith</rdfs:label>
+        <component>agents-responsibility</component>
+        <inverse>wasAssociateFor</inverse>
+        <rdfs:comment xml:lang="en">An prov:Agent that had some (unspecified) responsibility for the occurrence of this prov:Activity.</rdfs:comment>
+        <category>starting-point</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Agent"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Association"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedAssociation"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedAssociation"/>
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#agent"/>
+        </owl:propertyChainAxiom>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasAttributedTo">
+        <rdfs:label>wasAttributedTo</rdfs:label>
+        <component>agents-responsibility</component>
+        <category>starting-point</category>
+        <inverse>contributed</inverse>
+        <definition xml:lang="en">Attribution is the ascribing of an entity to an agent.</definition>
+        <rdfs:comment xml:lang="en">Attribution is the ascribing of an entity to an agent.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Agent"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Attribution"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedAttribution"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedAttribution"/>
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#agent"/>
+        </owl:propertyChainAxiom>
+    </owl:ObjectProperty>
+   <owl:Axiom>
+        <rdfs:comment>Attribution is a particular case of trace (see http://www.w3.org/TR/prov-dm/#concept-trace), in the sense that it links an entity to the agent that ascribed it.</rdfs:comment>
+        <definition>IF wasAttributedTo(e2,ag1,aAttr) holds, THEN wasInfluencedBy(e2,ag1) also holds. </definition>
+        <owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subPropertyOf"/>
+        <owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#wasAttributedTo"/>
+        <owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+    </owl:Axiom>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasDerivedFrom">
+        <rdfs:label>wasDerivedFrom</rdfs:label>
+        <inverse>hadDerivation</inverse>
+        <definition xml:lang="en">A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.</definition>
+        <category>starting-point</category>
+        <rdfs:comment xml:lang="en">The more specific subproperties of prov:wasDerivedFrom (i.e., prov:wasQuotedFrom, prov:wasRevisionOf, prov:hadPrimarySource) should be used when applicable.</rdfs:comment>
+        <component>derivations</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedDerivation"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedDerivation"/>
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#entity"/>
+        </owl:propertyChainAxiom>
+    </owl:ObjectProperty>
+   <owl:Axiom>
+        <rdfs:comment>Derivation is a particular case of trace (see http://www.w3.org/TR/prov-dm/#term-trace), since it links an entity to another entity that contributed to its existence.</rdfs:comment>
+        <owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subPropertyOf"/>
+        <owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
+        <owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+    </owl:Axiom>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasEndedBy">
+        <rdfs:label>wasEndedBy</rdfs:label>
+        <category>expanded</category>
+        <component>entities-activities</component>
+        <rdfs:comment xml:lang="en">End is when an activity is deemed to have ended. An end may refer to an entity, known as trigger, that terminated the activity.</rdfs:comment>
+        <inverse>ended</inverse>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#End"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedEnd"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedEnd"/>
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#entity"/>
+        </owl:propertyChainAxiom>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasGeneratedBy">
+        <rdfs:label>wasGeneratedBy</rdfs:label>
+        <inverse>generated</inverse>
+        <category>starting-point</category>
+        <component>entities-activities</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Generation"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedGeneration"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedGeneration"/>
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#activity"/>
+        </owl:propertyChainAxiom>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasInfluencedBy">
+        <rdfs:label>wasInfluencedBy</rdfs:label>
+        <rdfs:comment xml:lang="en">Because prov:wasInfluencedBy is a broad relation, its more specific subproperties (e.g. prov:wasInformedBy, prov:actedOnBehalfOf, prov:wasEndedBy, etc.) should be used when applicable.</rdfs:comment>
+        <editorialNote xml:lang="en">The sub-properties of prov:wasInfluencedBy can be elaborated in more detail using the Qualification Pattern. For example, the binary relation :baking prov:used :spoon can be qualified by asserting :baking prov:qualifiedUsage [ a prov:Usage; prov:entity :spoon; prov:atLocation :kitchen ] .
+
+Subproperties of prov:wasInfluencedBy may also be asserted directly without being qualified.
+
+prov:wasInfluencedBy should not be used without also using one of its subproperties. 
+</editorialNote>
+        <rdfs:comment>This property has multiple RDFS domains to suit multiple OWL Profiles. See &lt;a href="#owl-profile"&gt;PROV-O OWL Profile&lt;/a&gt;.</rdfs:comment>
+        <category>qualified</category>
+        <inverse>influenced</inverse>
+        <component>agents-responsibility</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Influence"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Influence"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedInfluence"/>
+        <rdfs:domain>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Activity"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Agent"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Entity"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:domain>
+        <rdfs:range>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Activity"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Agent"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Entity"/>
+                </owl:unionOf>
+            </owl:Class>
+        </rdfs:range>
+    </owl:ObjectProperty>
+   <owl:Axiom>
+        <definition>influencer: an identifier (o1) for an ancestor entity, activity, or agent that the former depends on;</definition>
+        <dm>http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence</dm>
+        <owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#range"/>
+        <owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+        <owl:annotatedTarget>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Activity"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Agent"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Entity"/>
+                </owl:unionOf>
+            </owl:Class>
+        </owl:annotatedTarget>
+    </owl:Axiom>
+   <owl:Axiom>
+        <definition>influencee: an identifier (o2) for an entity, activity, or agent; </definition>
+        <dm>http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence</dm>
+        <owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#domain"/>
+        <owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+        <owl:annotatedTarget>
+            <owl:Class>
+                <owl:unionOf rdf:parseType="Collection">
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Activity"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Agent"/>
+                    <rdf:Description rdf:about="http://www.w3.org/ns/prov#Entity"/>
+                </owl:unionOf>
+            </owl:Class>
+        </owl:annotatedTarget>
+    </owl:Axiom>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasInformedBy">
+        <rdfs:label>wasInformedBy</rdfs:label>
+        <inverse>informed</inverse>
+        <rdfs:comment xml:lang="en">An activity a2 is dependent on or informed by another activity a1, by way of some unspecified entity that is generated by a1 and used by a2.</rdfs:comment>
+        <category>starting-point</category>
+        <component>entities-activities</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Communication"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedCommunication"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedCommunication"/>
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#activity"/>
+        </owl:propertyChainAxiom>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasInvalidatedBy">
+        <rdfs:label>wasInvalidatedBy</rdfs:label>
+        <component>entities-activities</component>
+        <inverse>invalidated</inverse>
+        <category>expanded</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Invalidation"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedInvalidation"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedInvalidation"/>
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#activity"/>
+        </owl:propertyChainAxiom>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasQuotedFrom">
+        <rdfs:label>wasQuotedFrom</rdfs:label>
+        <category>expanded</category>
+        <component>derivations</component>
+        <inverse>quotedAs</inverse>
+        <rdfs:comment xml:lang="en">An entity is derived from an original entity by copying, or 'quoting', some or all of it.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Quotation"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedQuotation"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedQuotation"/>
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#entity"/>
+        </owl:propertyChainAxiom>
+    </owl:ObjectProperty>
+   <owl:Axiom>
+        <rdfs:comment>Quotation is a particular case of derivation (see http://www.w3.org/TR/prov-dm/#term-quotation) in which an entity is derived from an original entity by copying, or "quoting", some or all of it. </rdfs:comment>
+        <owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subPropertyOf"/>
+        <owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
+        <owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#wasQuotedFrom"/>
+    </owl:Axiom>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasRevisionOf">
+        <rdfs:label>wasRevisionOf</rdfs:label>
+        <rdfs:comment xml:lang="en">A revision is a derivation that revises an entity into a revised version.</rdfs:comment>
+        <component>derivations</component>
+        <inverse>hadRevision</inverse>
+        <category>expanded</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Revision"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedRevision"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedRevision"/>
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#entity"/>
+        </owl:propertyChainAxiom>
+    </owl:ObjectProperty>
+   <owl:Axiom>
+        <rdfs:comment>Revision is a derivation (see http://www.w3.org/TR/prov-dm/#term-Revision). Moreover, according to 
+http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#term-Revision 23 April 2012 'wasRevisionOf is a strict sub-relation of wasDerivedFrom since two entities e2 and e1 may satisfy wasDerivedFrom(e2,e1) without being a variant of each other.'</rdfs:comment>
+        <owl:annotatedProperty rdf:resource="http://www.w3.org/2000/01/rdf-schema#subPropertyOf"/>
+        <owl:annotatedTarget rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
+        <owl:annotatedSource rdf:resource="http://www.w3.org/ns/prov#wasRevisionOf"/>
+    </owl:Axiom>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#wasStartedBy">
+        <rdfs:label>wasStartedBy</rdfs:label>
+        <inverse>started</inverse>
+        <category>expanded</category>
+        <component>entities-activities</component>
+        <rdfs:comment xml:lang="en">Start is when an activity is deemed to have started. A start may refer to an entity, known as trigger, that initiated the activity.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Start"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#qualifiedStart"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+        <owl:propertyChainAxiom rdf:parseType="Collection">
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#qualifiedStart"/>
+            <rdf:Description rdf:about="http://www.w3.org/ns/prov#entity"/>
+        </owl:propertyChainAxiom>
+    </owl:ObjectProperty>
+   <owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#atTime">
+        <rdfs:label>atTime</rdfs:label>
+        <component>entities-activities</component>
+        <category>qualified</category>
+        <rdfs:comment xml:lang="en">The time at which an InstantaneousEvent occurred, in the form of xsd:dateTime.</rdfs:comment>
+        <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#endedAtTime"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#generatedAtTime"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#invalidatedAtTime"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#startedAtTime"/>
+    </owl:DatatypeProperty>
+   <owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#endedAtTime">
+        <rdfs:label>endedAtTime</rdfs:label>
+        <component>entities-activities</component>
+        <editorialNote xml:lang="en">It is the intent that the property chain holds: (prov:qualifiedEnd o prov:atTime) rdfs:subPropertyOf prov:endedAtTime.</editorialNote>
+        <rdfs:comment xml:lang="en">The time at which an activity ended. See also prov:startedAtTime.</rdfs:comment>
+        <category>starting-point</category>
+        <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#End"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#atTime"/>
+    </owl:DatatypeProperty>
+   <owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#generatedAtTime">
+        <rdfs:label>generatedAtTime</rdfs:label>
+        <category>expanded</category>
+        <component>entities-activities</component>
+        <editorialNote xml:lang="en">It is the intent that the property chain holds: (prov:qualifiedGeneration o prov:atTime) rdfs:subPropertyOf prov:generatedAtTime.</editorialNote>
+        <rdfs:comment xml:lang="en">The time at which an entity was completely created and is available for use.</rdfs:comment>
+        <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Generation"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#atTime"/>
+    </owl:DatatypeProperty>
+   <owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#invalidatedAtTime">
+        <rdfs:label>invalidatedAtTime</rdfs:label>
+        <editorialNote xml:lang="en">It is the intent that the property chain holds: (prov:qualifiedInvalidation o prov:atTime) rdfs:subPropertyOf prov:invalidatedAtTime.</editorialNote>
+        <category>expanded</category>
+        <rdfs:comment xml:lang="en">The time at which an entity was invalidated (i.e., no longer usable).</rdfs:comment>
+        <component>entities-activities</component>
+        <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Invalidation"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#atTime"/>
+    </owl:DatatypeProperty>
+   <owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#startedAtTime">
+        <rdfs:label>startedAtTime</rdfs:label>
+        <category>starting-point</category>
+        <editorialNote xml:lang="en">It is the intent that the property chain holds: (prov:qualifiedStart o prov:atTime) rdfs:subPropertyOf prov:startedAtTime.</editorialNote>
+        <component>entities-activities</component>
+        <rdfs:comment xml:lang="en">The time at which an activity started. See also prov:endedAtTime.</rdfs:comment>
+        <rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#dateTime"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#Start"/>
+        <qualifiedForm rdf:resource="http://www.w3.org/ns/prov#atTime"/>
+    </owl:DatatypeProperty>
+   <owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#value">
+        <rdfs:label>value</rdfs:label>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-value</dm>
+        <category>expanded</category>
+        <editorialNote>The editor's definition comes from http://www.w3.org/TR/rdf-primer/#rdfvalue</editorialNote>
+        <definition xml:lang="en">Provides a value that is a direct representation of an entity.</definition>
+        <component>entities-activities</component>
+        <editorialNote xml:lang="en">This property serves the same purpose as rdf:value, but has been reintroduced to avoid some of the definitional ambiguity in the RDF specification (specifically, 'may be used in describing structured values').</editorialNote>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+    </owl:DatatypeProperty>
+   <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Activity">
+        <rdfs:label>Activity</rdfs:label>
+        <owl:disjointWith rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Activity</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Activity</n>
+        <component>entities-activities</component>
+        <category>starting-point</category>
+        <definition>An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#ActivityInfluence">
+        <rdfs:label>ActivityInfluence</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Influence"/>
+        <rdfs:subClassOf>
+            <owl:Restriction>
+                <owl:onProperty rdf:resource="http://www.w3.org/ns/prov#hadActivity"/>
+                <owl:maxCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">0</owl:maxCardinality>
+            </owl:Restriction>
+        </rdfs:subClassOf>
+        <owl:disjointWith rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
+        <editorsDefinition xml:lang="en">ActivitiyInfluence is the capacity of an activity to have an effect on the character, development, or behavior of another by means of generation, invalidation, communication, or other.</editorsDefinition>
+        <rdfs:comment xml:lang="en">ActivityInfluence provides additional descriptions of an Activity's binary influence upon any other kind of resource. Instances of ActivityInfluence use the prov:activity property to cite the influencing Activity.</rdfs:comment>
+        <rdfs:comment xml:lang="en">It is not recommended that the type ActivityInfluence be asserted without also asserting one of its more specific subclasses.</rdfs:comment>
+        <category>qualified</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov#activity"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Agent">
+        <rdfs:label>Agent</rdfs:label>
+        <owl:disjointWith rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Agent</n>
+        <definition xml:lang="en">An agent is something that bears some form of responsibility for an activity taking place, for the existence of an entity, or for another agent's activity. </definition>
+        <category>starting-point</category>
+        <component>agents-responsibility</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#AgentInfluence">
+        <rdfs:label>AgentInfluence</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Influence"/>
+        <editorsDefinition xml:lang="en">AgentInfluence is the capacity of an agent to have an effect on the character, development, or behavior of another by means of attribution, association, delegation, or other.</editorsDefinition>
+        <rdfs:comment xml:lang="en">AgentInfluence provides additional descriptions of an Agent's binary influence upon any other kind of resource. Instances of AgentInfluence use the prov:agent property to cite the influencing Agent.</rdfs:comment>
+        <category>qualified</category>
+        <rdfs:comment xml:lang="en">It is not recommended that the type AgentInfluence be asserted without also asserting one of its more specific subclasses.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov#agent"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Association">
+        <rdfs:label>Association</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#AgentInfluence"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association</n>
+        <component>agents-responsibility</component>
+        <rdfs:comment xml:lang="en">An instance of prov:Association provides additional descriptions about the binary prov:wasAssociatedWith relation from an prov:Activity to some prov:Agent that had some responsiblity for it. For example, :baking prov:wasAssociatedWith :baker; prov:qualifiedAssociation [ a prov:Association; prov:agent :baker; :foo :bar ].</rdfs:comment>
+        <category>qualified</category>
+        <definition xml:lang="en">An activity association is an assignment of responsibility to an agent for an activity, indicating that the agent had a role in the activity. It further allows for a plan to be specified, which is the plan intended by the agent to achieve some goals in the context of this activity.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasAssociatedWith"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Attribution">
+        <rdfs:label>Attribution</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#AgentInfluence"/>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribution</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribution</n>
+        <rdfs:comment xml:lang="en">An instance of prov:Attribution provides additional descriptions about the binary prov:wasAttributedTo relation from an prov:Entity to some prov:Agent that had some responsible for it. For example, :cake prov:wasAttributedTo :baker; prov:qualifiedAttribution [ a prov:Attribution; prov:entity :baker; :foo :bar ].</rdfs:comment>
+        <definition xml:lang="en">Attribution is the ascribing of an entity to an agent.
+
+When an entity e is attributed to agent ag, entity e was generated by some unspecified activity that in turn was associated to agent ag. Thus, this relation is useful when the activity is not known, or irrelevant.</definition>
+        <category>qualified</category>
+        <component>agents-responsibility</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasAttributedTo"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Bundle">
+        <rdfs:label>Bundle</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-bundle-entity</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-bundle-declaration</n>
+        <category>expanded</category>
+        <definition xml:lang="en">A bundle is a named set of provenance descriptions, and is itself an Entity, so allowing provenance of provenance to be expressed.</definition>
+        <rdfs:comment xml:lang="en">Note that there are kinds of bundles (e.g. handwritten letters, audio recordings, etc.) that are not expressed in PROV-O, but can be still be described by PROV-O.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Collection">
+        <rdfs:label>Collection</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-collection</dm>
+        <component>collections</component>
+        <category>expanded</category>
+        <definition xml:lang="en">A collection is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the collections.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Communication">
+        <rdfs:label>Communication</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#ActivityInfluence"/>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Communication</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-wasInformedBy</n>
+        <component>entities-activities</component>
+        <category>qualified</category>
+        <rdfs:comment xml:lang="en">An instance of prov:Communication provides additional descriptions about the binary prov:wasInformedBy relation from an informed prov:Activity to the prov:Activity that informed it. For example, :you_jumping_off_bridge prov:wasInformedBy :everyone_else_jumping_off_bridge; prov:qualifiedCommunication [ a prov:Communication; prov:activity :everyone_else_jumping_off_bridge; :foo :bar ].</rdfs:comment>
+        <definition>Communication is the exchange of an entity by two activities, one activity using the entity generated by the other.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasInformedBy"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Delegation">
+        <rdfs:label>Delegation</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#AgentInfluence"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-delegation</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-delegation</n>
+        <category>qualified</category>
+        <rdfs:comment xml:lang="en">An instance of prov:Delegation provides additional descriptions about the binary prov:actedOnBehalfOf relation from a performing prov:Agent to some prov:Agent for whom it was performed. For example, :mixing prov:wasAssociatedWith :toddler . :toddler prov:actedOnBehalfOf :mother; prov:qualifiedDelegation [ a prov:Delegation; prov:entity :mother; :foo :bar ].</rdfs:comment>
+        <definition xml:lang="en">Delegation is the assignment of authority and responsibility to an agent (by itself or by another agent) to carry out a specific activity as a delegate or representative, while the agent it acts on behalf of retains some responsibility for the outcome of the delegated work.
+
+For example, a student acted on behalf of his supervisor, who acted on behalf of the department chair, who acted on behalf of the university; all those agents are responsible in some way for the activity that took place but we do not say explicitly who bears responsibility and to what degree.</definition>
+        <component>agents-responsibility</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#actedOnBehalfOf"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Derivation">
+        <rdfs:label>Derivation</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Derivation</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#Derivation-Relation</n>
+        <definition xml:lang="en">A derivation is a transformation of an entity into another, an update of an entity resulting in a new one, or the construction of a new entity based on a pre-existing entity.</definition>
+        <component>derivations</component>
+        <rdfs:comment xml:lang="en">An instance of prov:Derivation provides additional descriptions about the binary prov:wasDerivedFrom relation from some derived prov:Entity to another prov:Entity from which it was derived. For example, :chewed_bubble_gum prov:wasDerivedFrom :unwrapped_bubble_gum; prov:qualifiedDerivation [ a prov:Derivation; prov:entity :unwrapped_bubble_gum; :foo :bar ].</rdfs:comment>
+        <rdfs:comment xml:lang="en">The more specific forms of prov:Derivation (i.e., prov:Revision, prov:Quotation, prov:PrimarySource) should be asserted if they apply.</rdfs:comment>
+        <category>qualified</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#EmptyCollection">
+        <rdfs:label xml:lang="en">EmptyCollection</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Collection"/>
+        <category>expanded</category>
+        <component>collections</component>
+        <definition xml:lang="en">An empty collection is a collection without members.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#End">
+        <rdfs:label>End</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-End</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-End</n>
+        <rdfs:comment xml:lang="en">An instance of prov:End provides additional descriptions about the binary prov:wasEndedBy relation from some ended prov:Activity to an prov:Entity that ended it. For example, :ball_game prov:wasEndedBy :buzzer; prov:qualifiedEnd [ a prov:End; prov:entity :buzzer; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ].</rdfs:comment>
+        <category>qualified</category>
+        <definition xml:lang="en">End is when an activity is deemed to have been ended by an entity, known as trigger. The activity no longer exists after its end. Any usage, generation, or invalidation involving an activity precedes the activity's end. An end may refer to a trigger entity that terminated the activity, or to an activity, known as ender that generated the trigger.</definition>
+        <component>entities-activities</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasEndedBy"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Entity">
+        <rdfs:label>Entity</rdfs:label>
+        <owl:disjointWith rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-entity</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Entity</n>
+        <component>entities-activities</component>
+        <definition xml:lang="en">An entity is a physical, digital, conceptual, or other kind of thing with some fixed aspects; entities may be real or imaginary. </definition>
+        <category>starting-point</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#EntityInfluence">
+        <rdfs:label>EntityInfluence</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Influence"/>
+        <editorsDefinition xml:lang="en">EntityInfluence is the capacity of an entity to have an effect on the character, development, or behavior of another by means of usage, start, end, derivation, or other. </editorsDefinition>
+        <rdfs:comment xml:lang="en">EntityInfluence provides additional descriptions of an Entity's binary influence upon any other kind of resource. Instances of EntityInfluence use the prov:entity property to cite the influencing Entity.</rdfs:comment>
+        <rdfs:comment xml:lang="en">It is not recommended that the type EntityInfluence be asserted without also asserting one of its more specific subclasses.</rdfs:comment>
+        <category>qualified</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov#entity"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Generation">
+        <rdfs:label>Generation</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#ActivityInfluence"/>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Generation</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Generation</n>
+        <rdfs:comment xml:lang="en">An instance of prov:Generation provides additional descriptions about the binary prov:wasGeneratedBy relation from a generated prov:Entity to the prov:Activity that generated it. For example, :cake prov:wasGeneratedBy :baking; prov:qualifiedGeneration [ a prov:Generation; prov:activity :baking; :foo :bar ].</rdfs:comment>
+        <category>qualified</category>
+        <component>entities-activities</component>
+        <definition xml:lang="en">Generation is the completion of production of a new entity by an activity. This entity did not exist before generation and becomes available for usage after this generation.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasGeneratedBy"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Influence">
+        <rdfs:label>Influence</rdfs:label>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-influence</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-influence</n>
+        <component>derivations</component>
+        <rdfs:comment xml:lang="en">An instance of prov:Influence provides additional descriptions about the binary prov:wasInfluencedBy relation from some influenced Activity, Entity, or Agent to the influencing Activity, Entity, or Agent. For example, :stomach_ache prov:wasInfluencedBy :spoon; prov:qualifiedInfluence [ a prov:Influence; prov:entity :spoon; :foo :bar ] . Because prov:Influence is a broad relation, the more specific relations (Communication, Delegation, End, etc.) should be used when applicable.</rdfs:comment>
+        <rdfs:comment xml:lang="en">Because prov:Influence is a broad relation, its most specific subclasses (e.g. prov:Communication, prov:Delegation, prov:End, prov:Revision, etc.) should be used when applicable.</rdfs:comment>
+        <category>qualified</category>
+        <definition xml:lang="en">Influence is the capacity of an entity, activity, or agent to have an effect on the character, development, or behavior of another by means of usage, start, end, generation, invalidation, communication, derivation, attribution, association, or delegation.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasInfluencedBy"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#InstantaneousEvent">
+        <rdfs:label>InstantaneousEvent</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#dfn-event</constraints>
+        <component>entities-activities</component>
+        <rdfs:comment xml:lang="en">An instantaneous event, or event for short, happens in the world and marks a change in the world, in its activities and in its entities. The term 'event' is commonly used in process algebra with a similar meaning. Events represent communications or interactions; they are assumed to be atomic and instantaneous.</rdfs:comment>
+        <definition xml:lang="en">The PROV data model is implicitly based on a notion of instantaneous events (or just events), that mark transitions in the world. Events include generation, usage, or invalidation of entities, as well as starting or ending of activities. This notion of event is not first-class in the data model, but it is useful for explaining its other concepts and its semantics.</definition>
+        <category>qualified</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Invalidation">
+        <rdfs:label>Invalidation</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#ActivityInfluence"/>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Invalidation</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Invalidation</n>
+        <component>entities-activities</component>
+        <definition>Invalidation is the start of the destruction, cessation, or expiry of an existing entity by an activity. The entity is no longer available for use (or further invalidation) after invalidation. Any generation or usage of an entity precedes its invalidation.</definition>
+        <category>qualified</category>
+        <rdfs:comment xml:lang="en">An instance of prov:Invalidation provides additional descriptions about the binary prov:wasInvalidatedBy relation from an invalidated prov:Entity to the prov:Activity that invalidated it. For example, :uncracked_egg prov:wasInvalidatedBy :baking; prov:qualifiedInvalidation [ a prov:Invalidation; prov:activity :baking; :foo :bar ].</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasInvalidatedBy"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Location">
+        <rdfs:label>Location</rdfs:label>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-location</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute</n>
+        <definition xml:lang="en">A location can be an identifiable geographic place (ISO 19112), but it can also be a non-geographic place such as a directory, row, or column. As such, there are numerous ways in which location can be expressed, such as by a coordinate, address, landmark, and so forth.</definition>
+        <category>expanded</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov#atLocation"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Organization">
+        <rdfs:label>Organization</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Agent"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types</n>
+        <definition>An organization is a social or legal institution such as a company, society, etc.</definition>
+        <category>expanded</category>
+        <component>agents-responsibility</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Person">
+        <rdfs:label>Person</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Agent"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types</n>
+        <category>expanded</category>
+        <component>agents-responsibility</component>
+        <definition xml:lang="en">Person agents are people.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Plan">
+        <rdfs:label>Plan</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Association</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Association</n>
+        <definition>A plan is an entity that represents a set of actions or steps intended by one or more agents to achieve some goals.</definition>
+        <category>expanded</category>
+        <rdfs:comment xml:lang="en">There exist no prescriptive requirement on the nature of plans, their representation, the actions or steps they consist of, or their intended goals. Since plans may evolve over time, it may become necessary to track their provenance, so plans themselves are entities. Representing the plan explicitly in the provenance can be useful for various tasks: for example, to validate the execution as represented in the provenance record, to manage expectation failures, or to provide explanations.</rdfs:comment>
+        <category>qualified</category>
+        <component>agents-responsibility</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#PrimarySource">
+        <rdfs:label>PrimarySource</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-primary-source</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-original-source</n>
+        <category>qualified</category>
+        <component>derivations</component>
+        <definition xml:lang="en">A primary source for a topic refers to something produced by some agent with direct experience and knowledge about the topic, at the time of the topic's study, without benefit from hindsight.
+
+Because of the directness of primary sources, they 'speak for themselves' in ways that cannot be captured through the filter of secondary sources. As such, it is important for secondary sources to reference those primary sources from which they were derived, so that their reliability can be investigated.
+
+A primary source relation is a particular case of derivation of secondary materials from their primary sources. It is recognized that the determination of primary sources can be up to interpretation, and should be done according to conventions accepted within the application's domain.</definition>
+        <rdfs:comment xml:lang="en">An instance of prov:PrimarySource provides additional descriptions about the binary prov:hadPrimarySource relation from some secondary prov:Entity to an earlier, primary prov:Entity. For example, :blog prov:hadPrimarySource :newsArticle; prov:qualifiedPrimarySource [ a prov:PrimarySource; prov:entity :newsArticle; :foo :bar ] .</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#hadPrimarySource"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Quotation">
+        <rdfs:label>Quotation</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-quotation</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-quotation</n>
+        <rdfs:comment xml:lang="en">An instance of prov:Quotation provides additional descriptions about the binary prov:wasQuotedFrom relation from some taken prov:Entity from an earlier, larger prov:Entity. For example, :here_is_looking_at_you_kid prov:wasQuotedFrom :casablanca_script; prov:qualifiedQuotation [ a prov:Quotation; prov:entity :casablanca_script; :foo :bar ].</rdfs:comment>
+        <component>derivations</component>
+        <category>qualified</category>
+        <definition xml:lang="en">A quotation is the repeat of (some or all of) an entity, such as text or image, by someone who may or may not be its original author. Quotation is a particular case of derivation.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasQuotedFrom"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Revision">
+        <rdfs:label>Revision</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-revision</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Revision</n>
+        <component>derivations</component>
+        <category>qualified</category>
+        <definition xml:lang="en">A revision is a derivation for which the resulting entity is a revised version of some original. The implication here is that the resulting entity contains substantial content from the original. Revision is a particular case of derivation.</definition>
+        <rdfs:comment xml:lang="en">An instance of prov:Revision provides additional descriptions about the binary prov:wasRevisionOf relation from some newer prov:Entity to an earlier prov:Entity. For example, :draft_2 prov:wasRevisionOf :draft_1; prov:qualifiedRevision [ a prov:Revision; prov:entity :draft_1; :foo :bar ].</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasRevisionOf"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Role">
+        <rdfs:label>Role</rdfs:label>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-attribute-role</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-attribute</n>
+        <definition xml:lang="en">A role is the function of an entity or agent with respect to an activity, in the context of a usage, generation, invalidation, association, start, and end.</definition>
+        <category>qualified</category>
+        <component>agents-responsibility</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov#hadRole"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#SoftwareAgent">
+        <rdfs:label>SoftwareAgent</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Agent"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-agent</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-types</n>
+        <component>agents-responsibility</component>
+        <definition xml:lang="en">A software agent is running software.</definition>
+        <category>expanded</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Start">
+        <rdfs:label>Start</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Start</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Start</n>
+        <component>entities-activities</component>
+        <category>qualified</category>
+        <rdfs:comment xml:lang="en">An instance of prov:Start provides additional descriptions about the binary prov:wasStartedBy relation from some started prov:Activity to an prov:Entity that started it. For example, :foot_race prov:wasStartedBy :bang; prov:qualifiedStart [ a prov:Start; prov:entity :bang; :foo :bar; prov:atTime '2012-03-09T08:05:08-05:00'^^xsd:dateTime ] .</rdfs:comment>
+        <definition xml:lang="en">Start is when an activity is deemed to have been started by an entity, known as trigger. The activity did not exist before its start. Any usage, generation, or invalidation involving an activity follows the activity's start. A start may refer to a trigger entity that set off the activity, or to an activity, known as starter, that generated the trigger.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#wasStartedBy"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Usage">
+        <rdfs:label>Usage</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#EntityInfluence"/>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#InstantaneousEvent"/>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-constraints-20130430/#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-dm-20130430/#term-Usage</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/REC-prov-n-20130430/#expression-Usage</n>
+        <rdfs:comment xml:lang="en">An instance of prov:Usage provides additional descriptions about the binary prov:used relation from some prov:Activity to an prov:Entity that it used. For example, :keynote prov:used :podium; prov:qualifiedUsage [ a prov:Usage; prov:entity :podium; :foo :bar ].</rdfs:comment>
+        <definition xml:lang="en">Usage is the beginning of utilizing an entity by an activity. Before usage, the activity had not begun to utilize this entity and could not have been affected by the entity.</definition>
+        <category>qualified</category>
+        <component>entities-activities</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#used"/>
+    </owl:Class>
+   <owl:NamedIndividual rdf:about="http://www.w3.org/ns/prov#EmptyCollection">
+        <rdfs:label xml:lang="en">EmptyCollection</rdfs:label>
+        <category>expanded</category>
+        <component>collections</component>
+        <definition xml:lang="en">An empty collection is a collection without members.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:NamedIndividual>
+
+
+
+
+
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov-o-inverses#"/>
+
+   <!--The following was imported from http://www.w3.org/ns/prov-o-inverses#-->
+
+   <rdf:Description rdf:about="prov#actedOnBehalfOf">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#activity">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#activityOfInfluence">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>activityOfInfluence</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#activity"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#agent">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#agentOfInfluence">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>agentOfInfluence</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#agent"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#alternateOf">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>alternateOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#alternateOf"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#atLocation">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#contributed">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>contributed</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#wasAttributedTo"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#ended">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>ended</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#wasEndedBy"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#entity">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#entityOfInfluence">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>entityOfInfluence</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#entity"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#generalizationOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>generalizationOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#specializationOf"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#generated">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>generated</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#wasGeneratedBy"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#generatedAsDerivation">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>generatedAsDerivation</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#hadGeneration"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#hadActivity">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#hadDelegate">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>hadDelegate</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#actedOnBehalfOf"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#hadDerivation">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>hadDerivation</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#wasDerivedFrom"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#hadGeneration">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#hadInfluence">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>hadInfluence</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#influencer"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#hadMember">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#hadPlan">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#hadPrimarySource">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#hadRevision">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>hadRevision</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#wasRevisionOf"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#hadRole">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#hadUsage">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#influenced">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>influenced</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#wasInfluencedBy"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#influencer">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#informed">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>informed</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#wasInformedBy"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#invalidated">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>invalidated</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#wasInvalidatedBy"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#locationOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>locationOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#atLocation"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedAssociation">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedAssociationOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>qualifiedAssociationOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedAssociation"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedAttribution">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedAttributionOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>qualifiedAttributionOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedAttribution"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedCommunication">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedCommunicationOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>qualifiedCommunicationOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedCommunication"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedDelegation">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedDelegationOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>qualifiedDelegationOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedDelegation"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedDerivation">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedDerivationOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>qualifiedDerivationOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedDerivation"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedEnd">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedEndOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>qualifiedEndOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedEnd"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedGeneration">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedGenerationOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>qualifiedGenerationOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedGeneration"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedInfluence">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedInfluenceOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>qualifiedInfluenceOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedInfluence"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedInvalidation">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedInvalidationOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>qualifiedInvalidationOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedInvalidation"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedPrimarySource">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedQuotation">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedQuotationOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>qualifiedQuotationOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedQuotation"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedRevision">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedSourceOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>qualifiedSourceOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedPrimarySource"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedStart">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedStartOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>qualifiedStartOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedStart"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedUsage">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#qualifiedUsingActivity">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>qualifiedUsingActivity</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedUsage"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#quotedAs">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>quotedAs</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#wasQuotedFrom"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#revisedEntity">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>revisedEntity</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#qualifiedRevision"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#specializationOf">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#started">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>started</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#wasStartedBy"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#used">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasActivityOfInfluence">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>wasActivityOfInfluence</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#hadActivity"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasAssociateFor">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>wasAssociateFor</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#wasAssociatedWith"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasAssociatedWith">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasAttributedTo">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasDerivedFrom">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasEndedBy">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasGeneratedBy">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>wasGeneratedBy</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#generated"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasInfluencedBy">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>wasInfluencedBy</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#influenced"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasInformedBy">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasInvalidatedBy">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>wasInvalidatedBy</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#invalidated"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasMemberOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>wasMemberOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#hadMember"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasPlanOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>wasPlanOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#hadPlan"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasPrimarySourceOf">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>wasPrimarySourceOf</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#hadPrimarySource"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasQuotedFrom">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasRevisionOf">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasRoleIn">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>wasRoleIn</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#hadRole"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasStartedBy">
+      <rdfs:isDefinedBy rdf:resource="prov-o#"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasUsedBy">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>wasUsedBy</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#used"/>
+  </rdf:Description>
+   <rdf:Description rdf:about="prov#wasUsedInDerivation">
+      <rdfs:isDefinedBy rdf:resource="#"/>
+      <rdfs:label>wasUsedInDerivation</rdfs:label>
+      <owl:inverseOf rdf:resource="prov#hadUsage"/>
+  </rdf:Description>
+   <owl:Ontology rdf:about="#">
+      <rdfs:seeAlso rdf:resource="../TR/prov-o/#names-of-inverse-properties"/>
+      <owl:imports rdf:resource="prov-o#"/>
+      <owl:versionIRI rdf:resource="prov-o-inverses-20130430"/>
+      <prov:specializationOf rdf:resource=""/>
+      <prov:wasDerivedFrom rdf:resource="prov-o-20130430"/>
+      <prov:wasRevisionOf rdf:resource="prov-o-inverses-20120312"/>
+  </owl:Ontology>
+
+
+
+
+
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov-aq#"/>
+
+   <!--The following was imported from http://www.w3.org/ns/prov-aq#-->
+
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov-aq#">
+        <rdfs:label xml:lang="en">PROV Access and Query Ontology</rdfs:label>
+        <rdfs:comment rdf:datatype="http://www.w3.org/2001/XMLSchema#string">0.2</rdfs:comment>
+        <rdfs:comment xml:lang="en">This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page). 
+
+If you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/Archives/Public/public-prov-comments/). All feedback is welcome.</rdfs:comment>
+        <owl:versionIRI rdf:resource="http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/"/>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/TR/prov-aq/"/>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:Ontology>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#unqualifiedForm">
+        <rdfs:comment xml:lang="en">Classes and properties used to qualify relationships are annotated with prov:unqualifiedForm to indicate the property used to assert an unqualified provenance relation.</rdfs:comment>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#aq">
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#sharesDefinitionWith">
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#definition">
+        <rdfs:comment xml:lang="en">A definition quoted from PROV-DM or PROV-CONSTRAINTS that describes the concept expressed with this OWL term.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#editorialNote">
+        <rdfs:comment xml:lang="en">A note by the OWL development team about how this term expresses the PROV-DM concept, or how it should be used in context of semantic web or linked data.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label">
+        <rdfs:comment xml:lang="en"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#inverse">
+        <rdfs:comment xml:lang="en">PROV-O does not define all property inverses. The directionalities defined in PROV-O should be given preference over those not defined. However, if users wish to name the inverse of a PROV-O property, the local name given by prov:inverse should be used.</rdfs:comment>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/TR/prov-o/#names-of-inverse-properties"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment">
+        <rdfs:comment xml:lang="en"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#constraints">
+        <rdfs:comment xml:lang="en">A reference to the principal section of the PROV-CONSTRAINTS document that describes this concept.</rdfs:comment>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#versionInfo"/>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso">
+        <rdfs:comment xml:lang="en"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#dm">
+        <rdfs:comment xml:lang="en">A reference to the principal section of the PROV-DM document that describes this concept.</rdfs:comment>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#category">
+        <rdfs:comment xml:lang="en">Classify prov-o terms into three categories, including 'starting-point', 'qualifed', and 'extended'. This classification is used by the prov-o html document to gently introduce prov-o terms to its users. </rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy"/>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#editorsDefinition">
+        <rdfs:comment xml:lang="en">When the prov-o term does not have a definition drawn from prov-dm, and the prov-o editor provides one.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#definition"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#component">
+        <rdfs:comment xml:lang="en">Classify prov-o terms into six components according to prov-dm, including 'agents-responsibility', 'alternate', 'annotations', 'collections', 'derivations', and 'entities-activities'. This classification is used so that readers of prov-o specification can find its correspondence with the prov-dm specification.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#qualifiedForm">
+        <rdfs:comment xml:lang="en">This annotation property links a subproperty of prov:wasInfluencedBy with the subclass of prov:Influence and the qualifying property that are used to qualify it. 
+
+Example annotation:
+
+    prov:wasGeneratedBy prov:qualifiedForm prov:qualifiedGeneration, prov:Generation .
+
+Then this unqualified assertion:
+
+    :entity1 prov:wasGeneratedBy :activity1 .
+
+can be qualified by adding:
+
+   :entity1 prov:qualifiedGeneration :entity1Gen .
+   :entity1Gen 
+       a prov:Generation, prov:Influence;
+       prov:activity :activity1;
+       :customValue 1337 .
+
+Note how the value of the unqualified influence (prov:wasGeneratedBy :activity1) is mirrored as the value of the prov:activity (or prov:entity, or prov:agent) property on the influence class.</rdfs:comment>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#todo"/>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/ns/prov#n">
+        <rdfs:comment xml:lang="en">A reference to the principal section of the PROV-M document that describes this concept.</rdfs:comment>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:AnnotationProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/2002/07/owl#topObjectProperty"/>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#describesService">
+        <rdfs:label>describesService</rdfs:label>
+        <aq rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/rovenance-query-service-description</aq>
+        <inverse>serviceDescribedBy</inverse>
+        <category>access-and-query</category>
+        <rdfs:comment xml:lang="en">relates a generic provenance query service resource (type prov:ServiceDescription) to a specific query service description (e.g. a prov:DirectQueryService or a sd:Service).</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadUsage">
+        <rdfs:label>hadUsage</rdfs:label>
+        <category>qualified</category>
+        <rdfs:comment xml:lang="en">The _optional_ Usage involved in an Entity's Derivation.</rdfs:comment>
+        <inverse>wasUsedInDerivation</inverse>
+        <component>derivations</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#Usage"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#has_anchor">
+        <rdfs:label>has_anchor</rdfs:label>
+        <aq rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html</aq>
+        <category>access-and-query</category>
+        <rdfs:comment xml:lang="en">Indicates anchor URI for a potentially dynamic resource instance.</rdfs:comment>
+        <inverse>anchorOf</inverse>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#has_provenance">
+        <rdfs:label>has_provenance</rdfs:label>
+        <aq rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#resource-represented-as-html</aq>
+        <inverse>provenanceOf</inverse>
+        <rdfs:comment xml:lang="en">Indicates a provenance-URI for a resource; the resource identified by this property presents a provenance record about its subject or anchor resource.</rdfs:comment>
+        <category>access-and-query</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#has_query_service">
+        <rdfs:label>hasProvenanceService</rdfs:label>
+        <aq rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/</aq>
+        <category>access-and-query</category>
+        <inverse>provenanceQueryServiceOf</inverse>
+        <rdfs:comment xml:lang="en">Indicates a provenance query service that can access provenance related to its subject or anchor resource.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#pingback">
+        <rdfs:label>provenance pingback</rdfs:label>
+        <aq rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-pingback</aq>
+        <rdfs:comment xml:lang="en">Relates a resource to a provenance pingback service that may receive additional provenance links about the resource.</rdfs:comment>
+        <category>access-and-query</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#specializationOf">
+        <rdfs:label>specializationOf</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-constraints.html#prov-dm-constraints-fig</constraints>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-specialization</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-specialization</n>
+        <component>alternate</component>
+        <category>expanded</category>
+        <inverse>generalizationOf</inverse>
+        <definition xml:lang="en">An entity that is a specialization of another shares all aspects of the latter, and additionally presents more specific aspects of the same thing as the latter. In particular, the lifetime of the entity being specialized contains that of any specialization. Examples of aspects include a time period, an abstraction, and a context associated with the entity.</definition>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/2002/07/owl#topObjectProperty"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov#alternateOf"/>
+    </owl:ObjectProperty>
+   <owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#provenanceUriTemplate">
+        <rdfs:label>provenanceUriTemplate</rdfs:label>
+        <aq rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/</aq>
+        <category>access-and-query</category>
+        <rdfs:comment xml:lang="en">Relates a provenance service to a URI template string for constructing provenance-URIs.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:DatatypeProperty>
+   <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#DirectQueryService">
+        <rdfs:label>ProvenanceService</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#SoftwareAgent"/>
+        <aq rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery</aq>
+        <category>access-and-query</category>
+        <rdfs:comment>Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#ServiceDescription">
+        <rdfs:label>ServiceDescription</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#SoftwareAgent"/>
+        <aq rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-aq-20130430/#provenance-query-service-discovery</aq>
+        <rdfs:comment>Type for a generic provenance query service. Mainly for use in RDF provenance query service descriptions, to facilitate discovery in linked data environments.</rdfs:comment>
+        <category>access-and-query</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#SoftwareAgent">
+        <rdfs:label>SoftwareAgent</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/2002/07/owl#Thing"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-dm.html#term-agent</dm>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2012/WD-prov-dm-20120703/prov-n.html#expression-types</n>
+        <component>agents-responsibility</component>
+        <definition xml:lang="en">A software agent is running software.</definition>
+        <category>expanded</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:Class>
+
+
+
+
+
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov-dc#"/>
+
+   <!--The following was imported from http://www.w3.org/ns/prov-dc#-->
+
+   <owl:Ontology xmlns="http://www.w3.org/ns/prov-dc#" rdf:about="http://www.w3.org/ns/prov-dc#">
+        <rdfs:label xml:lang="en">Dublin Core extensions of the W3C PROVenance Interchange Ontology (PROV-O) </rdfs:label>
+        <rdfs:comment xml:lang="en">This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page). 
+
+If you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/Archives/Public/public-prov-comments/). All feedback is welcome.</rdfs:comment>
+        <owl:imports rdf:resource="http://www.w3.org/ns/prov-o#"/>
+    </owl:Ontology>
+   <owl:Class xmlns="http://www.w3.org/ns/prov-dc#"
+              rdf:about="http://www.w3.org/ns/prov#Accept">
+        <rdfs:label xml:lang="en">Accept</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <prov:definition xml:lang="en">Activity that identifies the acceptance of a resource (e.g., an article in a conference)</prov:definition>
+    </owl:Class>
+   <owl:Class xmlns="http://www.w3.org/ns/prov-dc#"
+              rdf:about="http://www.w3.org/ns/prov#Contribute">
+        <rdfs:label xml:lang="en">Contribute
+</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <prov:definition xml:lang="en">Activity that identifies any contribution of an agent to a resource. </prov:definition>
+    </owl:Class>
+   <owl:Class xmlns="http://www.w3.org/ns/prov-dc#"
+              rdf:about="http://www.w3.org/ns/prov#Contributor">
+        <rdfs:label xml:lang="en">Contributor</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Role"/>
+        <prov:definition xml:lang="en">Role with the function of having responsibility for making contributions to a resource. The Agent assigned to this role is associated with a Modify or Create Activities</prov:definition>
+    </owl:Class>
+   <owl:Class xmlns="http://www.w3.org/ns/prov-dc#"
+              rdf:about="http://www.w3.org/ns/prov#Copyright">
+        <rdfs:label xml:lang="en">Copyright</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <prov:definition xml:lang="en">Activity that identifies the Copyrighting activity associated to a resource.</prov:definition>
+    </owl:Class>
+   <owl:Class xmlns="http://www.w3.org/ns/prov-dc#"
+              rdf:about="http://www.w3.org/ns/prov#Create">
+        <rdfs:label xml:lang="en">Create</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Contribute"/>
+        <prov:definition xml:lang="en">Activity that identifies the creation of a resource</prov:definition>
+    </owl:Class>
+   <owl:Class xmlns="http://www.w3.org/ns/prov-dc#"
+              rdf:about="http://www.w3.org/ns/prov#Creator">
+        <rdfs:label xml:lang="en">Creator</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Contributor"/>
+        <prov:definition xml:lang="en">Role with the function of creating a resource. The Agent assigned to this role is associated with a Create Activity</prov:definition>
+    </owl:Class>
+   <owl:Class xmlns="http://www.w3.org/ns/prov-dc#"
+              rdf:about="http://www.w3.org/ns/prov#Modify">
+        <rdfs:label xml:lang="en">Modify</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <prov:definition xml:lang="en">Activity that identifies the modification of a resource. </prov:definition>
+    </owl:Class>
+   <owl:Class xmlns="http://www.w3.org/ns/prov-dc#"
+              rdf:about="http://www.w3.org/ns/prov#Publish">
+        <rdfs:label xml:lang="en">Publish</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <prov:definition xml:lang="en">Activity that identifies the publication of a resource</prov:definition>
+    </owl:Class>
+   <owl:Class xmlns="http://www.w3.org/ns/prov-dc#"
+              rdf:about="http://www.w3.org/ns/prov#Publisher">
+        <rdfs:label xml:lang="en">Publisher</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Role"/>
+        <prov:definition xml:lang="en">Role with the function of publishing a resource. The Agent assigned to this role is associated with a Publish Activity</prov:definition>
+    </owl:Class>
+   <owl:Class xmlns="http://www.w3.org/ns/prov-dc#"
+              rdf:about="http://www.w3.org/ns/prov#Replace">
+        <rdfs:label xml:lang="en">Replace</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <prov:definition xml:lang="en">Activity that identifies the replacement of a resource.</prov:definition>
+    </owl:Class>
+   <owl:Class xmlns="http://www.w3.org/ns/prov-dc#"
+              rdf:about="http://www.w3.org/ns/prov#RightsAssignment">
+        <rdfs:label xml:lang="en">RightsAssignment</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <prov:definition xml:lang="en">Activity that identifies the rights assignment of a resource.</prov:definition>
+    </owl:Class>
+   <owl:Class xmlns="http://www.w3.org/ns/prov-dc#"
+              rdf:about="http://www.w3.org/ns/prov#RightsHolder">
+        <rdfs:label xml:lang="en">RightsHolder</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Role"/>
+        <prov:definition xml:lang="en">Role with the function of owning or managing rights over a resource. The Agent assigned to this role is associated with a RightsAssignment Activity</prov:definition>
+    </owl:Class>
+   <owl:Class xmlns="http://www.w3.org/ns/prov-dc#"
+              rdf:about="http://www.w3.org/ns/prov#Submit">
+        <rdfs:label xml:lang="en">Submit</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Activity"/>
+        <prov:definition xml:lang="en">Activity that identifies the issuance (e.g., publication) of a resource. </prov:definition>
+    </owl:Class>
+
+
+
+
+
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov-dictionary#"/>
+
+   <!--The following was imported from http://www.w3.org/ns/prov-dictionary#-->
+
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov-dictionary#">
+        <rdfs:label xml:lang="en">W3C PROVenance Interchange Ontology (PROV-O) Dictionary Extension</rdfs:label>
+        <rdfs:comment xml:lang="en">This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page). 
+
+If you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/Archives/Public/public-prov-comments/). All feedback is welcome.</rdfs:comment>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/TR/prov-dictionary/"/>
+        <rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov"/>
+    </owl:Ontology>
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov#"/>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#derivedByInsertionFrom">
+        <rdfs:label>derivedByInsertionFrom</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion</n>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion</dm>
+        <definition>The dictionary was derived from the other by insertion. Can be qualified with prov:qualifiedInsertion, which shows details of the insertion, in particular the inserted key-entity pairs.</definition>
+        <component>collections</component>
+        <category>collections</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Dictionary"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Dictionary"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#derivedByRemovalFrom">
+        <rdfs:label>derivedByRemovalFrom</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal</n>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal</dm>
+        <component>collections</component>
+        <definition>The dictionary was derived from the other by removal. Can be qualified with prov:qualifiedRemoval, which shows details of the removal, in particular the removed keys.</definition>
+        <category>collections</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Dictionary"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Dictionary"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#wasDerivedFrom"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#dictionary">
+        <rdfs:label>dictionary</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion</n>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal</n>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion</dm>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal</dm>
+        <category>collections</category>
+        <component>collections</component>
+        <definition>The property used by a prov:Insertion and prov:Removal to cite the prov:Dictionary that was prov:derivedByInsertionFrom or prov:derivedByRemovalFrom another dictionary.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Dictionary"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Insertion"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Removal"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#entity"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#hadDictionaryMember">
+        <rdfs:label>hadDictionaryMember</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership</n>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership</dm>
+        <definition>Describes the key-entity pair that was member of a prov:Dictionary. A dictionary can have multiple members.</definition>
+        <component>collections</component>
+        <category>collections</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Dictionary"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#KeyEntityPair"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#insertedKeyEntityPair">
+        <rdfs:label>insertedKeyEntityPair</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion</n>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion</dm>
+        <component>collections</component>
+        <category>collections</category>
+        <definition>An object property to refer to the prov:KeyEntityPair inserted into a prov:Dictionary.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Insertion"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#KeyEntityPair"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#pairEntity">
+        <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+        <rdfs:label>pairKey</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership</n>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership</dm>
+        <category>collections</category>
+        <component>collections</component>
+        <definition>The entity of a prov:KeyEntityPair, which is an element of a prov:Dictionary.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#KeyEntityPair"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedInsertion">
+        <rdfs:label>qualifiedInsertion</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion</n>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion</dm>
+        <definition>prov:qualifiedInsertion shows the details of an insertion, in particular the inserted key-entity pairs.</definition>
+        <category>collections</category>
+        <component>collections</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Dictionary"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Insertion"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedDerivation"/>
+    </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#qualifiedRemoval">
+        <rdfs:label>qualifiedRemoval</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal</n>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal</dm>
+        <category>collections</category>
+        <component>collections</component>
+        <definition>prov:qualifiedRemoval shows the details of a removal, in particular the removed keys.</definition>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Dictionary"/>
+        <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Removal"/>
+        <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#qualifiedDerivation"/>
+    </owl:ObjectProperty>
+   <owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#pairKey">
+        <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
+        <rdfs:label>pairKey</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership</n>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership</dm>
+        <component>collections</component>
+        <definition>The key of a prov:KeyEntityPair, which is an element of a prov:Dictionary.</definition>
+        <category>collections</category>
+        <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#KeyEntityPair"/>
+    </owl:DatatypeProperty>
+   <owl:DatatypeProperty rdf:about="http://www.w3.org/ns/prov#removedKey">
+        <rdfs:label>removedKey</rdfs:label>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal</n>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal</dm>
+        <category>collections</category>
+        <definition>The key removed in a Removal.</definition>
+        <component>collections</component>
+        <rdfs:range rdf:resource="http://www.w3.org/2000/01/rdf-schema#Literal"/>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Removal"/>
+    </owl:DatatypeProperty>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Dictionary">
+        <rdfs:label>Dictionary</rdfs:label>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition</dm>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary</n>
+        <definition>A dictionary is an entity that provides a structure to some constituents, which are themselves entities. These constituents are said to be member of the dictionary.</definition>
+        <rdfs:comment>A given dictionary forms a given structure for its members. A different structure (obtained either by insertion or removal of members) constitutes a different dictionary.</rdfs:comment>
+        <component>collections</component>
+        <category>collections</category>
+        <rdfs:comment>This concept allows for the provenance of the dictionary, but also of its constituents to be expressed. Such a notion of dictionary corresponds to a wide variety of concrete data structures, such as a maps or associative arrays.</rdfs:comment>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#EmptyDictionary">
+        <rdfs:label>Empty Dictionary</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Dictionary"/>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#EmptyCollection"/>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-conceptual-definition</dm>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary</n>
+        <component>collections</component>
+        <definition>An empty dictionary (i.e. has no members).</definition>
+        <category>collections</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Insertion">
+        <rdfs:label>Insertion</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
+        <rdfs:subClassOf>
+            <owl:Restriction>
+                <owl:onProperty rdf:resource="http://www.w3.org/ns/prov#dictionary"/>
+                <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
+            </owl:Restriction>
+        </rdfs:subClassOf>
+        <rdfs:subClassOf>
+            <owl:Restriction>
+                <owl:onProperty rdf:resource="http://www.w3.org/ns/prov#insertedKeyEntityPair"/>
+                <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
+            </owl:Restriction>
+        </rdfs:subClassOf>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-insertion</n>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-insertion</dm>
+        <definition>Insertion is a derivation that describes the transformation of a dictionary into another, by insertion of one or more key-entity pairs.</definition>
+        <category>collections</category>
+        <component>collections</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#derivedByInsertionFrom"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#KeyEntityPair">
+        <rdfs:label>Key-Entity Pair</rdfs:label>
+        <rdfs:subClassOf>
+            <owl:Restriction>
+                <owl:onProperty rdf:resource="http://www.w3.org/ns/prov#pairEntity"/>
+                <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
+            </owl:Restriction>
+        </rdfs:subClassOf>
+        <rdfs:subClassOf>
+            <owl:Restriction>
+                <owl:onProperty rdf:resource="http://www.w3.org/ns/prov#pairKey"/>
+                <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
+            </owl:Restriction>
+        </rdfs:subClassOf>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-membership</n>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-membership</dm>
+        <definition>A key-entity pair. Part of a prov:Dictionary through prov:hadDictionaryMember. The key is any RDF Literal, the value is a prov:Entity.</definition>
+        <component>collections</component>
+        <category>collections</category>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+    </owl:Class>
+   <owl:Class rdf:about="http://www.w3.org/ns/prov#Removal">
+        <rdfs:label>Removal</rdfs:label>
+        <rdfs:subClassOf rdf:resource="http://www.w3.org/ns/prov#Derivation"/>
+        <rdfs:subClassOf>
+            <owl:Restriction>
+                <owl:onProperty rdf:resource="http://www.w3.org/ns/prov#dictionary"/>
+                <owl:cardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:cardinality>
+            </owl:Restriction>
+        </rdfs:subClassOf>
+        <rdfs:subClassOf>
+            <owl:Restriction>
+                <owl:onProperty rdf:resource="http://www.w3.org/ns/prov#removedKey"/>
+                <owl:minCardinality rdf:datatype="http://www.w3.org/2001/XMLSchema#nonNegativeInteger">1</owl:minCardinality>
+            </owl:Restriction>
+        </rdfs:subClassOf>
+        <constraints rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#dictionary-constraints</constraints>
+        <n rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#expression-dictionary-removal</n>
+        <dm rdf:datatype="http://www.w3.org/2001/XMLSchema#anyURI">http://www.w3.org/TR/2013/NOTE-prov-dictionary-20130430/#term-dictionary-removal</dm>
+        <category>collections</category>
+        <definition>Removal is a derivation that describes the transformation of a dictionary into another, by removing one or more keys.</definition>
+        <component>collections</component>
+        <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov#"/>
+        <unqualifiedForm rdf:resource="http://www.w3.org/ns/prov#derivedByRemovalFrom"/>
+    </owl:Class>
+
+
+
+
+
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov-links#"/>
+
+   <!--The following was imported from http://www.w3.org/ns/prov-links#-->
+
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#comment"/>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#isDefinedBy"/>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#label"/>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2000/01/rdf-schema#seeAlso"/>
+   <owl:Class rdf:about="http://www.w3.org/2002/07/owl#Thing"/>
+   <owl:AnnotationProperty rdf:about="http://www.w3.org/2002/07/owl#versionInfo"/>
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov#"/>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#asInBundle">
+      <rdfs:comment xml:lang="en">prov:asInBundle is used to specify which bundle the general entity of a prov:mentionOf property is described.
+
+When :x prov:mentionOf :y and :y is described in Bundle :b, the triple :x prov:asInBundle :b is also asserted to cite the Bundle in which :y was described.</rdfs:comment>
+      <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+      <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-links#"/>
+      <rdfs:label>asInBundle</rdfs:label>
+      <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Bundle"/>
+      <inverse>contextOf</inverse>
+      <sharesDefinitionWith rdf:resource="http://www.w3.org/ns/prov#mentionOf"/>
+  </owl:ObjectProperty>
+   <owl:ObjectProperty rdf:about="http://www.w3.org/ns/prov#mentionOf">
+      <rdfs:comment xml:lang="en">prov:mentionOf is used to specialize an entity as described in another bundle. It is to be used in conjuction with prov:asInBundle.
+
+prov:asInBundle is used to cite the Bundle in which the generalization was mentioned.</rdfs:comment>
+      <rdfs:domain rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+      <rdfs:isDefinedBy rdf:resource="http://www.w3.org/ns/prov-links#"/>
+      <rdfs:label>mentionOf</rdfs:label>
+      <rdfs:range rdf:resource="http://www.w3.org/ns/prov#Entity"/>
+      <rdfs:subPropertyOf rdf:resource="http://www.w3.org/ns/prov#specializationOf"/>
+      <inverse>hadMention</inverse>
+  </owl:ObjectProperty>
+   <owl:Ontology rdf:about="http://www.w3.org/ns/prov-links#">
+      <rdfs:comment xml:lang="en">This document is published by the Provenance Working Group (http://www.w3.org/2011/prov/wiki/Main_Page). If you wish to make comments regarding this document, please send them to public-prov-comments@w3.org (subscribe public-prov-comments-request@w3.org, archives http://lists.w3.org/Archives/Public/public-prov-comments/
+). All feedback is welcome.</rdfs:comment>
+      <rdfs:label xml:lang="en">W3C PROV Linking Across Provenance Bundles Ontology (PROV-LINKS)</rdfs:label>
+      <rdfs:seeAlso rdf:resource="http://www.w3.org/TR/prov-links/"/>
+      <rdfs:seeAlso rdf:resource="http://www.w3.org/ns/prov"/>
+      <owl:imports rdf:resource="http://www.w3.org/ns/prov-o#"/>
+      <owl:versionIRI rdf:resource="http://www.w3.org/ns/prov-links-20130430"/>
+      <owl:versionInfo xml:lang="en">Working Group Note version 2013-04-30</owl:versionInfo>
+      <specializationOf rdf:resource="http://www.w3.org/ns/prov-links"/>
+  </owl:Ontology>
+</rdf:RDF>
\ No newline at end of file

pom.xml 559(+559 -0)

diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..22721b9
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,559 @@
+<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/maven-v4_0_0.xsd">
+
+	<modelVersion>4.0.0</modelVersion>
+
+	<groupId>org.visualdataweb.vowl.owl2vowl</groupId>
+	<artifactId>OWL2VOWL</artifactId>
+	<version>0.3.7</version>
+	<packaging>${packaging.type}</packaging>
+	<name>${project.groupId}:${project.artifactId}</name>
+	<description>Owl2Vowl is an ontology converter used to convert the given ontology to a json
+		format that is used in the WebVOWL visualization. See
+		https://github.com/VisualDataWeb/WebVOWL or http://vowl.visualdataweb.org/.
+	</description>
+	<url>https://github.com/VisualDataWeb/OWL2VOWL</url>
+
+	<properties>
+		<java.version>1.8</java.version>
+		<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+		<mainClass>de.uni_stuttgart.vis.vowl.owl2vowl.ConsoleMain</mainClass>
+		<packaging.type>jar</packaging.type>
+		<authors>Vincent Link, Steffen Lohmann, Eduard Marbach, Vitalis Wiens</authors>
+	</properties>
+
+	<developers>
+		<developer>
+			<name>Eduard Marbach</name>
+			<email>mail@eduard-marbach.de</email>
+			<organization>University Stuttgart</organization>
+			<organizationUrl>https://github.com/BlackDark</organizationUrl>
+		</developer>
+		<developer>
+			<name>Vincent Link</name>
+			<email>mail@linkvt.de</email>
+			<organization>University Stuttgart</organization>
+			<organizationUrl>https://github.com/linkvt</organizationUrl>
+		</developer>
+	</developers>
+
+	<licenses>
+		<license>
+			<name>MIT License</name>
+			<url>http://www.opensource.org/licenses/mit-license.php</url>
+		</license>
+	</licenses>
+
+	<scm>
+		<connection>scm:git:git@github.com:VisualDataWeb/OWL2VOWL.git</connection>
+		<developerConnection>scm:git:git@github.com:VisualDataWeb/OWL2VOWL.git</developerConnection>
+		<url>git@github.com:VisualDataWeb/OWL2VOWL.git</url>
+		<tag>HEAD</tag>
+	</scm>
+
+	<distributionManagement>
+		<snapshotRepository>
+			<id>ossrh</id>
+			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
+		</snapshotRepository>
+		<repository>
+			<id>ossrh</id>
+			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
+		</repository>
+	</distributionManagement>
+
+	<dependencyManagement>
+		<dependencies>
+			<dependency>
+				<!-- Import dependency management from Spring Boot -->
+				<groupId>org.springframework.boot</groupId>
+				<artifactId>spring-boot-dependencies</artifactId>
+				<version>1.5.6.RELEASE</version>
+				<type>pom</type>
+				<scope>import</scope>
+			</dependency>
+		</dependencies>
+	</dependencyManagement>
+
+
+	<build>
+		<resources>
+			<resource>
+				<directory>src/main/resources</directory>
+				<filtering>true</filtering>
+				<includes>
+					<include>*.properties</include>
+				</includes>
+			</resource>
+			<resource>
+				<directory>src/main/resources</directory>
+				<filtering>false</filtering>
+				<excludes>
+					<exclude>*.properties</exclude>
+				</excludes>
+			</resource>
+		</resources>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<version>3.3</version>
+				<configuration>
+					<source>1.8</source>
+					<target>1.8</target>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.sonatype.plugins</groupId>
+				<artifactId>nexus-staging-maven-plugin</artifactId>
+				<version>1.6.6</version>
+				<extensions>true</extensions>
+				<configuration>
+					<serverId>ossrh</serverId>
+					<nexusUrl>https://oss.sonatype.org/</nexusUrl>
+					<autoReleaseAfterClose>true</autoReleaseAfterClose>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-release-plugin</artifactId>
+				<version>2.5.3</version>
+				<configuration>
+					<useReleaseProfile>false</useReleaseProfile>
+					<releaseProfiles>release</releaseProfiles>
+					<goals>deploy</goals>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+
+	<profiles>
+
+		<!-- Deactivate the strong JDoc linting which often breaks the mvn lifecycle -->
+		<profile>
+			<id>disable-java8-doclint</id>
+			<activation>
+				<jdk>[1.8,)</jdk>
+			</activation>
+			<properties>
+				<additionalparam>-Xdoclint:none</additionalparam>
+			</properties>
+		</profile>
+
+		<!-- LIBRARY PROFILE (with signing) -->
+		<profile>
+			<id>release</id>
+			<properties>
+				<packaging.type>jar</packaging.type>
+			</properties>
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-deploy-plugin</artifactId>
+						<configuration>
+							<updateReleaseInfo>true</updateReleaseInfo>
+						</configuration>
+					</plugin>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-source-plugin</artifactId>
+						<version>2.4</version>
+						<executions>
+							<execution>
+								<id>attach-sources</id>
+								<goals>
+									<goal>jar-no-fork</goal>
+								</goals>
+							</execution>
+						</executions>
+					</plugin>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-javadoc-plugin</artifactId>
+						<version>2.10.3</version>
+						<executions>
+							<execution>
+								<id>attach-javadocs</id>
+								<goals>
+									<goal>jar</goal>
+								</goals>
+							</execution>
+						</executions>
+					</plugin>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-gpg-plugin</artifactId>
+						<version>1.6</version>
+						<executions>
+							<execution>
+								<id>sign-artifacts</id>
+								<phase>verify</phase>
+								<goals>
+									<goal>sign</goal>
+								</goals>
+							</execution>
+						</executions>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+
+		<!-- JAR GENERATION PROFILE -->
+		<profile>
+			<id>standalone-release</id>
+			<properties>
+				<packaging.type>jar</packaging.type>
+			</properties>
+			<activation>
+				<property>
+					<name>env</name>
+					<value>standalone</value>
+				</property>
+			</activation>
+
+			<dependencies>
+
+				<dependency>
+					<groupId>org.springframework.boot</groupId>
+					<artifactId>spring-boot-starter-log4j2</artifactId>
+				</dependency>
+
+				<dependency>
+					<groupId>org.apache.logging.log4j</groupId>
+					<artifactId>log4j-core</artifactId>
+					<version>2.17.1</version>
+				</dependency>
+
+				<dependency>
+					<groupId>org.apache.logging.log4j</groupId>
+					<artifactId>log4j-slf4j-impl</artifactId>
+					<version>2.7</version>
+				</dependency>
+
+				<dependency>
+					<groupId>org.slf4j</groupId>
+					<artifactId>slf4j-api</artifactId>
+					<version>1.7.25</version>
+				</dependency>
+
+				<dependency>
+					<groupId>org.slf4j</groupId>
+					<artifactId>jcl-over-slf4j</artifactId>
+					<version>1.7.25</version>
+				</dependency>
+
+				<dependency>
+					<groupId>org.slf4j</groupId>
+					<artifactId>jul-to-slf4j</artifactId>
+					<version>1.7.25</version>
+				</dependency>
+
+			</dependencies>
+
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-shade-plugin</artifactId>
+						<version>3.0.0</version>
+						<dependencies>
+							<dependency>
+								<groupId>org.springframework.boot</groupId>
+								<artifactId>spring-boot-maven-plugin</artifactId>
+								<version>1.5.6.RELEASE</version>
+							</dependency>
+						</dependencies>
+						<configuration>
+
+						</configuration>
+						<executions>
+							<execution>
+								<phase>package</phase>
+								<goals>
+									<goal>shade</goal>
+								</goals>
+								<configuration>
+									<minimizeJar>true</minimizeJar>
+									<shadedArtifactAttached>true</shadedArtifactAttached>
+									<shadedClassifierName>shaded</shadedClassifierName>
+
+									<transformers>
+										<!-- necessary spring configuration -->
+										<transformer
+												implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
+											<resource>META-INF/spring.handlers</resource>
+										</transformer>
+										<transformer
+												implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
+											<resource>META-INF/spring.schemas</resource>
+										</transformer>
+										<transformer
+												implementation="org.apache.maven.plugins.shade.resource.AppendingTransformer">
+											<resource>META-INF/spring.factories</resource>
+										</transformer>
+										<transformer implementation="org.apache.maven.plugins.shade.resource.IncludeResourceTransformer">
+											<resource>META-INF/LICENSE</resource>
+											<file>LICENSE.txt</file>
+										</transformer>
+										<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer">
+										</transformer>
+										<!-- add Main-Class to manifest file -->
+										<transformer
+												implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
+											<manifestEntries>
+												<Main-Class>${mainClass}</Main-Class>
+												<Build-Version>${project.version}</Build-Version>
+												<Authors>${authors}</Authors>
+											</manifestEntries>
+										</transformer>
+									</transformers>
+
+									<artifactSet>
+										<excludes>
+											<exclude>org.springframework:*</exclude>
+											<exclude>org.springframework.*</exclude>
+											<exclude>org.apache.tomcat.*</exclude>
+										</excludes>
+									</artifactSet>
+
+									<filters>
+										<filter>
+											<artifact>net.sourceforge.owlapi:*</artifact>
+											<includes>
+												<include>**</include>
+											</includes>
+										</filter>
+										<filter>
+											<artifact>org.eclipse.rdf4j:*</artifact>
+											<includes>
+												<include>**</include>
+											</includes>
+										</filter>
+										<filter>
+											<artifact>commons-io:commons-io</artifact>
+											<includes>
+												<include>**</include>
+											</includes>
+										</filter>
+										<filter>
+											<artifact>com.google.guava:*</artifact>
+											<includes>
+												<include>**</include>
+											</includes>
+										</filter>
+										<filter>
+											<artifact>org.apache.logging.log4j:*</artifact>
+											<includes>
+												<include>**</include>
+											</includes>
+										</filter>
+										<filter>
+											<artifact>*:*</artifact>
+											<excludes>
+												<exclude>META-INF/license/**</exclude>
+												<exclude>META-INF/maven/**</exclude>
+												<exclude>LICENSE</exclude>
+												<exclude>NOTICE</exclude>
+												<exclude>/*.txt</exclude>
+												<exclude>build.properties</exclude>
+											</excludes>
+										</filter>
+									</filters>
+								</configuration>
+							</execution>
+						</executions>
+					</plugin>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-scm-plugin</artifactId>
+						<version>1.9.4</version>
+						<configuration>
+							<connectionType>connection</connectionType>
+							<message>Update to ${project.version}</message>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+
+		<!-- WAR GENERATION PROFILE -->
+		<profile>
+			<id>war-release</id>
+			<properties>
+				<packaging.type>war</packaging.type>
+				<mainClass>de.uni_stuttgart.vis.vowl.owl2vowl.ServerMain</mainClass>
+			</properties>
+			<activation>
+				<property>
+					<name>env</name>
+					<value>war</value>
+				</property>
+			</activation>
+			<dependencies>
+
+				<dependency>
+					<groupId>org.springframework.boot</groupId>
+					<artifactId>spring-boot-starter-tomcat</artifactId>
+					<scope>provided</scope>
+				</dependency>
+			</dependencies>
+			<build>
+				<finalName>owl2vowl</finalName>
+
+				<plugins>
+					<plugin>
+						<artifactId>maven-compiler-plugin</artifactId>
+						<version>3.1</version>
+						<configuration>
+							<source>1.8</source>
+							<target>1.8</target>
+						</configuration>
+					</plugin>
+					<plugin>
+						<artifactId>maven-war-plugin</artifactId>
+						<version>2.4</version>
+						<configuration>
+							<failOnMissingWebXml>false</failOnMissingWebXml>
+						</configuration>
+					</plugin>
+					<plugin>
+						<groupId>org.springframework.boot</groupId>
+						<artifactId>spring-boot-maven-plugin</artifactId>
+						<version>1.5.6.RELEASE</version>
+						<executions>
+							<execution>
+								<goals>
+									<goal>repackage</goal>
+								</goals>
+							</execution>
+						</executions>
+						<configuration>
+							<mainClass>${mainClass}</mainClass>
+						</configuration>
+					</plugin>
+				</plugins>
+			</build>
+		</profile>
+	</profiles>
+
+	<dependencies>
+		<!-- For local booting required -->
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-web</artifactId>
+			<exclusions>
+				<exclusion>
+					<groupId>org.springframework.boot</groupId>
+					<artifactId>spring-boot-starter-logging</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+
+		<dependency>
+			<groupId>net.sourceforge.owlapi</groupId>
+			<artifactId>owlapi-distribution</artifactId>
+			<version>5.1.1</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.servicemix.bundles</groupId>
+			<artifactId>org.apache.servicemix.bundles.collections-generic</artifactId>
+			<version>4.01_1</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.commons</groupId>
+			<artifactId>commons-lang3</artifactId>
+			<version>3.6</version>
+		</dependency>
+
+		<dependency>
+			<groupId>commons-io</groupId>
+			<artifactId>commons-io</artifactId>
+			<version>2.5</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.logging.log4j</groupId>
+			<artifactId>log4j-api</artifactId>
+			<version>2.7</version>
+		</dependency>
+
+		<dependency>
+			<groupId>commons-cli</groupId>
+			<artifactId>commons-cli</artifactId>
+			<version>1.3.1</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.codehaus.jackson</groupId>
+			<artifactId>jackson-mapper-asl</artifactId>
+			<version>1.9.13</version>
+		</dependency>
+
+		<dependency>
+			<groupId>org.springframework.boot</groupId>
+			<artifactId>spring-boot-starter-test</artifactId>
+			<scope>test</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<version>4.12</version>
+			<scope>test</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>org.hamcrest</groupId>
+			<artifactId>hamcrest-all</artifactId>
+			<version>1.3</version>
+			<scope>test</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>org.mockito</groupId>
+			<artifactId>mockito-all</artifactId>
+			<version>1.10.19</version>
+			<scope>test</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>org.powermock</groupId>
+			<artifactId>powermock-api-mockito</artifactId>
+			<version>1.6.4</version>
+			<scope>test</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>org.powermock</groupId>
+			<artifactId>powermock-module-junit4</artifactId>
+			<version>1.6.4</version>
+			<scope>test</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.logging.log4j</groupId>
+			<artifactId>log4j-slf4j-impl</artifactId>
+			<version>2.7</version>
+			<scope>test</scope>
+		</dependency>
+
+		<dependency>
+			<groupId>org.apache.logging.log4j</groupId>
+			<artifactId>log4j-core</artifactId>
+			<version>2.17.1</version>
+			<scope>test</scope>
+		</dependency>
+
+	</dependencies>
+
+	<pluginRepositories>
+		<pluginRepository>
+			<id>spring-releases</id>
+			<url>https://repo.spring.io/libs-release</url>
+		</pluginRepository>
+	</pluginRepositories>
+
+</project>

README.md 101(+101 -0)

diff --git a/README.md b/README.md
new file mode 100644
index 0000000..f43df6f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,101 @@
+[![Build Status](https://travis-ci.org/VisualDataWeb/OWL2VOWL.svg)](https://travis-ci.org/VisualDataWeb/OWL2VOWL)
+[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.visualdataweb.vowl.owl2vowl/OWL2VOWL/badge.svg)](https://mvnrepository.com/artifact/org.visualdataweb.vowl.owl2vowl/OWL2VOWL)
+[![](https://jitpack.io/v/VisualDataWeb/OWL2VOWL.svg)](https://jitpack.io/#VisualDataWeb/OWL2VOWL)
+
+OWL2VOWL converter 
+==================
+
+Dev Dependency
+--------------
+We have a release repo in maven central but the version there is and will not be updated frequently.
+Therefore i suggest to use [Jitpack OWL2VOWL](https://jitpack.io/#VisualDataWeb/OWL2VOWL) in order to pull the latest release version (in example master branch or the available tags).
+
+For instructions how to include the dependency click the above link or as a example for maven projects:
+
+```
+	<repositories>
+		<repository>
+		    <id>jitpack.io</id>
+		    <url>https://jitpack.io</url>
+		</repository>
+	</repositories>
+       ....
+       <dependency>
+	    <groupId>com.github.VisualDataWeb</groupId>
+	    <artifactId>OWL2VOWL</artifactId>
+	    <version>master-SNAPSHOT</version>
+	</dependency>
+       
+```
+
+
+Requirements
+------------
+*   Java 8 (or higher)
+*   Maven
+
+
+Instructions for using OWL2VOWL JAR
+------------
+
+The converted ontology will be written in a .json file in the working directory by default.
+
+### Convert an ontology by its IRI
+Run owl2vowl.jar with the `-iri` parameter: `java -jar owl2vowl.jar -iri "[Ontology IRI]"`
+
+**Example**: `java -jar owl2vowl.jar -iri "http://ontovibe.visualdataweb.org"`
+
+
+### Convert an ontology from a local file
+Run owl2vowl.jar with the `-file` parameter: `java -jar owl2vowl.jar -file path/to/local/ontology`
+
+**Example**: `java -jar owl2vowl.jar -file ontologies/foaf.rdf`
+
+
+### Convert an ontology with dependencies from a local file
+Run owl2vowl with the additional `-dependencies` parameter: `java -jar owl2vowl.jar -file path/to/local/ontology -dependencies path/to/dependency1 path/to/dependency2 ...`
+
+**Example**: `java -jar owl2vowl.jar -file ontovibe.ttl -dependencies ontovibe_imported.ttl`
+
+
+### Echo the converted ontology on the console
+Use any of the input parameters together with the `-echo` flag: `java -jar owl2vowl.jar -echo -iri "[Ontology IRI]"`
+
+**Example**: `java -jar owl2vowl.jar -iri "http://ontovibe.visualdataweb.org" -echo`
+
+Instructions for developing with OWL2VOWL
+-----------
+
+### First steps
+`Maven` is required to develop with OWL2VOWL and compile the code. It will load all dependencies automatically. If there occur any problems, refreshing the dependencies might solve them.
+OWL2VOWL has been developed to work with Java 8, so `JDK 8` has to be used for compiling.
+
+### Build the jar
+To build the jar file, simply execute `mvn package`. The built `jar` only contains the compiled source code. 
+To build a jar file that can be executed standalone, you have to use the package option with parameter: `mvn package -Denv=standalone` or `mvn package -P standalone-release`. This will build the file `...-shaded.jar` containing all dependencies needed to be executable.
+
+### Build the war
+To build the war file, simply execute `mvn package -P war-release`. This will generate a war file.
+This war can be execute like a jar file to start a local server.
+
+### Running in IDE
+It would be a pain always building the jar only to test some new implemented stuff. We included a possiblity to run the conversion directly with the IDE. For this you need to change the `ConverterImpl.java` class.
+
+To run a Spring Server directly from the IDE you have to start the `ServerMain.java` class.
+
+### Docker
+
+- **With WebVOWL (recommended):** clone both repos as siblings; build and run from the WebVOWL directory — see `WebVOWL/docker/README.md`.
+- **Standalone converter:** see [doc/docker/README.md](doc/docker/README.md) (`docker build -t owl2vowl:local .`).
+
+
+FAQ
+==================
+
+## I want to log information, errors, etc to files. Is there a default configuration?
+If you want to use logging to files there is log4j2 configuration provided under ```src/main/resources/log4j2-spring-file.xml```.
+
+- JAR/IDE: To load it you have to provide a JVM argument. For example if you have the JAR you have to exeecute:
+       ```java -Dlog4j.configurationFile=path/to/log4j2-spring-file.xml -jar ...```
+- WAR: Uncomment the line in ```src/main/resources/application.properties```        
+  
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/ConsoleMain.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/ConsoleMain.java
new file mode 100644
index 0000000..3a38328
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/ConsoleMain.java
@@ -0,0 +1,162 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.converter.Converter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.converter.IRIConverter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.export.types.ConsoleExporter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.export.types.Exporter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.export.types.FileExporter;
+import org.apache.commons.cli.*;
+import org.apache.commons.io.FilenameUtils;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.IRI;
+
+import java.io.File;
+import java.text.NumberFormat;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+
+
+public class ConsoleMain {
+	private static final String IRI_OPTION_NAME = "iri";
+	private static final String FILE_OPTION_NAME = "file";
+	private static final String OUTPUT_OPTION_NAME = "output";
+	private static final String DEPENDENCIES_OPTION_NAME = "dependencies";
+	private static final String HELP_OPTION_NAME = "h";
+	private static final String ECHO_OPTION_NAME = "echo";
+	private static final Logger logger = LogManager.getLogger(ConsoleMain.class);
+
+	public static void main(String[] args) {
+		new ConsoleMain().parseCommandLine(args);
+	}
+
+	protected void parseCommandLine(String[] args) {
+		CommandLine line = null;
+		Options options = createOptions();
+
+		try {
+			line = new DefaultParser().parse(options, args);
+		} catch (ParseException exp) {
+			System.err.println("Parsing failed.  Reason: " + exp.getMessage());
+			printHelpMenu(options);
+			System.exit(0);
+		}
+
+		if (line.hasOption(HELP_OPTION_NAME)) {
+			printHelpMenu(options);
+			System.exit(0);
+		}
+
+		IRI ontologyIri;
+		List<IRI> dependencies = new ArrayList<>();
+
+		if (line.hasOption(FILE_OPTION_NAME)) {
+			ontologyIri = IRI.create(new File(line.getOptionValue(FILE_OPTION_NAME)));
+		} else {
+			// rename the file here
+			String iriName=line.getOptionValue(IRI_OPTION_NAME);
+			String out=iriName.replace(" ","%20");
+			//ontologyIri = IRI.create(line.getOptionValue(IRI_OPTION_NAME));
+			ontologyIri = IRI.create(out);
+		}
+
+		if (line.hasOption(DEPENDENCIES_OPTION_NAME)) {
+			for (String path : line.getOptionValues(DEPENDENCIES_OPTION_NAME)) {
+				File dependency = new File(path);
+				dependencies.add(IRI.create(dependency));
+			}
+		}
+
+		try {
+			Converter converter = new IRIConverter(ontologyIri, dependencies);
+			converter.convert();
+			converter.export(createExporterFromOption(line, ontologyIri));
+			converter=null;
+			line=null;
+			ontologyIri=null;
+			dependencies.clear();
+			dependencies=null;
+		} catch (Exception e) {
+			logger.error("FAILED TO LOAD " + Arrays.toString(args));
+			System.err.println(e.getClass().getName());
+			System.err.println(e.getMessage());
+			System.exit(1);
+		}
+		Runtime runtime = Runtime.getRuntime();
+		NumberFormat format = NumberFormat.getInstance();
+		long allocatedMemory = runtime.totalMemory();
+		long freeMemory = runtime.freeMemory();
+	
+		System.gc();
+		System.runFinalization();
+		System.out.println("Cleaning up Memory for session of console converseion  << closed Session ");
+		System.out.println("Conversion Finished ");
+	
+		// create some statistics
+		format = NumberFormat.getInstance();
+		long after_allocatedMemory = runtime.totalMemory();
+		long after_freeMemory = runtime.freeMemory();
+		System.out.println("-> USED MEMORY " + format.format((allocatedMemory - freeMemory) / 1024)      + "  ->    "+format.format( (after_allocatedMemory- after_freeMemory) / 1024)+"  ");
+	}
+
+	protected Options createOptions() {
+		Options options = new Options();
+		options.addOption(Option.builder(HELP_OPTION_NAME).desc("views this help text").build());
+
+		OptionGroup inputOptions = new OptionGroup();
+		inputOptions.setRequired(true);
+		inputOptions.addOption(Option.builder(IRI_OPTION_NAME).argName("IRI").hasArg().desc("the iri of an ontology").build());
+		inputOptions.addOption(Option.builder(FILE_OPTION_NAME).argName("PATH").hasArg().desc("the local path to an ontology").build());
+		options.addOption(Option.builder(DEPENDENCIES_OPTION_NAME).argName("PATHS").hasArgs().desc("paths to dependencies of a local ontology").build());
+
+		OptionGroup outputOptions = new OptionGroup();
+		outputOptions.addOption(Option.builder(ECHO_OPTION_NAME).desc("prints the converted ontology on the console").build());
+		outputOptions.addOption(Option.builder(OUTPUT_OPTION_NAME).argName("PATH").hasArg().desc("specify the path for the desired output location").build());
+
+		options.addOptionGroup(inputOptions);
+		options.addOptionGroup(outputOptions);
+
+		return options;
+	}
+
+	protected void printHelpMenu(Options options) {
+		HelpFormatter helpFormatter = new HelpFormatter();
+		helpFormatter.printHelp("java -jar owl2vowl.jar", options);
+	}
+
+	protected Exporter createExporterFromOption(CommandLine line, IRI ontologyIri) {
+		if (line.hasOption(ECHO_OPTION_NAME)) {
+			return new ConsoleExporter();
+		} else {
+			String exportPath = null;
+
+			if (line.hasOption(OUTPUT_OPTION_NAME)) {
+				exportPath = line.getOptionValue(OUTPUT_OPTION_NAME);
+			}
+
+			return generateFileExporter(ontologyIri, exportPath);
+		}
+	}
+
+	protected FileExporter generateFileExporter(IRI ontologyIri, String filePath) {
+		String filename;
+
+		if (filePath != null) {
+			filename = filePath;
+		} else {
+			// catch empty remainder
+			try {
+				filename = FilenameUtils.removeExtension(ontologyIri.getRemainder().get()) + ".json";
+			} catch (Exception e){
+				System.out.println("Failed to extract filename from iri");
+				System.out.println("Reason: "+e);
+				String defaultName="default.json";
+				System.out.println("Writing to '"+defaultName+"'");
+				filename=defaultName;
+			}
+		}
+
+		return new FileExporter(new File(filename));
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Annotations.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Annotations.java
new file mode 100644
index 0000000..63067ee
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Annotations.java
@@ -0,0 +1,12 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.constants;
+
+public class Annotations {/* ANNOTATIONS */
+	public static final String RDFS_COMMENT = "rdfs:comment";
+	public static final String RDFS_LABEL = "rdfs:label";
+	public static final String RDFS_DEFINED_BY = "rdfs:isDefinedBy";
+	public static final String OWL_VERSIONINFO = "owl:versionInfo";
+	public static final String RDFS_SUBCLASS = "rdfs:subClassOf";
+	public static final String RDFS_DOMAIN = "rdfs:domain";
+	public static final String RDFS_RANGE = "rdfs:range";
+	public static final String OWL_DEPRECATED = "owl:deprecated";
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Axiom_Annotations.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Axiom_Annotations.java
new file mode 100644
index 0000000..eda4dac
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Axiom_Annotations.java
@@ -0,0 +1,16 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.constants;
+
+public class Axiom_Annotations {/* Annotations used for axioms. */
+	public static final String AXIOM_OBJ_PROP_DOMAIN = "ObjectPropertyDomain";
+	public static final String AXIOM_OBJ_PROP_RANGE = "ObjectPropertyRange";
+	public static final String AXIOM_DATA_PROP_DOMAIN = "DataPropertyDomain";
+	public static final String AXIOM_DATA_PROP_RANGE = "DataPropertyRange";
+	public static final String AXIOM_OBJ_UNION = "ObjectUnionOf";
+	public static final String AXIOM_OBJ_INTERSECTION = "ObjectIntersectionOf";
+	public static final String AXIOM_OBJ_COMPLEMENT = "ObjectComplementOf";
+	public static final String AXIOM_DISJOINT = "DisjointClasses";
+	public static final String AXIOM_DISJOINTUNION = "DisjointUnion";
+	public static final String AXIOM_SUBCLASS = "SubClassOf";
+	public static final String AXIOM_CARD_MIN = "ObjectMinCardinality";
+	public static final String AXIOM_CARD_EXACT = "ObjectExactCardinality";
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/LoggingConstants.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/LoggingConstants.java
new file mode 100644
index 0000000..6e3cfa3
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/LoggingConstants.java
@@ -0,0 +1,5 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.constants;
+
+public class LoggingConstants {
+    public static final String CONVERSION_LOGGER = "conversion-logger";
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/NodeType.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/NodeType.java
new file mode 100644
index 0000000..5b217f3
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/NodeType.java
@@ -0,0 +1,19 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.constants;
+
+public class NodeType {
+	public static final String TYPE_CLASS = "owl:Class";
+	public static final String TYPE_RDFSCLASS = "rdfs:Class";
+	public static final String TYPE_EQUIVALENT = "owl:equivalentClass";
+	public static final String TYPE_EXTERNALCLASS = "externalclass";
+	public static final String TYPE_DEPRECTAEDCLASS = "owl:DeprecatedClass";
+	public static final String TYPE_THING = "owl:Thing";
+	public static final String TYPE_NOTHING = "owl:Nothing";
+	public static final String TYPE_RDFSRESOURCE = "rdfs:Resource";
+	public static final String TYPE_UNION = "owl:unionOf";
+	public static final String TYPE_INTERSECTION = "owl:intersectionOf";
+	public static final String TYPE_DISJOINTUNION = "owl:disjointUnionOf";
+	public static final String TYPE_COMPLEMENT = "owl:complementOf";
+	public static final String TYPE_DATATYPE = "rdfs:Datatype";
+	public static final String TYPE_LITERAL = "rdfs:Literal";
+	public static final String KEY_TYPE_DATA_ONE_OF = "DATA_ONE_OF";
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Ontology_Info.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Ontology_Info.java
new file mode 100644
index 0000000..cba7573
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Ontology_Info.java
@@ -0,0 +1,19 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.constants;
+
+public class Ontology_Info {/* Ontology info annotations */
+	public static final String INFO_TITLE_DC = "<http://purl.org/dc/elements/1.1/title>";
+	public static final String INFO_TITLE_DCTERMS = "<http://purl.org/dc/terms/title>";
+	public static final String INFO_SEE_ALSO = "rdfs:seeAlso";
+	public static final String INFO_ISSUED_DCTERMS = "<http://purl.org/dc/terms/issued>";
+	public static final String INFO_CREATOR_DC = "<http://purl.org/dc/elements/1.1/creator>";
+	public static final String INFO_CREATOR_DCTERMS = "<http://purl.org/dc/terms/creator>";
+	public static final String INFO_CONTRIBUTOR_DCTERMS = "<http://purl.org/dc/terms/contributor>";
+	public static final String INFO_PUBLISHER_DCTERMS = "<http://purl.org/dc/terms/publisher>";
+	public static final String INFO_LICENSE_DCTERMS = "<http://purl.org/dc/terms/licence>";
+	public static final String INFO_DESCRIPTION_DC = "<http://purl.org/dc/elements/1.1/description>";
+	public static final String INFO_DESCRIPTION_DCTERMS = "<http://purl.org/dc/terms/description>";
+	public static final String INFO_VERSION_INFO = "owl:versionInfo";
+	public static final String INFO_RDFS_LABEL = "rdfs:label";
+	public static final String INFO_RIGHTS_DCTERMS = "<http://purl.org/dc/terms/rights>";
+	public static final String INFO_MODIFIED_DCTERMS = "<http://purl.org/dc/terms/modified>";
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Ontology_Path.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Ontology_Path.java
new file mode 100644
index 0000000..a58e272
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Ontology_Path.java
@@ -0,0 +1,52 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.constants;
+
+public class Ontology_Path {
+
+	// Local
+	public static final String PATH_VARIABLE =
+			System.getProperty("user.dir") + "/ontologies/";
+	public static final String IMARINE = PATH_VARIABLE + "marinetloimarine.owl";
+	public static final String MARINE = PATH_VARIABLE + "marinetlo.owl";
+	public static final String MUSIC = PATH_VARIABLE + "musicontology.rdfs";
+	public static final String SIOC = PATH_VARIABLE + "sioc.rdf";
+	public static final String GR = PATH_VARIABLE + "v1.owl";
+	public static final String MUTO = PATH_VARIABLE + "muto.rdf";
+	public static final String FOAF = PATH_VARIABLE + "foaf.rdf";
+	public static final String WINE = PATH_VARIABLE + "wine.rdf";
+	public static final String PERSONAS = PATH_VARIABLE + "personasonto.owl";
+	public static final String BENCHMARK1 = PATH_VARIABLE + "ontovibe/BenchmarkOntology.ttl";
+	public static final String BENCHMARK2 = PATH_VARIABLE + "ontovibe/BenchmarkOntologyModule.ttl";
+	public static final String ONTO_CARD = PATH_VARIABLE + "ontovibe/ontovibe_cardinalities.ttl";
+	public static final String LOCAL_TESTING = PATH_VARIABLE + "testing.owl";
+	public static final String STACK = PATH_VARIABLE + "StackExchange.ttl";
+	public static final String TAGONT = PATH_VARIABLE + "tagont.owl";
+	public static final String DRAMMAR = PATH_VARIABLE + "Drammar_NunnaryScene_Optimized_Rules.owl";
+	public static final String DISJOINT_NULL_POINTER = PATH_VARIABLE + "temp_simple.ttl";
+	public static final String TEST = PATH_VARIABLE + "test.ttl";
+	public static final String TEST_FULL_ONTOBENCH = PATH_VARIABLE + "fullontobench.ttl";
+	public static final String TEST_ALLVALUES = PATH_VARIABLE + "allvalues.ttl";
+
+	// External
+	public static final String EXT_GEONAMES = "http://www.geonames.org/ontology/ontology_v3.1.rdf";
+	public static final String EXT_PROV = "http://www.w3.org/ns/prov-o";
+	public static final String EXT_PIZZA = "http://130.88.198.11/co-ode-files/ontologies/pizza.owl";
+	public static final String EXT_ONTOVIBE = "http://ontovibe.visualdataweb.org/2.1";
+	public static final String EXT_ONTO_CARD = "http://ontovibe.visualdataweb.org/cardinalities/";
+	public static final String EXT_NICETAG = "http://ns.inria.fr/nicetag/2010/09/09/voc";
+	public static final String EXT_SIOC = "http://rdfs.org/sioc/ns#";
+	public static final String EXT_FOAF = "http://xmlns.com/foaf/0.1/";
+	public static final String EXT_MUTO = "http://purl.org/muto/core";
+	public static final String EXT_GOODRELATIONS = "http://purl.org/goodrelations/v1";
+	public static final String EXT_MUSIC = "http://purl.org/ontology/mo/";
+	public static final String EXT_MARINE = "http://www.ics.forth.gr/isl/MarineTLO/v3/marinetlo.owl";
+	public static final String EXT_MARINE_TLO = "http://www.ics.forth.gr/isl/MarineTLO/v3/marinetloimarine.owl";
+	public static final String EXT_DC_TERMS = "http://purl.org/dc/terms/";
+	public static final String EXT_HOLY = "http://www.holygoat.co.uk/owl/redwood/0.1/tags/";
+	public static final String EXT_PERSONAS = "http://blankdots.com/open/personasonto.owl";
+	// NOT WORKING FOR ONTOLOGY PARSERS
+	public static final String EXT_HP_NOT_WORKING = "http://purl.org/voc/hp/";
+	public static final String EXT_HP = "https://raw.githubusercontent.com/AKSW/vocab.hp/master/schema.ttl";
+	// Label Datatype construct. Time out?
+	public static final String EXT_ENVO = "http://envo.googlecode.com/svn/trunk/src/envo/envo.owl";
+	public static final String EXT_MLHIM = "http://www.mlhim.org/xmlns/mlhim2/mlhim246.owl";
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/OntologyInformationEnum.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/OntologyInformationEnum.java
new file mode 100644
index 0000000..e3cd4a8
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/OntologyInformationEnum.java
@@ -0,0 +1,29 @@
+/*
+ * OntologyInformationEnum.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.constants;
+
+import org.codehaus.jackson.annotate.JsonValue;
+
+/**
+ *
+ */
+public enum OntologyInformationEnum {
+	TITLE("title"),
+	VERSION("versionInfo"),
+	AUTHOR("creator");
+
+	private final String value;
+
+	OntologyInformationEnum(String value) {
+
+		this.value = value;
+	}
+
+	@JsonValue
+	public String getValue() {
+		return value;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Property_Types.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Property_Types.java
new file mode 100644
index 0000000..37359bc
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Property_Types.java
@@ -0,0 +1,7 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.constants;
+
+public class Property_Types {
+	public static final String PROP_TYPE_SUBCLASS = "rdfs:SubClassOf";
+	public static final String PROP_TYPE_DISJOINT = "owl:disjointWith";
+	public static final String PROP_TYPE_RDF = "rdf:Property";
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/PropertyAllSomeValue.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/PropertyAllSomeValue.java
new file mode 100644
index 0000000..74773a3
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/PropertyAllSomeValue.java
@@ -0,0 +1,5 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.constants;
+
+public enum PropertyAllSomeValue {
+	ALL, SOME;
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/PropertyType.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/PropertyType.java
new file mode 100644
index 0000000..2711dc7
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/PropertyType.java
@@ -0,0 +1,15 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.constants;
+
+/**
+ * @author Eduard
+ */
+public class PropertyType {
+	public static final String OBJECT = "owl:objectProperty";
+	public static final String DATATYPE = "owl:datatypeProperty";
+	public static final String SUBCLASS = "rdfs:SubClassOf";
+	public static final String DISJOINT = "owl:disjointWith";
+	public static final String RDF = "rdf:Property";
+	public static final String ALL_VALUES = "owl:allValuesFrom";
+	public static final String SOME_VALUES = "owl:someValuesFrom";
+	public static final String TYPEOF = RDF;
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Standard_Iris.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Standard_Iris.java
new file mode 100644
index 0000000..af837f1
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Standard_Iris.java
@@ -0,0 +1,9 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.constants;
+
+public class Standard_Iris {/* STANDARD IRIS */
+	public static final String GENERIC_LITERAL_URI =
+			"http://www.w3.org/2000/01/rdf-schema#Literal";
+	public static final String OWL_THING_CLASS_URI = "http://www.w3.org/2002/07/owl#Thing";
+	public static final String TYPE_URI = "http://www.w3.org/1999/02/22-rdf-syntax-ns#type";
+	public static final String TYPE_XML_2001 = "http://www.w3.org/2001/XMLSchema#";
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Vowl_Lang.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Vowl_Lang.java
new file mode 100644
index 0000000..da337b4
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/Vowl_Lang.java
@@ -0,0 +1,6 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.constants;
+
+public class Vowl_Lang {/* Languages */
+	public static final String LANG_UNSET = "undefined";
+	public static final String LANG_DEFAULT = "IRI-based";
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/VowlAttribute.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/VowlAttribute.java
new file mode 100644
index 0000000..b41eb38
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/constants/VowlAttribute.java
@@ -0,0 +1,40 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.constants;
+
+import org.codehaus.jackson.annotate.JsonValue;
+
+public enum VowlAttribute {
+	INTERSECTION("intersection"),
+	OBJECT("object"),
+	DEPRECATED("deprecated"),
+	EXTERNAL("external"),
+	RDF("rdf"),
+	UNION("union"),
+	COMPLEMENT("complement"),
+	DATATYPE("datatype"),
+	TRANSITIVE("transitive"),
+	FUNCTIONAL("functional"),
+	INVERSE_FUNCTIONAL("inverse functional"),
+	SYMMETRIC("symmetric"),
+	EQUIVALENT("equivalent"),
+	IRREFLEXIVE("irreflexive"),
+	ASYMMETRIC("asymmetric"),
+	REFLEXIVE("reflexive"),
+	IMPORTED("external"),
+	ANONYMOUS("anonymous"),
+	DISJOINTUNION("disjointUnion"),
+	KEY("key"),
+	ALL_VALUES("allValues"),
+	SOME_VALUES("someValues");
+
+	private final String value;
+
+	VowlAttribute(String value) {
+
+		this.value = value;
+	}
+
+	@JsonValue
+	public String getValue() {
+		return value;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/AbstractConverter.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/AbstractConverter.java
new file mode 100644
index 0000000..590e79b
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/AbstractConverter.java
@@ -0,0 +1,448 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.converter;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.export.types.Exporter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.export.types.JsonGenerator;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.AbstractEntity;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.owlapi.EntityCreationVisitor;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.owlapi.IndividualsVisitor;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.AnnotationParser;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.BaseIriCollector;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.EquivalentSorter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.ImportedChecker;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.OntologyInformationParser;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.TypeSetter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.classes.GenericClassAxiomVisitor;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.classes.HasKeyAxiomParser;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.classes.OwlClassAxiomVisitor;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.property.DataPropertyVisitor;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.property.DomainRangeFiller;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.property.ObjectPropertyVisitor;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.property.VowlSubclassPropertyGenerator;
+
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.IRI;
+import org.semanticweb.owlapi.model.OWLAnnotationAssertionAxiom;
+import org.semanticweb.owlapi.model.OWLAnnotationAxiom;
+import org.semanticweb.owlapi.model.OWLAnnotationProperty;
+import org.semanticweb.owlapi.model.OWLAnnotationPropertyRangeAxiom;
+import org.semanticweb.owlapi.model.OWLAnnotationValue;
+import org.semanticweb.owlapi.model.OWLAxiom;
+import org.semanticweb.owlapi.model.OWLClass;
+import org.semanticweb.owlapi.model.OWLClassAxiom;
+import org.semanticweb.owlapi.model.OWLDataProperty;
+import org.semanticweb.owlapi.model.OWLDataPropertyAxiom;
+import org.semanticweb.owlapi.model.OWLLiteral;
+import org.semanticweb.owlapi.model.OWLObjectProperty;
+import org.semanticweb.owlapi.model.OWLObjectPropertyAxiom;
+import org.semanticweb.owlapi.model.OWLOntology;
+import org.semanticweb.owlapi.model.OWLOntologyCreationException;
+import org.semanticweb.owlapi.model.OWLOntologyManager;
+import org.semanticweb.owlapi.formats.PrefixDocumentFormat;
+
+import org.semanticweb.owlapi.model.parameters.Imports;
+import org.semanticweb.owlapi.search.EntitySearcher;
+import org.semanticweb.owlapi.util.OWLOntologyWalker;
+
+import java.util.Collection;
+import java.util.Set;
+import java.util.Map;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+/**
+ * Abstract converter which processes the most part of the converting. The sub
+ * classes can specify the source of the ontology or to some additional
+ * processing if necessary.
+ */
+public abstract class AbstractConverter implements Converter {
+
+	private static final Logger logger = LogManager.getLogger(AbstractConverter.class);
+
+	protected final JsonGenerator jsonGenerator = new JsonGenerator();
+	protected String loadedOntologyPath;
+	protected String loadingInfoString = "";
+	protected boolean missingImports = false;
+	protected OWLOntologyManager manager;
+	protected VowlData vowlData;
+	protected OWLOntology ontology;
+	protected boolean initialized = false;
+	protected OWLAPI_MissingImportsListener missingListener = null;
+	protected boolean currentlyLoading = false;
+	protected String parentLine = "";
+
+	public void setCurrentlyLoadingFlag(boolean val) {
+		this.parentLine = "";
+		currentlyLoading = val;
+	}
+
+	public void releaseMemory() {
+		manager.removeMissingImportListener(missingListener);
+		manager.removeOntology(ontology);
+		vowlData.Destructore();
+		vowlData = null;
+		missingListener = null;
+		manager = null;
+		ontology = null;
+	}
+
+	public void setCurrentlyLoadingFlag(String parentLine, boolean val) {
+		// Line where to append to
+		this.parentLine = parentLine;
+		currentlyLoading = val;
+	}
+
+	public boolean getCurrentlyLoadingFlag() {
+		return currentlyLoading;
+	}
+
+	public void clearLoadingMsg() {
+		loadingInfoString = "";
+	}
+
+	public String msgForWebVOWL(String stackTrace) {
+		// converts the < and > tags to html string so no html injection is created
+		String s1 = stackTrace.replaceAll("<", "&lt;");
+		String s2 = s1.replaceAll(">", "&gt;");
+		return s2;
+	}
+
+	public boolean ontologyHasMissingImports() {
+		return missingImports;
+	}
+
+	public void setOntologyHasMissingImports(boolean val) {
+		missingImports = val;
+	}
+
+	public String getLoadingInfoString() {
+		return loadingInfoString;
+	}
+
+	public void addLoadingInfo(String msg) {
+		loadingInfoString += msg;
+	}
+
+	public void addLoadingInfoToLine(String parent, String msg) {
+		// find parent line in msg;
+		if (loadingInfoString.length() > 0) {
+			String tokens[] = loadingInfoString.split("\n");
+			for (int i = 0; i < tokens.length; i++) {
+				if (tokens[i].contains(parent)) {
+					tokens[i] += msg;
+				}
+			}
+			// replace loading msg;
+			loadingInfoString = "";
+			for (int i = 0; i < tokens.length - 1; i++) {
+				if (tokens[i].length() > 0) {
+					loadingInfoString += tokens[i] + "\n";
+				}
+			}
+			loadingInfoString += tokens[tokens.length - 1] + "\n";
+		}
+	};
+
+	public void addLoadingInfoToParentLine(String msg) {
+		if (this.parentLine.length() > 0) {
+			addLoadingInfoToLine(this.parentLine, msg);
+		}
+	}
+
+	private void preLoadOntology() {
+		try {
+			loadOntology();
+		} catch (OWLOntologyCreationException e) {
+			throw new RuntimeException(e);
+		}
+
+		initialized = true;
+	}
+
+	protected abstract void loadOntology() throws OWLOntologyCreationException;
+
+	private void preParsing(OWLOntology ontology, VowlData vowlData, OWLOntologyManager manager) {
+		OWLOntologyWalker walker = new OWLOntologyWalker(ontology.importsClosure().collect(Collectors.toSet()));
+		EntityCreationVisitor ecv = new EntityCreationVisitor(vowlData);
+		// this is a set of annotation assertions;
+		Set<OWLAxiom> ax = ontology.axioms(Imports.INCLUDED).collect(Collectors.toSet());
+		for (OWLAxiom entry : ax) {
+			try {
+				// try to cast this as assertion axiom and add ot to VOWL Data
+				OWLAnnotationAssertionAxiom castedEntry = (OWLAnnotationAssertionAxiom) entry;
+				String subject = castedEntry.getSubject().asIRI().get().toString();
+				String property = castedEntry.getProperty().getIRI().toString();
+				String value = "";
+				if (castedEntry.getProperty().getIRI().getShortForm().toString().compareTo("targetElement") == 0
+						|| castedEntry.getProperty().getIRI().getShortForm().toString().compareTo("subjectElement") == 0
+						|| castedEntry.getProperty().getIRI().getShortForm().toString()
+								.compareTo("predicateElement") == 0
+						|| castedEntry.getProperty().getIRI().getShortForm().toString()
+								.compareTo("providesNotation") == 0
+						||
+
+						castedEntry.getProperty().getIRI().getShortForm().toString()
+								.compareTo("subjectDescription") == 0
+						|| castedEntry.getProperty().getIRI().getShortForm().toString()
+								.compareTo("predicateDescription") == 0
+						|| castedEntry.getProperty().getIRI().getShortForm().toString()
+								.compareTo("objectDescription") == 0
+						||
+
+						castedEntry.getProperty().getIRI().getShortForm().toString().compareTo("providesView") == 0
+						|| castedEntry.getProperty().getIRI().getShortForm().toString()
+								.compareTo("viewUsesNotation") == 0
+						|| castedEntry.getProperty().getIRI().getShortForm().toString().compareTo("objectElement") == 0
+						|| castedEntry.getProperty().getIRI().getShortForm().toString().compareTo("isTypeOf") == 0) {
+					value = castedEntry.getValue().toString();
+				} else {
+
+					OWLAnnotationValue le_val = castedEntry.getValue();
+					OWLLiteral le_literal = le_val.asLiteral().get();
+					value = le_literal.getLiteral();
+
+				}
+				vowlData.addBaseConstructorAnnotation(subject, property, value);
+			} catch (Exception e) {
+				// we dont care
+				// this is a declaration axiom and not an assertion axiom , we are interessted
+				// in assertion to baseConstructors
+			}
+		}
+
+		try {
+			walker.walkStructure(ecv);
+			logger.info("WalkStructure Success!");
+		} catch (Exception e) {
+			logger.info("@WORKAROUND WalkStructure Failed!");
+			logger.info("Exception: " + e);
+		}
+		// vowlData.showBaseConstructorAnnotations();
+
+		new OntologyInformationParser(vowlData, ontology).execute();
+	}
+
+	private void parsing(OWLOntology ontology, VowlData vowlData, OWLOntologyManager manager) {
+		processAnnotationProperties(ontology, vowlData);
+		processClasses(ontology, vowlData);
+		processObjectProperties(ontology, vowlData);
+		processDataProperties(ontology, vowlData);
+		processIndividuals(ontology, vowlData, manager);
+
+		processGenericAxioms();
+	}
+
+	private void processIndividuals(OWLOntology ontology, VowlData vowlData, OWLOntologyManager manager) {
+		ontology.classesInSignature(Imports.INCLUDED).collect(Collectors.toSet()).forEach(owlClass -> {
+			for (OWLOntology owlOntology : manager.ontologies().collect(Collectors.toSet())) {
+				try {
+					EntitySearcher.getIndividuals(owlClass, owlOntology).forEach(owlIndividual -> owlIndividual
+							.accept(new IndividualsVisitor(vowlData, owlIndividual, owlClass, manager)));
+				} catch (Exception e) {
+					logger.info("@WORKAROUND: Failed to accept some individuals ... SKIPPING THIS");
+					logger.info("Exception: " + e);
+					logger.info("----------- Continue Process --------");
+				}
+
+			}
+		});
+	}
+
+	private void processObjectProperties(OWLOntology ontology, VowlData vowlData) {
+		for (OWLObjectProperty owlObjectProperty : ontology.objectPropertiesInSignature(Imports.INCLUDED)
+				.collect(Collectors.toSet())) {
+			for (OWLObjectPropertyAxiom owlObjectPropertyAxiom : ontology.axioms(owlObjectProperty, Imports.INCLUDED)
+					.collect(Collectors.toSet())) {
+				try {
+					owlObjectPropertyAxiom.accept(new ObjectPropertyVisitor(vowlData, owlObjectProperty));
+				} catch (Exception e) {
+					logger.info(
+							"          @WORKAROUND: Failed to accept property with HAS_VALUE OR  SubObjectPropertyOf ... SKIPPING THIS");
+					logger.info("          propertyName: " + owlObjectProperty);
+					logger.info("          propertyAxiom: " + owlObjectPropertyAxiom);
+				}
+			}
+		}
+	}
+
+	private void processDataProperties(OWLOntology ontology, VowlData vowlData) {
+		for (OWLDataProperty property : ontology.dataPropertiesInSignature(Imports.INCLUDED)
+				.collect(Collectors.toSet())) {
+			for (OWLDataPropertyAxiom propertyAxiom : ontology.axioms(property, Imports.INCLUDED)
+					.collect(Collectors.toSet())) {
+				try {
+					propertyAxiom.accept(new DataPropertyVisitor(vowlData, property));
+				} catch (Exception e) {
+					logger.info("DataPropertyVisitor : Failed to accept OWLDataPropertyAxiom -> Skipping");
+				}
+			}
+		}
+	}
+
+	private void createSubclassProperties(VowlData vowlData) {
+		new VowlSubclassPropertyGenerator(vowlData).execute();
+	}
+
+	private void fillDomainRanges(VowlData vowlData) {
+		new DomainRangeFiller(vowlData, vowlData.getProperties()).execute();
+	}
+
+	private void processClasses(OWLOntology ontology, VowlData vowlData) {
+		// use classExpressions;
+
+		for (OWLClass owlClass : ontology.classesInSignature(Imports.INCLUDED).collect(Collectors.toSet())) {
+			for (OWLClassAxiom owlClassAxiom : ontology.axioms(owlClass, Imports.INCLUDED)
+					.collect(Collectors.toSet())) {
+				OwlClassAxiomVisitor temp = new OwlClassAxiomVisitor(vowlData, owlClass);
+				try {
+					owlClassAxiom.accept(temp);
+					temp.Destrucotre();
+					temp = null;
+				} catch (Exception e) {
+					logger.info("ProcessClasses : Failed to accept owlClassAxiom -> Skipping");
+				}
+			}
+			HasKeyAxiomParser.parse(ontology, owlClass, vowlData);
+			owlClass = null;
+		}
+	}
+
+	private void processAnnotationProperties(OWLOntology ontology, VowlData vowlData) {
+		for (OWLAnnotationProperty owlAnnotationProperty : ontology.annotationPropertiesInSignature(Imports.INCLUDED)
+				.collect(Collectors.toSet())) {
+			for (OWLAnnotationAxiom owlAnnotationAxiom : ontology.axioms(owlAnnotationProperty, Imports.INCLUDED)
+					.collect(Collectors.toSet())) {
+				try {
+					String subject = owlAnnotationProperty.getIRI().toString();
+					String property = "http://visualdataweb.org/ontologies/gizmo-core#assertionDatatypeValue";
+					OWLAnnotationPropertyRangeAxiom ra = (OWLAnnotationPropertyRangeAxiom) owlAnnotationAxiom;
+					String value = ra.getRange().toString();
+					vowlData.addBaseConstructorAnnotation(subject, property, value);
+				} catch (Exception e) {
+					// not interesting
+				}
+			}
+		}
+	}
+
+	private void processGenericAxioms() {
+		ontology.generalClassAxioms().collect(Collectors.toSet())
+				.forEach(owlClassAxiom -> owlClassAxiom.accept(new GenericClassAxiomVisitor(vowlData)));
+	}
+
+	private void parseAnnotations(VowlData vowlData, OWLOntologyManager manager) {
+		AnnotationParser annotationParser = new AnnotationParser(vowlData, manager);
+		annotationParser.parse();
+	}
+
+	private void setCorrectType(Collection<AbstractEntity> entities) {
+		for (AbstractEntity entity : entities) {
+			entity.accept(new TypeSetter());
+		}
+	}
+
+	private void postParsing(OWLOntology loadedOntology, VowlData vowlData, OWLOntologyManager manager) {
+		setCorrectType(vowlData.getEntityMap().values());
+		parseAnnotations(vowlData, manager);
+		fillDomainRanges(vowlData);
+		createSubclassProperties(vowlData);
+		new ImportedChecker(vowlData, manager, loadedOntology, loadedOntologyPath).execute();
+		vowlData.getEntityMap().values().forEach(entity -> entity.accept(new EquivalentSorter(
+				ontology.getOntologyID().getOntologyIRI().orElse(IRI.create(loadedOntologyPath)), vowlData)));
+		new BaseIriCollector(vowlData).execute();
+
+		PrefixDocumentFormat pm = (PrefixDocumentFormat) manager.getOntologyFormat(ontology);
+		Map<String, String> prefixName2PrefixMap = pm.getPrefixName2PrefixMap();
+		// adding prefix list to that thing;
+		for (Map.Entry<String, String> entry : prefixName2PrefixMap.entrySet()) {
+			vowlData.addPrefix(entry.getKey(), entry.getValue());
+		}
+
+		// get the importedOntologies;
+		Stream<OWLOntology> imported = ontology.imports();
+		for (OWLOntology importedOntology : imported.collect(Collectors.toSet())) {
+			PrefixDocumentFormat i_pm = (PrefixDocumentFormat) manager.getOntologyFormat(importedOntology);
+			Map<String, String> i_prefixName2PrefixMap = i_pm.getPrefixName2PrefixMap();
+			// adding prefix list to that thing;
+			for (Map.Entry<String, String> entry : i_prefixName2PrefixMap.entrySet()) {
+				vowlData.addPrefix(entry.getKey(), entry.getValue());
+			}
+		}
+	}
+
+	/**
+	 * Executes the complete conversion to the webvowl compatible json format.
+	 * Normally is only called ones during export. But if a new conversion is
+	 * required just call this method before exporting.
+	 * <p>
+	 * The parsing is separated in three steps: The pre parsing -> normal parsing ->
+	 * post parsing. This is necessary because we can access some properties of the
+	 * entities only if we have the corresponding entity. For this example the pre
+	 * parsing can be used to retrieve all entities without any additional special
+	 * components. After that we can access the more special properties of the
+	 * entity with helper classes like {@link EntitySearcher}.
+	 * </p>
+	 */
+	public void convert() {
+		// adding some debug hints for identifying crashes in the public version
+		
+		System.out.println("Converting Ontology:");
+		if (!initialized) {
+			System.out.println("  -> preLoadOntontology()"+new java.text.SimpleDateFormat("HH:mm:ss").format(java.util.Calendar.getInstance().getTime()));
+			preLoadOntology();
+		}
+		vowlData = new VowlData();
+		vowlData.setOwlManager(manager);
+		// TODO Probably the parsing could be automated via class annotation and
+		// annotation parsing.
+		// e.q. @PreParsing, @Parsing, @PostParsing just as an idea for improvement
+
+		this.addLoadingInfo("* Generating ontology graph ");
+		this.setCurrentlyLoadingFlag("* Generating ontology graph ", true);
+		try {
+			System.out.println("  -> preParsing() "+new java.text.SimpleDateFormat("HH:mm:ss").format(java.util.Calendar.getInstance().getTime()));
+			preParsing(ontology, vowlData, manager);
+
+			System.out.println("  -> parsing()"+new java.text.SimpleDateFormat("HH:mm:ss").format(java.util.Calendar.getInstance().getTime()));
+			parsing(ontology, vowlData, manager);
+
+			System.out.println("  -> postParsing() "+new java.text.SimpleDateFormat("HH:mm:ss").format(java.util.Calendar.getInstance().getTime()));
+			postParsing(ontology, vowlData, manager);
+
+			this.addLoadingInfoToParentLine("... done");
+			System.out.println("--- Finished --- "+new java.text.SimpleDateFormat("HH:mm:ss").format(java.util.Calendar.getInstance().getTime()));
+
+			this.setCurrentlyLoadingFlag(false);
+		} catch (Exception e) {
+			this.addLoadingInfoToParentLine("... <span style='color:red;'>failed</span>");
+			this.addLoadingInfoToParentLine("\n  <span style='color:red;'>Error :</span>\n");
+			this.addLoadingInfoToParentLine(msgForWebVOWL(e.getMessage()));
+			this.setCurrentlyLoadingFlag(false);
+		}
+	}
+
+	// removed Metrics Process >> WebVOWL computes the statistics
+	// private void processMetrics() {
+	// OntologyMetric metrics = new OntologyMetric(ontology);
+	// metrics.calculate(vowlData);
+	// vowlData.setMetrics(metrics);
+	// }
+
+	/**
+	 * Exports the generated data according to the implemented {@link Exporter}.
+	 *
+	 * @param exporter
+	 *            The exporter.
+	 * @throws Exception
+	 *             Any exception during json generation.
+	 */
+	public void export(Exporter exporter) throws Exception {
+		if (vowlData == null) {
+			convert();
+		}
+		jsonGenerator.execute(vowlData);
+		jsonGenerator.export(exporter);
+		releaseMemory();
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/Converter.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/Converter.java
new file mode 100644
index 0000000..38d3ef2
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/Converter.java
@@ -0,0 +1,27 @@
+/*
+ * Converter.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.converter;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.export.types.Exporter;
+
+/**
+ *
+ */
+public interface Converter {
+	String getLoadingInfoString();
+	void setOntologyHasMissingImports(boolean val);
+	boolean ontologyHasMissingImports();
+	void addLoadingInfo(String msg);
+	boolean getCurrentlyLoadingFlag();
+	void setCurrentlyLoadingFlag(boolean val);
+	void setCurrentlyLoadingFlag(String parentLine,boolean val);
+	void addLoadingInfoToParentLine(String msg);
+	void clearLoadingMsg();
+	void convert();
+	void releaseMemory();
+
+	void export(Exporter exporter) throws Exception;
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/InputStreamConverter.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/InputStreamConverter.java
new file mode 100644
index 0000000..bea91d5
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/InputStreamConverter.java
@@ -0,0 +1,91 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.converter;
+
+import org.apache.commons.io.IOUtils;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.MissingImportHandlingStrategy;
+import org.semanticweb.owlapi.model.OWLOntologyCreationException;
+
+import java.util.Collection;
+import java.util.Collections;
+import org.semanticweb.owlapi.apibinding.OWLManager;
+
+import java.io.ByteArrayInputStream;
+import java.io.IOException;
+import java.io.InputStream;
+
+/**
+ *
+ */
+public class InputStreamConverter extends AbstractConverter {
+	protected InputStream mainOntology;
+	protected Collection<InputStream> depdencyOntologies;
+	private static final Logger logger = LogManager.getLogger(InputStreamConverter.class);
+	public boolean ontologyHasMissingImports() {
+		return missingImports;
+	}
+	public void setOntologyHasMissingImports(boolean val) {
+		missingImports=val;
+	}
+	
+	public InputStreamConverter(InputStream ontology) {
+		this(ontology, Collections.emptyList());
+	}
+
+	public InputStreamConverter(InputStream ontology, Collection<InputStream> necessaryExternals) {
+		mainOntology = ontology;
+		depdencyOntologies = Collections.unmodifiableCollection(necessaryExternals);
+	}
+
+	
+	@Override
+	protected void loadOntology() throws OWLOntologyCreationException {
+		logger.info("Converting input streams...");
+		this.setOntologyHasMissingImports(false);
+		manager = OWLManager.createOWLOntologyManager();
+
+		for (InputStream depdencyOntology : depdencyOntologies) {
+			manager.loadOntologyFromOntologyDocument(depdencyOntology);
+		}
+		String CharEncoding="UTF-8";
+		String copiedOntologyContent="";
+		try {
+			copiedOntologyContent = IOUtils.toString(mainOntology, CharEncoding);
+		} catch (IOException e1) {
+			e1.printStackTrace();
+			
+		}
+		// need a workaround with copied string since the input stream is flushed on reading ... 
+		try {
+			this.addLoadingInfo("* Parsing ontology with OWL API ");
+			this.setCurrentlyLoadingFlag("* Parsing ontology with OWL API ",true);
+			InputStream copyOfInputBuffer = new ByteArrayInputStream(copiedOntologyContent.getBytes(CharEncoding));
+			missingListener=new OWLAPI_MissingImportsListener(this);
+			manager.addMissingImportListener(missingListener);
+			manager.getOntologyConfigurator().setMissingImportHandlingStrategy(MissingImportHandlingStrategy.SILENT);
+			ontology = manager.loadOntologyFromOntologyDocument(copyOfInputBuffer);
+			this.addLoadingInfoToParentLine("... done " );
+			this.setCurrentlyLoadingFlag(false);
+			
+			if (this.ontologyHasMissingImports()==true) {
+				this.addLoadingInfoToLine("* Parsing ontology with OWL API ","<span style='color:yellow;'>(with warnings)</span>" );
+			}
+			copyOfInputBuffer=null;
+		} catch (Exception e ) {
+			this.setCurrentlyLoadingFlag(false);
+			this.addLoadingInfoToLine("* Parsing ontology with OWL API ","... <span style='color:red;'>failed</span>" );
+			this.addLoadingInfo("\n <span style='color:red;'>Loading process failed:</span> \n"+msgForWebVOWL(e.getMessage()));
+		}
+		
+		loadedOntologyPath = "file upload";
+		copiedOntologyContent="";
+		String logOntoName;
+		if (!ontology.isAnonymous()) {
+			logOntoName = ontology.getOntologyID().getOntologyIRI().get().toString();
+		} else {
+			logOntoName = "Anonymous";
+			logger.info("Ontology IRI is anonymous. Use loaded URI/IRI instead.");
+		}
+		logger.info("Ontologies loaded! Main Ontology: " + logOntoName);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/IRIConverter.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/IRIConverter.java
new file mode 100644
index 0000000..405c4fa
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/IRIConverter.java
@@ -0,0 +1,85 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.converter;
+
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.IRI;
+import org.semanticweb.owlapi.model.MissingImportHandlingStrategy;
+import org.semanticweb.owlapi.model.OWLOntologyCreationException;
+
+
+import java.util.Collection;
+import java.util.Collections;
+
+
+import org.semanticweb.owlapi.apibinding.OWLManager;
+
+public class IRIConverter extends AbstractConverter {
+	protected IRI mainOntology;
+	protected Collection<IRI> depdencyOntologies;
+	private static final Logger logger = LogManager.getLogger(IRIConverter.class);
+
+	public IRIConverter(IRI ontologyIRI) {
+		this(ontologyIRI, Collections.<IRI>emptyList());
+	}
+
+	public IRIConverter(IRI ontologyIRI, Collection<IRI> necessaryExternals) {
+		mainOntology = ontologyIRI;
+		depdencyOntologies = Collections.unmodifiableCollection(necessaryExternals);
+	}
+
+	@Override
+	protected void loadOntology() throws OWLOntologyCreationException {
+		logger.info("Converting IRIs...");
+		
+		logger.info("Loading ontologies ... [" + mainOntology + ",  " + depdencyOntologies + "]");
+		this.setOntologyHasMissingImports(false);
+		manager = OWLManager.createOWLOntologyManager();
+
+		if (!depdencyOntologies.isEmpty()) {
+			for (IRI externalIRI : depdencyOntologies) {
+				manager.loadOntology(externalIRI);
+			}
+			logger.info("External ontologies loaded!");
+		}
+		
+	
+		try {
+			this.addLoadingInfo("* Parsing ontology with OWL API ");
+			this.setCurrentlyLoadingFlag("* Parsing ontology with OWL API ",true);
+			missingListener=new OWLAPI_MissingImportsListener(this);
+			manager.addMissingImportListener(missingListener);
+			manager.getOntologyConfigurator().setMissingImportHandlingStrategy(MissingImportHandlingStrategy.SILENT);
+			manager.getOntologyConfigurator().setFollowRedirects(true);
+			manager.getOntologyConfigurator().setConnectionTimeout(100000);
+
+			manager.getOntologyConfigurator().setAcceptingHTTPCompression(true);
+			manager.getOntologyConfigurator().withRepairIllegalPunnings(false);
+			
+			ontology = manager.loadOntology(mainOntology);
+			
+			
+			this.addLoadingInfoToParentLine("... done " );
+			this.setCurrentlyLoadingFlag(false);
+			if (this.ontologyHasMissingImports()==true) {
+				this.addLoadingInfoToLine("* Parsing ontology with OWL API ","<span style='color:yellow;'>(with warnings)</span>" );
+			}
+		
+		} catch (Exception e ) {
+			this.addLoadingInfoToLine("* Parsing ontology with OWL API ","... <span style='color:red;'>failed</span>" );
+			this.setCurrentlyLoadingFlag(false);
+			this.addLoadingInfo("\n <span style='color:red;'>Loading process failed:</span> \n"+msgForWebVOWL(e.getMessage()));
+			logger.info(this.getLoadingInfoString());
+		}
+		
+		loadedOntologyPath = mainOntology.toString();
+
+		String logOntoName;
+		if (!ontology.isAnonymous()) {
+			logOntoName = ontology.getOntologyID().getOntologyIRI().get().toString();
+		} else {
+			logOntoName = mainOntology.toString();
+			logger.info("Ontology IRI is anonymous. Use loaded URI/IRI instead.");
+		}
+		logger.info("Ontologies loaded! Main Ontology: " + logOntoName);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/OntologyConverter.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/OntologyConverter.java
new file mode 100644
index 0000000..787e088
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/OntologyConverter.java
@@ -0,0 +1,40 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.converter;
+
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.OWLOntology;
+import org.semanticweb.owlapi.model.OWLOntologyCreationException;
+
+/**
+ *
+ */
+public class OntologyConverter extends AbstractConverter {
+	private static final Logger logger = LogManager.getLogger(OntologyConverter.class);
+
+	public OntologyConverter(OWLOntology ontology) {
+		this.ontology = ontology;
+	}
+
+	public OntologyConverter(OWLOntology ontology, String ontologyIRI) {
+		this(ontology);
+		loadedOntologyPath = ontologyIRI;
+	}
+
+	@Override
+	protected void loadOntology() throws OWLOntologyCreationException {
+		logger.info("Converting Ontolgy...");
+		logger.info("Loading ontology ... [" + ontology + "]");
+
+		manager = ontology.getOWLOntologyManager();
+		loadedOntologyPath = "Direct ontology";
+
+		String logOntoName;
+		if (!ontology.isAnonymous()) {
+			logOntoName = ontology.getOntologyID().getOntologyIRI().get().toString();
+		} else {
+			logOntoName = "Anonymous";
+			logger.info("Ontology IRI is anonymous.");
+		}
+		logger.info("Ontologies loaded! Main Ontology: " + logOntoName);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/OWLAPI_MissingImportsListener.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/OWLAPI_MissingImportsListener.java
new file mode 100644
index 0000000..184971d
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/converter/OWLAPI_MissingImportsListener.java
@@ -0,0 +1,28 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.converter;
+
+import java.util.HashMap;
+import java.util.Map;
+import org.semanticweb.owlapi.model.MissingImportEvent;
+import org.semanticweb.owlapi.model.MissingImportListener;
+@SuppressWarnings("serial")
+public class OWLAPI_MissingImportsListener implements MissingImportListener {
+	Map<String, Boolean> missingImportsMap;
+	AbstractConverter currentConverter;
+	public OWLAPI_MissingImportsListener(AbstractConverter c) {
+		 currentConverter=c;
+		 missingImportsMap=new HashMap<String, Boolean>();
+	};
+
+	@Override
+	public void importMissing(MissingImportEvent event) {
+		String missingName=event.getImportedOntologyURI().toString();
+		currentConverter.addLoadingInfo("\n >> <span style='color:yellow;'>Failed to import ontology :</span> <a target=\"_blank\" href="+missingName+">"+missingName+"</a>");
+		missingImportsMap.put(event.getImportedOntologyURI().toString(),false);
+		currentConverter.setOntologyHasMissingImports(true);
+	}
+	
+	public Map<String, Boolean> getMissingImportsMap(){
+		return missingImportsMap;
+	}
+}
+
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/JsonGeneratorVisitor.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/JsonGeneratorVisitor.java
new file mode 100644
index 0000000..05a8774
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/JsonGeneratorVisitor.java
@@ -0,0 +1,14 @@
+/*
+ * JsonGeneratorVisitor.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.export;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+
+/**
+ *
+ */
+public interface JsonGeneratorVisitor extends VowlElementVisitor {
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/JsonGeneratorVisitorImpl.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/JsonGeneratorVisitorImpl.java
new file mode 100644
index 0000000..7695217
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/JsonGeneratorVisitorImpl.java
@@ -0,0 +1,312 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.export;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation.Annotation;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.AbstractEntity;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.HasReference;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlThing;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.*;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.AbstractProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.TypeOfProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlDatatypeProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlObjectProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.individuals.VowlIndividual;
+import org.apache.commons.lang3.StringUtils;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.*;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+public class JsonGeneratorVisitorImpl implements JsonGeneratorVisitor {
+	private final VowlData vowlData;
+	private final Map<String, Object> root;
+	private List<Object> _class;
+	private List<Object> classAttribute;
+	private List<Object> datatype;
+	private List<Object> datatypeAttribute;
+	private List<Object> propertyList;
+	private List<Object> propertyAttributeList;
+	private Logger logger = LogManager.getLogger(JsonGeneratorVisitorImpl.class);
+
+	public JsonGeneratorVisitorImpl(VowlData vowlData, Map<String, Object> root) {
+		this.vowlData = vowlData;
+		this.root = root;
+		populateJsonRoot();
+	}
+
+	public static Map<String, String> getLabelsFromAnnotations(Collection<Annotation> annotations) {
+		Map<String, String> languageToValue = new HashMap<>();
+
+		for (Annotation annotation : annotations) {
+			languageToValue.put(annotation.getLanguage(), annotation.getValue());
+		}
+
+		return languageToValue;
+	}
+
+	private void populateJsonRoot() {
+		_class = new ArrayList<>();
+		classAttribute = new ArrayList<>();
+		datatype = new ArrayList<>();
+		datatypeAttribute = new ArrayList<>();
+		propertyList = new ArrayList<>();
+		propertyAttributeList = new ArrayList<>();
+		root.put("class", _class);
+		root.put("classAttribute", classAttribute);
+		root.put("datatype", datatype);
+		root.put("datatypeAttribute", datatypeAttribute);
+		root.put("property", propertyList);
+		root.put("propertyAttribute", propertyAttributeList);
+	}
+
+	private void addCommonFields(AbstractEntity entity, Map<String, Object> object, Map<String, Object> attributes) {
+		object.put("id", vowlData.getIdForEntity(entity));
+		object.put("type", entity.getType());
+
+		attributes.put("id", vowlData.getIdForEntity(entity));
+
+		addCommonNonAnonymAttributes(entity, attributes);
+	}
+
+	private void addCommonNonAnonymAttributes(AbstractEntity entity, Map<String, Object> attributes) {
+		if (!entity.getAttributes().contains(VowlAttribute.ANONYMOUS)) {
+			attributes.put("label", getLabelsFromAnnotations(entity.getAnnotations().getLabels()));
+			attributes.put("iri", entity.getIri().toString());
+
+			if (entity.getBaseIri() != null) {
+				attributes.put("baseIri", entity.getBaseIri().toString());
+			}
+		}
+	}
+
+	@Override
+	public void visit(VowlThing vowlThing) {
+		Map<String, Object> object = new HashMap<>();
+		Map<String, Object> attributes = new HashMap<>();
+
+		addCommonFields(vowlThing, object, attributes);
+		attributes.put("iri", VowlThing.GENERIC_THING_IRI.toString());
+
+		_class.add(object);
+		classAttribute.add(attributes);
+	}
+
+	@Override
+	public void visit(VowlClass vowlClass) {
+		Map<String, Object> object = new HashMap<>();
+		Map<String, Object> attributes = new HashMap<>();
+
+		addCommonFields(vowlClass, object, attributes);
+		attributes.put("description", getLabelsFromAnnotations(vowlClass.getAnnotations().getDescription()));
+		attributes.put("comment", getLabelsFromAnnotations(vowlClass.getAnnotations().getComments()));
+		attributes.put("superClasses", getListWithIds(vowlClass.getSuperEntities()));
+		attributes.put("subClasses", getListWithIds(vowlClass.getSubEntities()));
+		attributes.put("annotations", vowlClass.getAnnotations().getIdentifierToAnnotation());
+		attributes.put("union", getListWithIds(vowlClass.getElementsOfUnion()));
+		attributes.put("disjointUnion", getListWithIds(vowlClass.getDisjointUnion()));
+		attributes.put("intersection", getListWithIds(vowlClass.getElementOfIntersection()));
+		attributes.put("attributes", vowlClass.getAttributes());
+		attributes.put("equivalent", getListWithIds(vowlClass.getSortedEquivalents()));
+		attributes.put("complement", getListWithIds(vowlClass.getComplements()));
+		attributes.put("instances", vowlClass.getInstances().size());
+		attributes.put("individuals", createIndividualsJson(vowlClass.getIndividuals()));
+		_class.add(object);
+		classAttribute.add(attributes);
+	}
+
+	private Object createIndividualsJson(Set<IRI> individuals) {
+		List<Object> individualList = new ArrayList<>();
+
+		for (IRI individualIri : individuals) {
+			VowlIndividual individual = vowlData.getIndividualMap().get(individualIri);
+
+			Map<String, Object> fields = new HashMap<>();
+			fields.put("iri", individual.getIri().toString());
+			fields.put("baseIri", individual.getBaseIri().toString());
+			fields.put("labels", getLabelsFromAnnotations(individual.getAnnotations().getLabels()));
+			fields.put("description", getLabelsFromAnnotations(individual.getAnnotations().getDescription()));
+			fields.put("comment", getLabelsFromAnnotations(individual.getAnnotations().getComments()));
+			fields.put("annotations", individual.getAnnotations().getIdentifierToAnnotation());
+
+			individualList.add(fields);
+		}
+
+		return individualList;
+	}
+
+	@Override
+	public void visit(VowlLiteral vowlLiteral) {
+		if (!(vowlLiteral instanceof LiteralReference)) {
+			// Skip literal if it's not a reference node.
+			return;
+		}
+
+		AbstractDatatype reference = vowlData.getDatatypeForIri(((LiteralReference) vowlLiteral).getReferencedIri());
+		Map<String, Object> object = new HashMap<>();
+		Map<String, Object> attributes = new HashMap<>();
+
+		object.put("id", vowlData.getIdForEntity(vowlLiteral));
+		object.put("type", reference.getType());
+
+		attributes.put("id", vowlData.getIdForEntity(vowlLiteral));
+		attributes.put("label", getLabelsFromAnnotations(reference.getAnnotations().getLabels()));
+		attributes.put("iri", vowlLiteral.getGenericIri());
+
+		_class.add(object);
+		classAttribute.add(attributes);
+	}
+
+	@Override
+	public void visit(VowlDatatype vowlDatatype) {
+		if (!(vowlDatatype instanceof DatatypeReference)) {
+			// Skip datatype if it's not a reference node.
+			return;
+		}
+
+		AbstractDatatype reference = vowlData.getDatatypeForIri(((DatatypeReference) vowlDatatype).getReferencedIri());
+		Map<String, Object> object = new HashMap<>();
+		Map<String, Object> attributes = new HashMap<>();
+
+		object.put("id", vowlData.getIdForEntity(vowlDatatype));
+		object.put("type", reference.getType());
+
+		attributes.put("id", vowlData.getIdForEntity(vowlDatatype));
+		attributes.put("label", getLabelsFromAnnotations(reference.getAnnotations().getLabels()));
+		attributes.put("iri", reference.getIri().toString());
+		attributes.put("baseIri", reference.getBaseIri().toString());
+
+		_class.add(object);
+		classAttribute.add(attributes);
+	}
+
+	@Override
+	public void visit(VowlObjectProperty vowlObjectProperty) {
+		addProperty(vowlObjectProperty);
+	}
+
+	@Override
+	public void visit(VowlDatatypeProperty vowlDatatypeProperty) {
+		addProperty(vowlDatatypeProperty);
+	}
+
+	private void addProperty(AbstractProperty property) {
+		if (property instanceof HasReference) {
+			addReferenceProperty(property);
+			return;
+		}
+
+		if (property.getDomains().isEmpty() || property.getRanges().isEmpty()) {
+			logger.info("Domain or range is empty in property: " + property);
+			return;
+		}
+
+		Map<String, Object> object = new HashMap<>();
+		Map<String, Object> attributes = new HashMap<>();
+
+		addCommonFields(property, object, attributes);
+		attributes.put("domain", vowlData.getIdForIri(property.getJsonDomain()));
+		attributes.put("range", vowlData.getIdForIri(property.getJsonRange()));
+		attributes.put("description", getLabelsFromAnnotations(property.getAnnotations().getDescription()));
+		attributes.put("comment", getLabelsFromAnnotations(property.getAnnotations().getComments()));
+		attributes.put("attributes", property.getAttributes());
+		attributes.put("annotations", property.getAnnotations().getIdentifierToAnnotation());
+		attributes.put("inverse", getIdForIri(property.getInverse()));
+		attributes.put("superproperty", getListWithIds(property.getSuperEntities()));
+		attributes.put("subproperty", getListWithIds(property.getSubEntities()));
+		attributes.put("equivalent", getListWithIds(property.getSortedEquivalents()));
+		attributes.put("minCardinality", getCardinality(property.getMinCardinality()));
+		attributes.put("maxCardinality", getCardinality(property.getMaxCardinality()));
+		attributes.put("cardinality", getCardinality(property.getExactCardinality()));
+		propertyList.add(object);
+		propertyAttributeList.add(attributes);
+	}
+
+	private void addReferenceProperty(AbstractProperty property) {
+		if (property.getDomains().isEmpty() || property.getRanges().isEmpty()) {
+			logger.info("Domain or range is empty in property: " + property);
+			return;
+		}
+
+		Map<String, Object> object = new HashMap<>();
+		Map<String, Object> attributes = new HashMap<>();
+		AbstractProperty reference = vowlData.getPropertyForIri(((HasReference) property).getReferenceIri());
+
+		object.put("id", vowlData.getIdForEntity(property));
+		object.put("type", property.getType());
+
+		attributes.put("id", vowlData.getIdForEntity(property));
+
+		addCommonNonAnonymAttributes(reference, attributes);
+
+		attributes.put("domain", vowlData.getIdForIri(property.getJsonDomain()));
+		attributes.put("range", vowlData.getIdForIri(property.getJsonRange()));
+		attributes.put("description", getLabelsFromAnnotations(reference.getAnnotations().getDescription()));
+		attributes.put("comment", getLabelsFromAnnotations(reference.getAnnotations().getComments()));
+		attributes.put("attributes", Stream.concat(property.getAttributes().stream(), reference.getAttributes().stream()).collect(Collectors.toSet()));
+		attributes.put("annotations", reference.getAnnotations().getIdentifierToAnnotation());
+		attributes.put("inverse", getIdForIri(reference.getInverse()));
+		attributes.put("superproperty", getListWithIds(reference.getSuperEntities()));
+		attributes.put("subproperty", getListWithIds(reference.getSubEntities()));
+		attributes.put("equivalent", getListWithIds(reference.getSortedEquivalents()));
+		attributes.put("minCardinality", getCardinality(property.getMinCardinality()));
+		attributes.put("maxCardinality", getCardinality(property.getMaxCardinality()));
+		attributes.put("cardinality", getCardinality(property.getExactCardinality()));
+
+		propertyList.add(object);
+		propertyAttributeList.add(attributes);
+	}
+
+	@Override
+	public void visit(VowlIndividual vowlIndividual) {
+		// Individuals not needed in json.
+	}
+
+	@Override
+	public void visit(TypeOfProperty typeOfProperty) {
+		if (typeOfProperty.getDomains().isEmpty() || typeOfProperty.getRanges().isEmpty()) {
+			logger.info("Domain or range is empty in typeof property: " + typeOfProperty);
+			return;
+		}
+
+		Map<String, Object> object = new HashMap<>();
+		Map<String, Object> attributes = new HashMap<>();
+
+		addCommonFields(typeOfProperty, object, attributes);
+		// Special property which should not have a own iri
+		attributes.remove("iri");
+		attributes.remove("baseIri");
+		attributes.put("domain", vowlData.getIdForIri(typeOfProperty.getJsonDomain()));
+		attributes.put("range", vowlData.getIdForIri(typeOfProperty.getJsonRange()));
+
+		propertyList.add(object);
+		propertyAttributeList.add(attributes);
+	}
+
+	private List<String> getListWithIds(Collection<IRI> iriList) {
+		return iriList.stream().map(iri -> String.valueOf(vowlData.getIdForIri(iri))).collect(Collectors.toList());
+	}
+
+	private String getIdForIri(IRI iri) {
+		if (iri == null) {
+			return null;
+		}
+
+		return vowlData.getIdForIri(iri);
+	}
+
+	/**
+	 * @return Empty string if value is <= 0 else the value.
+	 */
+	private String getCardinality(Integer value) {
+		if (value <= 0) {
+			return StringUtils.EMPTY;
+		}
+
+		return value.toString();
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/BackupExporter.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/BackupExporter.java
new file mode 100644
index 0000000..9aed4ab
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/BackupExporter.java
@@ -0,0 +1,22 @@
+/*
+ * ReturnExporter.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.export.types;
+
+/**
+ * Simple exporter that saves the given text.
+ */
+public class BackupExporter implements Exporter {
+	protected String convertedJson;
+
+	public String getConvertedJson() {
+		return convertedJson;
+	}
+
+	@Override
+	public void write(String text) throws Exception {
+		convertedJson = text;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/ConsoleExporter.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/ConsoleExporter.java
new file mode 100644
index 0000000..e3c4734
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/ConsoleExporter.java
@@ -0,0 +1,16 @@
+/*
+ * ConsoleExporter.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.export.types;
+
+/**
+ * Prints the passed text to the console
+ */
+public class ConsoleExporter implements Exporter {
+	@Override
+	public void write(String text) {
+		System.out.println(text);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/Exporter.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/Exporter.java
new file mode 100644
index 0000000..c10c180
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/Exporter.java
@@ -0,0 +1,14 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.export.types;
+
+/**
+ * Has a method for writing the string into a specific destination
+ */
+public interface Exporter {
+
+	/**
+	 * Writes the passed string into a specific target.
+	 *
+	 * @param text The generated text.
+	 */
+	void write(String text) throws Exception;
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/FileExporter.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/FileExporter.java
new file mode 100644
index 0000000..5c5394c
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/FileExporter.java
@@ -0,0 +1,33 @@
+/*
+ * FileWriter.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.export.types;
+
+import java.io.File;
+import java.io.FileWriter;
+import java.io.IOException;
+
+/**
+ * Exports the passed text into a file.
+ */
+public class FileExporter implements Exporter {
+
+	private File destinationFile;
+
+	public FileExporter(File destinationFile) {
+		this.destinationFile = destinationFile;
+	}
+
+	@Override
+	public void write(String text) throws IOException {
+		while (destinationFile.exists()) {
+			destinationFile.delete();
+		}
+		FileWriter writer = new FileWriter(destinationFile);
+		writer.write(text);
+		writer.close();
+	}
+
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/JsonGenerator.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/JsonGenerator.java
new file mode 100644
index 0000000..bc20202
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/export/types/JsonGenerator.java
@@ -0,0 +1,262 @@
+/*
+ * JsonGenerator.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.export.types;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.export.JsonGeneratorVisitor;
+import de.uni_stuttgart.vis.vowl.owl2vowl.export.JsonGeneratorVisitorImpl;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.AbstractEntity;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.ontology.OntologyInformation;
+import de.uni_stuttgart.vis.vowl.owl2vowl.util.ProjectInformations;
+
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.codehaus.jackson.map.ObjectMapper;
+import org.codehaus.jackson.map.SerializationConfig;
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.*;
+import java.util.stream.Collectors;
+
+/**
+ *
+ */
+public class JsonGenerator {
+
+	private static final Logger logger = LogManager.getLogger(JsonGenerator.class);
+
+	private final String VERSION_INFORMATION = "Created with OWL2VOWL (version " + ProjectInformations.getVersion()
+			+ "), http://vowl.visualdataweb.org";
+	private Map<String, Object> root;
+	private Map<String, Object> header;
+	private Map<String, Object> prefixList;
+	private List<Object> gizmoAnnotations;
+	private List<Object> namespace;
+	private JsonGeneratorVisitor visitor;
+
+	public JsonGenerator() {
+		initialize();
+	}
+
+	private void initialize() {
+		root = new LinkedHashMap<>();
+		header = new LinkedHashMap<>();
+		prefixList = new LinkedHashMap<>();
+		gizmoAnnotations= new ArrayList<>();
+		namespace = new ArrayList<>();
+
+		root.put("_comment", VERSION_INFORMATION);
+		root.put("header", header);
+		root.put("namespace", namespace);
+		root.put("gizmoAnnotations", gizmoAnnotations);
+		
+		namespace.add(new HashMap<>());
+	}
+
+	public void execute(VowlData vowlData) throws Exception {
+		processHeader(vowlData);
+		processGizmoAnnotations(vowlData);
+		visitor = new JsonGeneratorVisitorImpl(vowlData, root);
+		convertEntities(vowlData.getEntityMap());
+	}
+
+	public void export(Exporter exporter) throws Exception {
+		ObjectMapper mapper = new ObjectMapper();
+		mapper.configure(SerializationConfig.Feature.WRITE_NULL_MAP_VALUES, false);
+		mapper.enable(SerializationConfig.Feature.INDENT_OUTPUT);
+		invoke(root);
+		exporter.write(mapper.writeValueAsString(root));
+	}
+
+	protected void processHeader(VowlData vowlData) {
+		OntologyInformation ontologyInformation = vowlData.getOntologyInformation();
+		header.put("languages", vowlData.getLanguages());
+		header.put("baseIris", vowlData.getBaseIris().stream().map(IRI::toString).collect(Collectors.toSet()));
+		header.put("prefixList", prefixList);
+		header.put("title", JsonGeneratorVisitorImpl.getLabelsFromAnnotations(ontologyInformation.getTitles()));
+		header.put("iri", ontologyInformation.getIri());
+		header.put("version", ontologyInformation.getVersion());
+		header.put("author", ontologyInformation.getAuthors());
+		header.put("description", JsonGeneratorVisitorImpl.getLabelsFromAnnotations(ontologyInformation.getAnnotations().getDescription()));
+		header.put("labels", JsonGeneratorVisitorImpl.getLabelsFromAnnotations(ontologyInformation.getAnnotations().getLabels()));
+		header.put("comments", JsonGeneratorVisitorImpl.getLabelsFromAnnotations(ontologyInformation.getAnnotations().getComments()));
+		header.put("other", ontologyInformation.getAnnotations().getIdentifierToAnnotation());
+		
+		Map<String, String> map = vowlData.getPrefixMap();
+		// adding prefix list to that thing;
+	    for (Map.Entry<String,String> entry : map.entrySet()) {
+	    	  String pr=entry.getKey();
+	            pr= pr.substring(0, pr.length() - 1);
+            prefixList.put(pr,entry.getValue());
+	    }
+	}
+	
+	
+protected void processGizmoAnnotations(VowlData vowlData) {
+		
+		Map<String, Map<String,String> >  annotationMap = vowlData.getAnnotationMap();
+		Map<String, String>   prefixMap = vowlData.getPrefixMap();
+		String gizmoRep=prefixMap.get("gizmo:");
+		if (gizmoRep==null) {
+			gizmoRep="empty";
+		}	
+		for (Map.Entry<String, Map<String , String > > entry : annotationMap.entrySet())
+		{
+			Map<String, Object> object = new HashMap<>();
+			object.put("iri", entry.getKey());
+			
+		    int numGizmoAnnotations=0;
+		    Map<String , String > bcMap=entry.getValue();
+		    Map<String, Object> renderingDescriptions= new HashMap<>();
+		    for (Map.Entry<String, String > annotationPV: bcMap.entrySet()){
+		    	IRI temp=IRI.create(annotationPV.getKey());
+		    	String ns= temp.getNamespace();
+		    	if (ns.compareTo(gizmoRep)==0) {
+		    		// this is a gizmo annotation 
+		    		String annotationKey=temp.getShortForm();
+		    		// just making sure we write only that which belongs here;
+		    		if (annotationPV.getValue().contains(";")) {
+		    			String[] sep=annotationPV.getValue().split(";");
+		    			Set<String> tempSet = new  HashSet<>();
+		    			for (int i=0;i<sep.length;i++) {
+		    				tempSet.add(sep[i]);
+		    			}
+		    			renderingDescriptions.put(annotationKey, tempSet);
+		    		} else {
+		    			renderingDescriptions.put(annotationKey, annotationPV.getValue());
+		    		}
+		    		numGizmoAnnotations++;
+		    	}
+		    }
+		    if (numGizmoAnnotations>0) {
+		    	object.put("annotations", renderingDescriptions);
+		    	// only when we have > 0 annotations we add this to the object
+		    	gizmoAnnotations.add(object);
+		    }
+		}
+	}
+
+	protected <V extends AbstractEntity> void convertEntities(Map<IRI, V> entityMap) {
+		for (Map.Entry<IRI, V> irivEntry : entityMap.entrySet()) {
+			V entity = irivEntry.getValue();
+
+			if (!entity.isExportToJson()) {
+				continue;
+			}
+			try {
+				entity.accept(visitor);
+			}
+			catch (Exception e){
+				IRI key =irivEntry.getKey();
+				logger.info("WARNING! ");
+				logger.info("*******************************");
+				logger.info("Failed to Accept!");
+				logger.info("Entity   "+entity);
+				logger.info("Key      "+key);
+				logger.info("Visitor  "+visitor);
+				logger.info("Reason : "+e);
+				logger.info("The type of the object is: " + entity.getClass().getName());
+				logger.info("*** SKIPPING THIS ***");
+				continue;
+			}
+		}
+	}
+	
+//removed Metrics Process >> WebVOWL computes the statistics
+//	public void processMetrics(VowlData vowlData) {
+//		
+//		OntologyMetric metrics = vowlData.getMetrics();
+//		this.metrics.put("classCount", metrics.getClasses());
+//		this.metrics.put("objectPropertyCount", metrics.getObjectProperties());
+//		this.metrics.put("datatypePropertyCount", metrics.getDatatypeProperties());
+//		this.metrics.put("individualCount", metrics.getIndividuals());
+//	}
+
+
+	/**
+	 * Used to remove empty collections out of the json.
+	 *
+	 * @param jsonObj Object to be invoked.
+	 */
+	private void invoke(Map<?, Object> jsonObj) {
+		Iterator<?> it = jsonObj.keySet().iterator();
+
+		while (it.hasNext()) {
+			Object key = it.next();
+
+			Object o = jsonObj.get(key);
+
+			if (o instanceof Map) {
+				Map<?, Object> casted = (Map<?, Object>) o;
+
+				if (casted.isEmpty()) {
+					it.remove();
+				} else {
+					invoke(casted);
+				}
+			}
+
+			if (o instanceof Collection) {
+				Collection<Object> casted = (Collection<Object>) o;
+
+				if (casted.isEmpty()) {
+					it.remove();
+				} else {
+					invoke(casted);
+				}
+			}
+
+			if (o instanceof String) {
+				String casted = (String) o;
+
+				if (casted.isEmpty()) {
+					it.remove();
+				}
+			}
+		}
+	}
+
+	/**
+	 * Used to remove empty collections out of the json.
+	 *
+	 * @param jsonObj Object to be invoked.
+	 */
+	private void invoke(Collection<Object> jsonObj) {
+		Iterator<Object> it = jsonObj.iterator();
+
+		while (it.hasNext()) {
+			Object o = it.next();
+
+			if (o instanceof Map) {
+				Map<?, Object> casted = (Map<?, Object>) o;
+
+				if (casted.size() == 0) {
+					it.remove();
+				} else {
+					invoke(casted);
+				}
+			}
+
+			if (o instanceof Collection) {
+				Collection<Object> casted = (Collection<Object>) o;
+
+				if (casted.size() == 0) {
+					it.remove();
+				} else {
+					invoke(casted);
+				}
+			}
+
+			if (o instanceof String) {
+				String casted = (String) o;
+
+				if (casted.isEmpty()) {
+					it.remove();
+				}
+			}
+		}
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/AbstractVowlObject.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/AbstractVowlObject.java
new file mode 100644
index 0000000..9e07d49
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/AbstractVowlObject.java
@@ -0,0 +1,41 @@
+/*
+ * AbstractVowlObject.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation.Annotations;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.helper.ComparisonHelper;
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ *
+ */
+public abstract class AbstractVowlObject implements HasIri, HasAnnotations, VowlVisitable {
+	protected IRI iri;
+	protected IRI baseIri;
+	private Annotations annotations = new Annotations();
+
+	public AbstractVowlObject(IRI iri) {
+		this.iri = iri;
+
+		if (iri != null) {
+			baseIri = IRI.create(ComparisonHelper.extractBaseIRI(iri.toString()));
+		}
+	}
+
+	public IRI getBaseIri() {
+		return baseIri;
+	}
+
+	@Override
+	public Annotations getAnnotations() {
+		return annotations;
+	}
+
+	@Override
+	public IRI getIri() {
+		return iri;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/annotation/Annotation.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/annotation/Annotation.java
new file mode 100644
index 0000000..4a4f15d
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/annotation/Annotation.java
@@ -0,0 +1,109 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.Vowl_Lang;
+
+/**
+ * @author Eduard
+ */
+public class Annotation {
+	public static final String TYPE_IRI = "iri";
+	public static final String TYPE_LABEL = "label";
+	private String identifier;
+	private String language = Vowl_Lang.LANG_UNSET;
+	private String value;
+	private String type;
+
+	public Annotation(String identifier, String value) {
+		this.identifier = extractIdentifier(identifier);
+		this.value = value;
+		this.type = "unset";
+	}
+
+	public Annotation(String identifier, String value, String type) {
+		this.identifier = extractIdentifier(identifier);
+		this.value = value;
+		this.type = type;
+	}
+
+	public String getType() {
+		return type;
+	}
+
+	public void setType(String type) {
+		this.type = type;
+	}
+
+	public String getIdentifier() {
+		return identifier;
+	}
+
+	public void setIdentifier(String identifier) {
+		this.identifier = identifier;
+	}
+
+	private String extractIdentifier(String identifier) {
+		int slash = identifier.lastIndexOf("/");
+		int arrow = identifier.lastIndexOf(">");
+		int doubleDot = identifier.lastIndexOf(":");
+		int hash = identifier.lastIndexOf("#");
+
+		int lastCut = -1;
+		int firstCut = -1;
+
+		if (arrow != -1) {
+			lastCut = arrow;
+		}
+
+		if (slash != -1 && firstCut < slash) {
+			firstCut = slash;
+		}
+
+		if (doubleDot != -1 && firstCut < doubleDot) {
+			firstCut = doubleDot;
+		}
+
+		if (hash != -1 && firstCut < hash) {
+			firstCut = hash;
+		}
+
+		String result;
+
+		if (firstCut != -1 && lastCut != -1) {
+			result = identifier.substring(firstCut + 1, lastCut);
+		} else if (firstCut != -1) {
+			result = identifier.substring(firstCut + 1);
+		} else if (lastCut != -1){
+			result = identifier.substring(0, lastCut);
+		} else {
+			result = identifier;
+		}
+
+		return result;
+	}
+
+	public String getLanguage() {
+		return language;
+	}
+
+	public void setLanguage(String language) {
+		this.language = language;
+	}
+
+	public String getValue() {
+		return value;
+	}
+
+	public void setValue(String value) {
+		this.value = value;
+	}
+
+	@Override
+	public String toString() {
+		return "Annotation{" +
+				"type='" + type + "\'" +
+				", identifier='" + identifier + '\'' +
+				", language='" + language + '\'' +
+				", value='" + value + '\'' +
+				'}';
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/annotation/AnnotationIdentifierEnum.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/annotation/AnnotationIdentifierEnum.java
new file mode 100644
index 0000000..b8c3365
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/annotation/AnnotationIdentifierEnum.java
@@ -0,0 +1,26 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation;
+
+/**
+ * @author Eduard
+ */
+public enum AnnotationIdentifierEnum {
+	DEPRECATED("deprecated"),
+	DESCRIPTION("description"),
+	COMMENT("comment"),
+	LABEL("label");
+
+	private final String value;
+
+	AnnotationIdentifierEnum(String value) {
+		this.value = value;
+	}
+
+	public String getValue() {
+		return value;
+	}
+
+	@Override
+	public String toString() {
+		return getValue();
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/annotation/Annotations.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/annotation/Annotations.java
new file mode 100644
index 0000000..f0210ed
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/annotation/Annotations.java
@@ -0,0 +1,88 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation;
+
+import java.util.*;
+
+/**
+ * @author Eduard
+ */
+public class Annotations {
+	private List<Annotation> labels = new ArrayList<>();
+	private List<Annotation> comments = new ArrayList<>();
+	private List<Annotation> description = new ArrayList<>();
+	private boolean deprecated = false;
+	private Map<String, List<Annotation>> identifierToAnnotation = new HashMap<>();
+
+	public List<Annotation> getComments() {
+		return Collections.unmodifiableList(comments);
+	}
+
+	public List<Annotation> getDescription() {
+		return Collections.unmodifiableList(description);
+	}
+
+	public boolean isDeprecated() {
+		return deprecated;
+	}
+
+	public List<Annotation> getLabels() {
+		return Collections.unmodifiableList(labels);
+	}
+
+	public void addLabel(Annotation annotation) {
+		labels.add(annotation);
+	}
+
+	public Map<String, List<Annotation>> getIdentifierToAnnotation() {
+		return Collections.unmodifiableMap(identifierToAnnotation);
+	}
+
+	public void addAnnotation(Annotation annotation) {
+		String identifier = annotation.getIdentifier();
+
+		if (!identifierToAnnotation.containsKey(identifier)) {
+			identifierToAnnotation.put(identifier, new ArrayList<>());
+		}
+
+		identifierToAnnotation.get(identifier).add(annotation);
+	}
+
+	public void fillAnnotations(Set<Annotation> annotations) {
+		for (Annotation annotation : annotations) {
+			if (annotation.getIdentifier().equals(AnnotationIdentifierEnum.DEPRECATED.getValue())) {
+				deprecated = true;
+				continue;
+			}
+
+			if (annotation.getIdentifier().equals(AnnotationIdentifierEnum.LABEL.getValue())) {
+				labels.add(annotation);
+				continue;
+			}
+
+			if (annotation.getIdentifier().equals(AnnotationIdentifierEnum.DESCRIPTION.getValue())) {
+				description.add(annotation);
+				continue;
+			}
+
+			if (annotation.getIdentifier().equals(AnnotationIdentifierEnum.COMMENT.getValue())) {
+				comments.add(annotation);
+				continue;
+			}
+
+			if (!identifierToAnnotation.containsKey(annotation.getIdentifier())) {
+				identifierToAnnotation.put(annotation.getIdentifier(), new ArrayList<>());
+			}
+
+			identifierToAnnotation.get(annotation.getIdentifier()).add(annotation);
+		}
+	}
+
+	@Override
+	public String toString() {
+		return "Annotations{" +
+				"labels=" + labels +
+				", description=" + description +
+				", deprecated=" + deprecated +
+				", identifierToAnnotation=" + identifierToAnnotation +
+				'}';
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlData.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlData.java
new file mode 100644
index 0000000..b02e366
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlData.java
@@ -0,0 +1,383 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.data;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.AbstractEntity;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.AbstractNode;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.AbstractClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.NullClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlThing;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.AbstractDatatype;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlLiteral;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.AbstractProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.TypeOfProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlDatatypeProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlObjectProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.individuals.VowlIndividual;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.ontology.OntologyInformation;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.ontology.OntologyMetric;
+
+import org.semanticweb.owlapi.model.IRI;
+import org.semanticweb.owlapi.model.OWLOntologyManager;
+
+import java.util.*;
+import java.util.Map.Entry;
+
+/**
+ * Contains all data WebVOWL needs.
+ */
+public class VowlData {
+	private final VowlLiteral genericLiteral;
+	// Not sure if context information should be stored here
+	protected OWLOntologyManager owlManager;
+	private Map<AbstractEntity, String> entityToId = new HashMap<>();
+	private Map<IRI, AbstractEntity> entityMap = new HashMap<>();
+	private Map<IRI, AbstractClass> classMap = new AllEntityMap<>(entityMap);
+	private Map<IRI, AbstractDatatype> datatypeMap = new AllEntityMap<>(entityMap);
+	private Map<IRI, VowlObjectProperty> objectPropertyMap = new AllEntityMap<>(entityMap);
+	private Map<IRI, VowlDatatypeProperty> datatypePropertyMap = new AllEntityMap<>(entityMap);
+	private Map<IRI, TypeOfProperty> typeOfPropertyMap = new AllEntityMap<IRI, TypeOfProperty>(entityMap);
+	private Map<IRI, VowlIndividual> individualMap = new HashMap<>();
+	private Map<String, String> prefixMap = new HashMap<>();
+	
+	private Map<String, Map<String , String > > baseConstructAnnotations= new HashMap<>();
+	
+	private OntologyInformation ontologyInformation = new OntologyInformation();
+	private Set<String> languages = new HashSet<>();
+	private Set<IRI> baseIris = new HashSet<>();
+	private VowlSearcher searcher;
+	private VowlIriGenerator iriGenerator = new VowlIriGenerator();
+	private VowlGenerator generator;
+	private VowlThingProvider thingProvider;
+	private OntologyMetric metrics;
+
+	public VowlData() {
+		searcher = new VowlSearcher(this);
+		generator = new VowlGenerator(this);
+		thingProvider = new VowlThingProvider(this, searcher, generator);
+		genericLiteral = new VowlLiteral(IRI.create(VowlLiteral.LITERAL_IRI));
+		addDatatype(genericLiteral);
+	}
+
+	public void Destructore() {
+		for (Entry<AbstractEntity, String> entry : entityToId.entrySet()) {
+			entry.getKey().releaseMemory();
+			
+		}
+		for (Entry<IRI, AbstractEntity> entry : entityMap.entrySet()) {
+			entry.getValue().releaseMemory();
+		}
+		
+		
+		for (Entry<IRI, AbstractClass> entry : classMap.entrySet()) {
+			entry.getValue().releaseMemory();
+		}
+		for (Entry<IRI, AbstractDatatype> entry : datatypeMap.entrySet()) {
+			entry.getValue().releaseMemory();
+		}
+		
+		for (Entry<IRI, VowlObjectProperty> entry : objectPropertyMap.entrySet()) {
+			entry.getValue().releaseMemory();
+		}
+		
+		for (Entry<IRI, VowlDatatypeProperty> entry : datatypePropertyMap.entrySet()) {
+			entry.getValue().releaseMemory();
+		}
+		
+		
+		
+		entityToId.clear();
+		entityMap.clear();
+		classMap.clear();
+		datatypeMap.clear();
+		objectPropertyMap.clear();
+		datatypePropertyMap.clear();
+		typeOfPropertyMap.clear();
+		individualMap.clear();
+		languages.clear();
+		baseIris.clear();
+		
+		owlManager			= null;
+		entityToId			= null;
+		entityMap			= null;
+		classMap 			= null;
+		datatypeMap 		= null;
+		objectPropertyMap 	= null;
+		datatypePropertyMap = null;
+		typeOfPropertyMap 	= null;
+		individualMap 		= null;
+		ontologyInformation = null;
+		languages			= null;
+		baseIris			= null;
+		searcher			= null;
+		iriGenerator 		= null;
+		generator			= null;
+		thingProvider		= null;
+		metrics				= null;
+		
+		
+	}
+	
+	public OWLOntologyManager getOwlManager() {
+		return owlManager;
+	}
+
+	public void setOwlManager(OWLOntologyManager owlManager) {
+		this.owlManager = owlManager;
+	}
+
+	public Set<IRI> getBaseIris() {
+		return baseIris;
+	}
+
+	public void addBaseIri(IRI iri) {
+		if (iri.toString().contains(VowlIriGenerator.baseIri)) {
+			return;
+		}
+		baseIris.add(iri);
+	}
+	
+	
+	public void addBaseConstructorAnnotation(String baseConstructor, String property, String value) {
+		Map<String , String > bcMap=baseConstructAnnotations.get(baseConstructor);
+		if (bcMap==null) {
+			//create one for this construcor
+			bcMap= new HashMap<>();
+			baseConstructAnnotations.put(baseConstructor, bcMap);
+		}
+		String existsValue=bcMap.get(property);
+		if (existsValue!=null) {
+			bcMap.put(property, existsValue+";"+value);
+		}else {
+				bcMap.put(property, value);
+		}
+	}
+	
+	public void showBaseConstructorAnnotations() {
+		
+		
+		for (Map.Entry<String, Map<String , String > > entry : baseConstructAnnotations.entrySet())
+		{
+		    System.out.println("Element "+ entry.getKey()  + " has Annotations " );
+		    Map<String , String > bcMap=entry.getValue();
+		    for (Map.Entry<String, String > annotationPV: bcMap.entrySet()){
+		    	System.out.println("       Property "+ annotationPV.getKey()  + " value "+ annotationPV.getValue() );
+		    			    	
+		    }
+			    
+		}
+		
+		
+	};
+	
+	
+	
+	public void addPrefix(String prefix,String iri) {
+		prefixMap.put(prefix, iri);
+	}
+
+	public VowlLiteral getGenericLiteral() {
+		return genericLiteral;
+	}
+
+	public OntologyInformation getOntologyInformation() {
+		return ontologyInformation;
+	}
+
+	public Map<IRI, TypeOfProperty> getTypeOfPropertyMap() {
+		return typeOfPropertyMap;
+	}
+
+	public void addTypeOfProperty(TypeOfProperty property) {
+		typeOfPropertyMap.put(property.getIri(), property);
+	}
+
+	public Map<IRI, VowlIndividual> getIndividualMap() {
+		return individualMap;
+	}
+
+	public VowlThingProvider getThingProvider() {
+		return thingProvider;
+	}
+
+	public VowlGenerator getGenerator() {
+		return generator;
+	}
+
+	public VowlSearcher getSearcher() {
+		return searcher;
+	}
+
+	public  Map<String, Map<String , String > >  getAnnotationMap(){
+		return baseConstructAnnotations;
+	}
+	
+	public Map<IRI, AbstractEntity> getEntityMap() {
+		return Collections.unmodifiableMap(entityMap);
+	}
+
+	public Map<IRI, AbstractDatatype> getDatatypeMap() {
+		return Collections.unmodifiableMap(datatypeMap);
+	}
+
+	public Map<IRI, VowlObjectProperty> getObjectPropertyMap() {
+		return Collections.unmodifiableMap(objectPropertyMap);
+	}
+
+	public Map<IRI, VowlDatatypeProperty> getDatatypePropertyMap() {
+		return Collections.unmodifiableMap(datatypePropertyMap);
+	}
+
+	public Map<IRI, AbstractClass> getClassMap() {
+		return Collections.unmodifiableMap(classMap);
+	}
+
+	public Map<String, String> getPrefixMap() {
+		return prefixMap;
+	}
+	
+	public AbstractClass getClassForIri(IRI iri) {
+		if (classMap.containsKey(iri)) {
+			return classMap.get(iri);
+		} else if (iri.toString().equals(VowlThing.THING_IRI)) {
+			return new NullClass();
+		} else {
+			throw new IllegalStateException("Can't find class for passed iri: " + iri);
+		}
+	}
+
+	public AbstractDatatype getDatatypeForIri(IRI iri) {
+		if (datatypeMap.containsKey(iri)) {
+			return datatypeMap.get(iri);
+		} else {
+			throw new IllegalStateException("Can't find datatype for passed iri: " + iri);
+		}
+	}
+
+	public VowlObjectProperty getObjectPropertyForIri(IRI iri) {
+		if (objectPropertyMap.containsKey(iri)) {
+			return objectPropertyMap.get(iri);
+		} else {
+			throw new IllegalStateException("Can't find object property for passed iri: " + iri);
+		}
+	}
+
+	public VowlDatatypeProperty getDatatypePropertyForIri(IRI iri) {
+		if (datatypePropertyMap.containsKey(iri)) {
+			return datatypePropertyMap.get(iri);
+		} else {
+			throw new IllegalStateException("Can't find datatype property for passed iri: " + iri);
+		}
+	}
+
+	public AbstractEntity getEntityForIri(IRI iri) {
+		if (entityMap.containsKey(iri)) {
+			return entityMap.get(iri);
+		} else {
+			throw new IllegalStateException("Can't find entity for passed iri: " + iri);
+		}
+	}
+
+	public AbstractProperty getPropertyForIri(IRI iri) {
+		AbstractEntity entity = getEntityForIri(iri);
+
+		if (entity instanceof AbstractProperty) {
+			return (AbstractProperty) entity;
+		}
+
+		throw new IllegalStateException("Can't find property for passed iri: " + iri);
+	}
+
+	public AbstractNode getNodeForIri(IRI iri) {
+		AbstractEntity entity = getEntityForIri(iri);
+
+		if (entity instanceof AbstractNode) {
+			return (AbstractNode) entity;
+		}
+
+		throw new IllegalStateException("Can't find node for passed iri: " + iri);
+	}
+
+	public String getIdForIri(IRI iri) {
+		return getIdForEntity(getEntityForIri(iri));
+	}
+
+	public String getIdForEntity(AbstractEntity entity) {
+		if (!entityToId.containsKey(entity)) {
+			entityToId.put(entity, "" + entityToId.keySet().size());
+		}
+
+		return entityToId.get(entity);
+	}
+
+	public void addClass(AbstractClass vowlClass) {
+		classMap.put(vowlClass.getIri(), vowlClass);
+	}
+
+	public void addDatatype(AbstractDatatype datatype) {
+		datatypeMap.put(datatype.getIri(), datatype);
+	}
+
+	public void addObjectProperty(VowlObjectProperty prop) {
+		objectPropertyMap.put(prop.getIri(), prop);
+	}
+
+	public void addDatatypeProperty(VowlDatatypeProperty prop) {
+		datatypePropertyMap.put(prop.getIri(), prop);
+	}
+
+	public Set<String> getLanguages() {
+		return Collections.unmodifiableSet(languages);
+	}
+
+	public void addLanguage(String language) {
+		languages.add(language);
+	}
+
+	public IRI getNewIri() {
+		return iriGenerator.generate();
+	}
+
+	public void addIndividual(VowlIndividual individual) {
+		individualMap.put(individual.getIri(), individual);
+	}
+
+	public Collection<AbstractProperty> getProperties() {
+		Set<AbstractProperty> concat = new HashSet<>();
+		concat.addAll(datatypePropertyMap.values());
+		concat.addAll(objectPropertyMap.values());
+
+		return Collections.unmodifiableSet(concat);
+	}
+
+	public OntologyMetric getMetrics() {
+		return metrics;
+	}
+
+	public void setMetrics(OntologyMetric metrics) {
+		this.metrics = metrics;
+	}
+
+	private class VowlIriGenerator {
+		public static final String iriPrefix = "http://owl2vowl.de#";
+		public static final String baseIri = "http://owl2vowl.de";
+		private int generations = 0;
+
+		public IRI generate() {
+			return IRI.create(iriPrefix + generations++);
+		}
+	}
+}
+
+class AllEntityMap<K, V extends AbstractEntity> extends HashMap<K, V> {
+	private HashMap<K, V> mergeMap;
+
+	public <Val extends AbstractEntity> AllEntityMap(Map<K, Val> mergeMap) {
+		this.mergeMap = (HashMap<K, V>) mergeMap;
+	}
+
+	@Override
+	public V put(K key, V value) {
+		super.put(key, value);
+		mergeMap.put(key, value);
+		return value;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlGenerationEnum.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlGenerationEnum.java
new file mode 100644
index 0000000..2ddd0b9
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlGenerationEnum.java
@@ -0,0 +1,9 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.data;
+
+/**
+ * @author Eduard
+ */
+public enum VowlGenerationEnum {
+	MANUALLY,
+	AUTOMATIC
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlGenerator.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlGenerator.java
new file mode 100644
index 0000000..daea5e1
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlGenerator.java
@@ -0,0 +1,174 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.data;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.PropertyAllSomeValue;
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.PropertyType;
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation.Annotation;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.AbstractEntity;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlThing;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.DatatypeReference;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.LiteralReference;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.*;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlLiteral;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.individuals.VowlIndividual;
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.Collection;
+
+/**
+ * @author Eduard
+ */
+public class VowlGenerator {
+	private final VowlData vowlData;
+
+	public VowlGenerator(VowlData vowlData) {
+		this.vowlData = vowlData;
+	}
+
+	protected void applyAnonymous(AbstractEntity entity) {
+		entity.setGenerated(VowlGenerationEnum.MANUALLY);
+		entity.addAttribute(VowlAttribute.ANONYMOUS);
+	}
+
+	public VowlClass generateIntersection(Collection<IRI> iriList) {
+		VowlClass element = new VowlClass(vowlData.getNewIri());
+		applyAnonymous(element);
+		iriList.stream().forEach(element::addElementToIntersection);
+		element.addAttribute(VowlAttribute.INTERSECTION);
+		vowlData.addClass(element);
+		return element;
+	}
+
+	public VowlClass generateUnion(Collection<IRI> iriList) {
+		VowlClass element = new VowlClass(vowlData.getNewIri());
+		applyAnonymous(element);
+		iriList.stream().forEach(element::addElementToUnion);
+		element.addAttribute(VowlAttribute.UNION);
+		vowlData.addClass(element);
+		return element;
+	}
+
+	public VowlClass generateComplement(IRI iri) {
+		VowlClass element = new VowlClass(vowlData.getNewIri());
+		applyAnonymous(element);
+		element.addComplement(iri);
+		element.addAttribute(VowlAttribute.COMPLEMENT);
+		vowlData.addClass(element);
+		return element;
+	}
+
+	public VowlClass generateAnonymousClass() {
+		VowlClass element = new VowlClass(vowlData.getNewIri());
+		applyAnonymous(element);
+		vowlData.addClass(element);
+		return element;
+	}
+
+	public VowlThing generateThing() {
+		VowlThing thing = new VowlThing(vowlData.getNewIri());
+		thing.setGenerated(VowlGenerationEnum.MANUALLY);
+		vowlData.addClass(thing);
+		return thing;
+	}
+
+	public void generateDisjointProperty(IRI domain, IRI range) {
+		if (domain == null || range == null) {
+			throw new IllegalArgumentException("Parameters should not be null!");
+		}
+
+		VowlObjectProperty property = new VowlObjectProperty(vowlData.getNewIri());
+		applyAnonymous(property);
+		property.addDomain(domain);
+		property.addRange(range);
+		property.setType(PropertyType.DISJOINT);
+		vowlData.addObjectProperty(property);
+
+		return;
+	}
+
+	public AbstractProperty generateSubclassProperty(IRI domain, IRI range) {
+		if (domain == null || range == null) {
+			throw new IllegalArgumentException("Parameters should not be null!");
+		}
+
+		VowlObjectProperty property = new VowlObjectProperty(vowlData.getNewIri());
+		applyAnonymous(property);
+		property.addDomain(domain);
+		property.addRange(range);
+		property.setType(PropertyType.SUBCLASS);
+		property.getAnnotations().addLabel(new Annotation("label", "SubClassOf"));
+		vowlData.addObjectProperty(property);
+
+		return property;
+	}
+
+	public VowlIndividual generateIndividual(IRI iri) {
+		VowlIndividual individual = new VowlIndividual(iri);
+		vowlData.addIndividual(individual);
+
+		return individual;
+	}
+
+	public TypeOfProperty generateTypeOf(IRI domain, IRI range) {
+		if (domain == null || range == null) {
+			throw new IllegalArgumentException("Parameters should not be null!");
+		}
+
+		TypeOfProperty property = new TypeOfProperty(vowlData.getNewIri());
+		property.setGenerated(VowlGenerationEnum.MANUALLY);
+		property.addDomain(domain);
+		property.addRange(range);
+		vowlData.addTypeOfProperty(property);
+
+		return property;
+	}
+
+	public DatatypeReference generateDatatypeReference(IRI reference) {
+		if (reference == null) {
+			throw new IllegalArgumentException("Parameters should not be null!");
+		}
+
+		DatatypeReference reference1 = new DatatypeReference(vowlData.getNewIri(), reference);
+		reference1.setGenerated(VowlGenerationEnum.MANUALLY);
+		vowlData.addDatatype(reference1);
+
+		return reference1;
+	}
+
+	public ObjectValueReference generateObjectValueReference(IRI reference, PropertyAllSomeValue value) {
+		if (reference == null) {
+			throw new IllegalArgumentException("Parameters should not be null!");
+		}
+
+		ObjectValueReference reference1 = new ObjectValueReference(vowlData.getNewIri(), reference);
+		reference1.setGenerated(VowlGenerationEnum.MANUALLY);
+		reference1.setValue(value);
+		vowlData.addObjectProperty(reference1);
+		vowlData.getPropertyForIri(reference).addReferencedProperty(reference1.getIri());
+
+		return reference1;
+	}
+
+	public DatatypeValueReference generateDatatypeValueReference(IRI reference, PropertyAllSomeValue value) {
+		if (reference == null) {
+			throw new IllegalArgumentException("Parameters should not be null!");
+		}
+
+		DatatypeValueReference reference1 = new DatatypeValueReference(vowlData.getNewIri(), reference);
+		reference1.setGenerated(VowlGenerationEnum.MANUALLY);
+		reference1.setValue(value);
+		vowlData.addDatatypeProperty(reference1);
+		vowlData.getPropertyForIri(reference).addReferencedProperty(reference1.getIri());
+
+		return reference1;
+	}
+
+	public VowlLiteral generateLiteral() {
+		VowlLiteral vowlLiteral = new LiteralReference(vowlData.getNewIri(), vowlData.getGenericLiteral().getIri());
+		vowlLiteral.setGenerated(VowlGenerationEnum.MANUALLY);
+		vowlData.addDatatype(vowlLiteral);
+
+		return vowlLiteral;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlSearcher.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlSearcher.java
new file mode 100644
index 0000000..d063b40
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlSearcher.java
@@ -0,0 +1,149 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.data;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.PropertyType;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.AbstractEntity;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlThing;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlDatatype;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlLiteral;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.TypeOfProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlDatatypeProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlObjectProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.individuals.VowlIndividual;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.*;
+
+/**
+ * @author Eduard
+ */
+public class VowlSearcher implements VowlElementVisitor {
+
+	private final VowlData data;
+	private int dataSize = 0;
+	private Set<VowlClass> intersections = new HashSet<>();
+	private Set<VowlClass> unions = new HashSet<>();
+	private Set<VowlThing> things = new HashSet<>();
+	private Map<IRI, Set<IRI>> disjointMapping = new HashMap<>();
+
+	public VowlSearcher(VowlData data) {
+		this.data = data;
+		dataSize = data.getEntityMap().keySet().size();
+	}
+
+	public Set<VowlThing> getThings() {
+		checkConsistenty();
+		return Collections.unmodifiableSet(things);
+	}
+
+	protected void refresh() {
+		intersections.clear();
+		unions.clear();
+		things.clear();
+		disjointMapping.clear();
+
+		for (AbstractEntity abstractEntity : data.getEntityMap().values()) {
+			abstractEntity.accept(this);
+		}
+	}
+
+	protected void checkConsistenty() {
+		int currentSize = data.getEntityMap().keySet().size();
+		if (currentSize != dataSize) {
+			refresh();
+			dataSize = currentSize;
+		}
+	}
+
+	@Override
+	public void visit(VowlThing vowlThing) {
+		things.add(vowlThing);
+	}
+
+	@Override
+	public void visit(VowlClass vowlClass) {
+		if (vowlClass.getElementOfIntersection().size() != 0) {
+			intersections.add(vowlClass);
+		}
+
+		if (vowlClass.getElementsOfUnion().size() != 0) {
+			unions.add(vowlClass);
+		}
+	}
+
+	@Override
+	public void visit(VowlLiteral vowlLiteral) {
+
+	}
+
+	@Override
+	public void visit(VowlDatatype vowlDatatype) {
+
+	}
+
+	@Override
+	public void visit(VowlObjectProperty vowlObjectProperty) {
+		if (vowlObjectProperty.getType().equals(PropertyType.DISJOINT)) {
+			addDisjoint(vowlObjectProperty.getDomains().iterator().next(), vowlObjectProperty.getRanges().iterator().next());
+		}
+	}
+
+	@Override
+	public void visit(VowlDatatypeProperty vowlDatatypeProperty) {
+		if (vowlDatatypeProperty.getType().equals(PropertyType.DISJOINT)) {
+			addDisjoint(vowlDatatypeProperty.getDomains().iterator().next(), vowlDatatypeProperty.getRanges().iterator().next());
+		}
+	}
+
+	@Override
+	public void visit(VowlIndividual vowlIndividual) {
+
+	}
+
+	@Override
+	public void visit(TypeOfProperty typeOfProperty) {
+
+	}
+
+	public boolean containsDisjoint(IRI... disjoint) {
+		checkConsistenty();
+		return disjointMapping.containsKey(disjoint[0]) && disjointMapping.get(disjoint[0]).contains(disjoint[1]);
+	}
+
+	public VowlClass getIntersection(Collection<IRI> intersectionIris) {
+		checkConsistenty();
+		for (VowlClass intersection : intersections) {
+			if (intersection.getElementOfIntersection().containsAll(intersectionIris)) {
+				return intersection;
+			}
+		}
+
+		return null;
+	}
+
+	public VowlClass getUnion(Set<IRI> iriList) {
+		checkConsistenty();
+
+		for (VowlClass union : unions) {
+			if (union.getElementOfIntersection().containsAll(iriList)) {
+				return union;
+			}
+		}
+
+		return null;
+	}
+
+	protected void addDisjoint(IRI... disjoints) {
+		if (!disjointMapping.containsKey(disjoints[0])) {
+			disjointMapping.put(disjoints[0], new HashSet<>());
+		}
+
+		if (!disjointMapping.containsKey(disjoints[1])) {
+			disjointMapping.put(disjoints[1], new HashSet<>());
+		}
+
+		disjointMapping.get(disjoints[0]).add(disjoints[1]);
+		disjointMapping.get(disjoints[1]).add(disjoints[0]);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlThingProvider.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlThingProvider.java
new file mode 100644
index 0000000..cc3a546
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/data/VowlThingProvider.java
@@ -0,0 +1,161 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.data;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.NodeType;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.AbstractNode;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlThing;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.AbstractProperty;
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ * @author Eduard
+ */
+public class VowlThingProvider {
+	private final VowlData vowlData;
+	private final VowlSearcher searcher;
+	private final VowlGenerator generator;
+
+	public VowlThingProvider(VowlData vowlData, VowlSearcher searcher, VowlGenerator generator) {
+		this.vowlData = vowlData;
+		this.searcher = searcher;
+		this.generator = generator;
+	}
+
+	/**
+	 * Returns the owl:Thing which is already connected to the node.
+	 *
+	 * @return Owl:Thing which has connection to this node. Else null.
+	 */
+	public VowlThing getConnectedThing(IRI nodeIri) {
+		AbstractNode node = vowlData.getNodeForIri(nodeIri);
+		for (IRI out : node.getOutGoingProperties()) {
+			AbstractProperty prop = vowlData.getPropertyForIri(out);
+
+			if (prop.getRanges().size() != 1) {
+				continue;
+			}
+
+			AbstractNode rangeNode = vowlData.getNodeForIri(prop.getRanges().iterator().next());
+
+			if (rangeNode.getType().equals(NodeType.TYPE_THING)) {
+				return (VowlThing) rangeNode;
+			}
+		}
+
+		for (IRI out : node.getInGoingProperties()) {
+			AbstractProperty prop = vowlData.getPropertyForIri(out);
+
+			if (prop.getDomains().size() != 1) {
+				continue;
+			}
+
+			AbstractNode domainNode = vowlData.getNodeForIri(prop.getDomains().iterator().next());
+
+			if (domainNode.getType().equals(NodeType.TYPE_THING)) {
+				return (VowlThing) domainNode;
+			}
+		}
+
+		return null;
+	}
+
+	/**
+	 * Check if the nodes contain an already connected thing.
+	 *
+	 * @return True if there exists at least one connected thing otherwise false.
+	 */
+	public boolean containsConnectedThing(IRI nodeIri1, IRI nodeIri2) {
+		AbstractNode node1 = vowlData.getNodeForIri(nodeIri1);
+		AbstractNode node2 = vowlData.getNodeForIri(nodeIri2);
+		for (IRI out : node1.getOutGoingProperties()) {
+			AbstractProperty prop = vowlData.getPropertyForIri(out);
+
+			if (prop.getRanges().size() != 1) {
+				continue;
+			}
+
+			AbstractNode rangeNode = vowlData.getNodeForIri(prop.getRanges().iterator().next());
+
+			if (rangeNode.getType().equals(NodeType.TYPE_THING) && rangeNode == node2) {
+				return true;
+			}
+		}
+
+		for (IRI out : node1.getInGoingProperties()) {
+			AbstractProperty prop = vowlData.getPropertyForIri(out);
+
+			if (prop.getDomains().size() != 1) {
+				continue;
+			}
+
+			AbstractNode domainNode = vowlData.getNodeForIri(prop.getDomains().iterator().next());
+
+			if (domainNode.getType().equals(NodeType.TYPE_THING) && domainNode == node2) {
+				return true;
+			}
+		}
+
+		return false;
+	}
+
+	/**
+	 * A free Thing is a thing which is not connected to any class.
+	 *
+	 * @return True if and only if no connection to a class exists.
+	 */
+	public boolean isFree(VowlThing thing) {
+		for (IRI out : thing.getOutGoingProperties()) {
+			AbstractProperty property = vowlData.getPropertyForIri(out);
+
+			if (property.getRanges().size() != 1) {
+				continue;
+			}
+
+			AbstractNode rangeNode = vowlData.getNodeForIri(property.getRanges().iterator().next());
+
+			boolean allowed = rangeNode.getType().equals(NodeType.TYPE_DATATYPE)
+					|| rangeNode.getType().equals(NodeType.TYPE_LITERAL)
+					|| rangeNode.getType().equals(NodeType.TYPE_THING);
+
+			if (!allowed) {
+				return false;
+			}
+		}
+
+		for (IRI out : thing.getInGoingProperties()) {
+			AbstractProperty property = vowlData.getPropertyForIri(out);
+
+			if (property.getDomains().size() != 1) {
+				continue;
+			}
+
+			AbstractNode domainNode = vowlData.getNodeForIri(property.getDomains().iterator().next());
+
+			boolean allowed = domainNode.getType().equals(NodeType.TYPE_DATATYPE)
+					|| domainNode.getType().equals(NodeType.TYPE_LITERAL)
+					|| domainNode.getType().equals(NodeType.TYPE_THING);
+
+			if (!allowed) {
+				return false;
+			}
+		}
+
+		return true;
+	}
+
+	/**
+	 * Searches for a thing which is not connected to any class. Only possible connections are:
+	 * Things, Literal and Datatypes
+	 * TODO vielleicht sofort neues erzeugen, wenn keins vorhanden?
+	 *
+	 * @return The id of a not connected thing.
+	 */
+	public VowlThing getDisconnectedThing() {
+		for (VowlThing thing : searcher.getThings()) {
+			if (isFree(thing)) {
+				return thing;
+			}
+		}
+
+		return generator.generateThing();
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/AbstractEntity.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/AbstractEntity.java
new file mode 100644
index 0000000..b6fa791
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/AbstractEntity.java
@@ -0,0 +1,136 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.AbstractVowlObject;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.SetWithoutNull;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlGenerationEnum;
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.*;
+
+public abstract class AbstractEntity extends AbstractVowlObject implements HasEquivalents, HasSubEntities {
+	private String type;
+	private Set<VowlAttribute> attributes = new HashSet<>();
+	private Set<IRI> equivalents = new SetWithoutNull<>();
+	private List<IRI> sortedEquivalents = new ArrayList<>();
+	private Set<IRI> subEntities = new SetWithoutNull<>();
+	private Set<IRI> superEntities = new SetWithoutNull<>();
+	private VowlGenerationEnum generated = VowlGenerationEnum.AUTOMATIC;
+	private boolean exportToJson = true;
+
+	protected AbstractEntity(IRI iri, String type) {
+		super(iri);
+		this.type = type;
+	}
+
+	public List<IRI> getSortedEquivalents() {
+		return Collections.unmodifiableList(sortedEquivalents);
+	}
+
+	public void setSortedEquivalents(List<IRI> sortedEquivalents) {
+		this.sortedEquivalents = sortedEquivalents;
+	}
+
+	public VowlGenerationEnum getGenerated() {
+		return generated;
+	}
+
+	public void setGenerated(VowlGenerationEnum generated) {
+		this.generated = generated;
+	}
+
+	public Set<VowlAttribute> getAttributes() {
+		return Collections.unmodifiableSet(attributes);
+	}
+
+	public void addAttribute(VowlAttribute attribute) {
+		attributes.add(attribute);
+	}
+
+	public String getType() {
+		return type;
+	}
+
+	public void setType(String type) {
+		this.type = type;
+	}
+
+	@Override
+	public Set<IRI> getEquivalentElements() {
+		return Collections.unmodifiableSet(equivalents);
+	}
+
+	@Override
+	public void addEquivalentElement(IRI iri) {
+		equivalents.add(iri);
+	}
+
+	@Override
+	public boolean equals(Object o) {
+		if (this == o)
+			return true;
+		if (o == null || getClass() != o.getClass())
+			return false;
+
+		AbstractEntity that = (AbstractEntity) o;
+
+		return !(iri != null ? !iri.equals(that.iri) : that.iri != null);
+
+	}
+
+	@Override
+	public int hashCode() {
+		return iri != null ? iri.hashCode() : 0;
+	}
+
+	@Override
+	public String toString() {
+		return iri.toString();
+	}
+
+	@Override
+	public Set<IRI> getSuperEntities() {
+		return Collections.unmodifiableSet(superEntities);
+	}
+
+	@Override
+	public void addSuperEntity(IRI iri) {
+		superEntities.add(iri);
+	}
+
+	@Override
+	public Set<IRI> getSubEntities() {
+		return Collections.unmodifiableSet(subEntities);
+	}
+
+	@Override
+	public void addSubEntity(IRI iri) {
+		subEntities.add(iri);
+	}
+
+	public boolean isExportToJson() {
+		return exportToJson;
+	}
+
+	public void setExportToJson(boolean exportToJson) {
+		this.exportToJson = exportToJson;
+	}
+	
+	// Memory Handler required? 
+	
+	public void releaseMemory() {
+		attributes.clear();
+		equivalents.clear();
+		sortedEquivalents.clear();
+		subEntities.clear();
+		superEntities.clear();
+		
+		attributes        = null;
+		equivalents       = null;
+		sortedEquivalents = null;
+		subEntities       = null;
+		superEntities     = null;
+
+	}
+	
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/HasEquivalents.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/HasEquivalents.java
new file mode 100644
index 0000000..75eccdf
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/HasEquivalents.java
@@ -0,0 +1,13 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities;
+
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.Set;
+
+public interface HasEquivalents {
+
+	void addEquivalentElement(IRI iri);
+
+	Set<IRI> getEquivalentElements();
+
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/HasReference.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/HasReference.java
new file mode 100644
index 0000000..b2b7c05
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/HasReference.java
@@ -0,0 +1,10 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities;
+
+import org.semanticweb.owlapi.model.IRI;
+
+public interface HasReference {
+
+	IRI getReferenceIri();
+
+	void setReferenceIri(IRI referenceIri);
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/HasSubEntities.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/HasSubEntities.java
new file mode 100644
index 0000000..b0ac54f
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/HasSubEntities.java
@@ -0,0 +1,18 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities;
+
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.Set;
+
+/**
+ * @author Eduard
+ */
+public interface HasSubEntities {
+	void addSubEntity(IRI iri);
+
+	Set<IRI> getSubEntities();
+
+	void addSuperEntity(IRI iri);
+
+	Set<IRI> getSuperEntities();
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/AbstractNode.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/AbstractNode.java
new file mode 100644
index 0000000..b74ebd7
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/AbstractNode.java
@@ -0,0 +1,93 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.SetWithoutNull;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.AbstractEntity;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlThing;
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.Collections;
+import java.util.Set;
+
+public abstract class AbstractNode extends AbstractEntity implements HasUnions, HasIntersections, HasComplement {
+
+	private Set<IRI> complements = new SetWithoutNull<>();
+	private Set<IRI> intersectionElements = new SetWithoutNull<>();
+	private Set<IRI> unionElements = new SetWithoutNull<>();
+	private Set<IRI> inGoingProperties = new SetWithoutNull<>();
+	private Set<IRI> outGoingProperties = new SetWithoutNull<>();
+
+	protected AbstractNode(IRI iri, String type) {
+		super(iri, type);
+	}
+
+	public Set<IRI> getInGoingProperties() {
+		return inGoingProperties;
+	}
+
+	public Set<IRI> getOutGoingProperties() {
+		return outGoingProperties;
+	}
+
+	@Override
+	public Set<IRI> getComplements() {
+		return Collections.unmodifiableSet(complements);
+	}
+
+	@Override
+	public void addComplement(IRI iri) {
+		if (iri.equals(VowlThing.GENERIC_THING_IRI)){
+			return;
+		}
+		complements.add(iri);
+	}
+
+	@Override
+	public void addElementToIntersection(IRI iri) {
+		if (iri.equals(VowlThing.GENERIC_THING_IRI)){
+			return;
+		}
+		intersectionElements.add(iri);
+	}
+
+	@Override
+	public Set<IRI> getElementOfIntersection() {
+		return Collections.unmodifiableSet(intersectionElements);
+	}
+
+	@Override
+	public void addElementToUnion(IRI iri) {
+		if (iri.equals(VowlThing.GENERIC_THING_IRI)){
+			return;
+		}
+		unionElements.add(iri);
+	}
+
+	@Override
+	public Set<IRI> getElementsOfUnion() {
+		return Collections.unmodifiableSet(unionElements);
+	}
+
+	public void addInGoingProperty(IRI property) {
+		inGoingProperties.add(property);
+	}
+
+	public void addOutGoingProperty(IRI property) {
+		outGoingProperties.add(property);
+	}
+	
+	@Override
+	public void releaseMemory() {
+		if (complements!=null) complements.clear();
+		if (intersectionElements!=null) intersectionElements.clear();
+		if (unionElements!=null) unionElements.clear();
+		if (inGoingProperties!=null) inGoingProperties.clear();
+		if (outGoingProperties!=null) outGoingProperties.clear();
+		
+		complements 		 = null;
+		intersectionElements = null;
+		unionElements		 = null;
+		inGoingProperties	 = null;
+		outGoingProperties	 = null;
+	}
+	
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/AbstractClass.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/AbstractClass.java
new file mode 100644
index 0000000..0c26f1d
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/AbstractClass.java
@@ -0,0 +1,72 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.SetWithoutNull;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.AbstractNode;
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.Collections;
+import java.util.Set;
+
+public abstract class AbstractClass extends AbstractNode implements HasDisjointUnion, HasIndividuals {
+
+	protected Set<IRI> disjointUnion = new SetWithoutNull<>();
+	protected Set<IRI> instances = new SetWithoutNull<>();
+	protected Set<IRI> individuals = new SetWithoutNull<>();
+	private Set<IRI> keys = new SetWithoutNull<>();
+
+	protected AbstractClass(IRI iri, String type) {
+		super(iri, type);
+	}
+
+
+	@Override
+	public Set<IRI> getDisjointUnion() {
+		return disjointUnion;
+	}
+
+	@Override
+	public void addDisjointUnion(IRI disjointIri) {
+		disjointUnion.add(disjointIri);
+	}
+
+	@Override
+	public void addIndividual(IRI iri) {
+		individuals.add(iri);
+	}
+
+	@Override
+	public Set<IRI> getIndividuals() {
+		return Collections.unmodifiableSet(individuals);
+	}
+
+	@Override
+	public void addInstance(IRI iri) {
+		instances.add(iri);
+	}
+
+	@Override
+	public Set<IRI> getInstances() {
+		return Collections.unmodifiableSet(instances);
+	}
+
+	public Set<IRI> getKeys() {
+		return Collections.unmodifiableSet(keys);
+	}
+
+	public void addKey(IRI keyIri) {
+		keys.add(keyIri);
+	}
+	
+	@Override
+	public void releaseMemory() {
+		if ( disjointUnion	!= null) disjointUnion.clear();
+		if ( instances		!= null) instances.clear();
+		if ( individuals	!= null) individuals.clear();
+		if ( keys			!= null) keys.clear();
+		
+		disjointUnion=null;
+		instances=null;
+		individuals=null;
+		keys=null;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/HasDisjointUnion.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/HasDisjointUnion.java
new file mode 100644
index 0000000..7d48def
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/HasDisjointUnion.java
@@ -0,0 +1,18 @@
+/*
+ * HasDisjointUnion.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes;
+
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.Set;
+
+/**
+ * Interface to enable disjoint union functionality in classes.
+ */
+public interface HasDisjointUnion {
+	Set<IRI> getDisjointUnion();
+	void addDisjointUnion(IRI disjointIri);
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/HasIndividuals.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/HasIndividuals.java
new file mode 100644
index 0000000..d4b9bcf
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/HasIndividuals.java
@@ -0,0 +1,16 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes;
+
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.Set;
+
+public interface HasIndividuals {
+
+	void addIndividual(IRI iri);
+
+	Set<IRI> getIndividuals();
+
+	void addInstance(IRI iri);
+
+	Set<IRI> getInstances();
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/NullClass.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/NullClass.java
new file mode 100644
index 0000000..c1e1a02
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/NullClass.java
@@ -0,0 +1,19 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+
+/**
+ * NullClass which has no functionality and should be just used for VisitorEx returns.
+ *
+ * @author Eduard
+ */
+public class NullClass extends AbstractClass {
+	public NullClass() {
+		super(null, null);
+	}
+
+	@Override
+	public void accept(VowlElementVisitor visitor) {
+		// DO NOTHING
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/VowlClass.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/VowlClass.java
new file mode 100644
index 0000000..f35ec5f
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/VowlClass.java
@@ -0,0 +1,23 @@
+/*
+ * VowlClass.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.NodeType;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+import org.semanticweb.owlapi.model.IRI;
+
+public class VowlClass extends AbstractClass {
+
+	public VowlClass(IRI iri) {
+		super(iri, NodeType.TYPE_CLASS);
+	}
+
+	@Override
+	public void accept(VowlElementVisitor visitor) {
+		visitor.visit(this);
+	}
+
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/VowlThing.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/VowlThing.java
new file mode 100644
index 0000000..1629f57
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/classes/VowlThing.java
@@ -0,0 +1,35 @@
+/*
+ * VowlThing.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.NodeType;
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.Standard_Iris;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation.Annotation;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ *
+ */
+public class VowlThing extends AbstractClass {
+	public static final String THING_IRI = Standard_Iris.OWL_THING_CLASS_URI;
+	public static final IRI GENERIC_THING_IRI = IRI.create(THING_IRI);
+
+	protected VowlThing(IRI iri, String type) {
+		super(iri, type);
+	}
+
+	public VowlThing(IRI iri) {
+		super(iri, NodeType.TYPE_THING);
+		getAnnotations().addLabel(new Annotation("label", "Thing"));
+	}
+
+	@Override
+	public void accept(VowlElementVisitor visitor) {
+		visitor.visit(this);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/AbstractDatatype.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/AbstractDatatype.java
new file mode 100644
index 0000000..df36dbd
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/AbstractDatatype.java
@@ -0,0 +1,19 @@
+/*
+ * AbstractDatatype.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.AbstractNode;
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ *
+ */
+public abstract class AbstractDatatype extends AbstractNode {
+
+	protected AbstractDatatype(IRI iri, String type) {
+		super(iri, type);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/DatatypeReference.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/DatatypeReference.java
new file mode 100644
index 0000000..b783870
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/DatatypeReference.java
@@ -0,0 +1,24 @@
+/*
+ * DatatypeReference.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes;
+
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ *
+ */
+public class DatatypeReference extends VowlDatatype {
+	protected IRI referencedIri;
+
+	public DatatypeReference(IRI iri, IRI referencedIri) {
+		super(iri);
+		this.referencedIri = referencedIri;
+	}
+
+	public IRI getReferencedIri() {
+		return referencedIri;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/LiteralReference.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/LiteralReference.java
new file mode 100644
index 0000000..69918b6
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/LiteralReference.java
@@ -0,0 +1,24 @@
+/*
+ * LiteralReference.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes;
+
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ *
+ */
+public class LiteralReference extends VowlLiteral {
+	protected IRI referencedIri;
+
+	public LiteralReference(IRI iri, IRI referencedIri) {
+		super(iri);
+		this.referencedIri = referencedIri;
+	}
+
+	public IRI getReferencedIri() {
+		return referencedIri;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/VowlDatatype.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/VowlDatatype.java
new file mode 100644
index 0000000..19665cc
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/VowlDatatype.java
@@ -0,0 +1,24 @@
+/*
+ * VowlDatatype.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.NodeType;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ *
+ */
+public class VowlDatatype extends AbstractDatatype {
+	public VowlDatatype(IRI iri) {
+		super(iri, NodeType.TYPE_DATATYPE);
+	}
+
+	@Override
+	public void accept(VowlElementVisitor visitor) {
+		visitor.visit(this);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/VowlLiteral.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/VowlLiteral.java
new file mode 100644
index 0000000..baefb2a
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/datatypes/VowlLiteral.java
@@ -0,0 +1,32 @@
+/*
+ * VowlLiteral.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.NodeType;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation.Annotation;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ *
+ */
+public class VowlLiteral extends AbstractDatatype {
+	public static final String LITERAL_IRI = "http://www.w3.org/2000/01/rdf-schema#Literal";
+
+	public VowlLiteral(IRI iri) {
+		super(iri, NodeType.TYPE_LITERAL);
+		getAnnotations().addLabel(new Annotation("label", "Literal"));
+	}
+
+	public String getGenericIri() {
+		return LITERAL_IRI;
+	}
+
+	@Override
+	public void accept(VowlElementVisitor visitor) {
+		visitor.visit(this);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/HasComplement.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/HasComplement.java
new file mode 100644
index 0000000..f23dadc
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/HasComplement.java
@@ -0,0 +1,11 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes;
+
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.Set;
+
+public interface HasComplement {
+	Set<IRI> getComplements();
+
+	void addComplement(IRI complement);
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/HasIntersections.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/HasIntersections.java
new file mode 100644
index 0000000..9640b8d
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/HasIntersections.java
@@ -0,0 +1,11 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes;
+
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.Set;
+
+public interface HasIntersections {
+	void addElementToIntersection(IRI iri);
+
+	Set<IRI> getElementOfIntersection();
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/HasUnions.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/HasUnions.java
new file mode 100644
index 0000000..14b0e2b
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/nodes/HasUnions.java
@@ -0,0 +1,11 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes;
+
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.Set;
+
+public interface HasUnions {
+	void addElementToUnion(IRI iri);
+
+	Set<IRI> getElementsOfUnion();
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/AbstractProperty.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/AbstractProperty.java
new file mode 100644
index 0000000..863b3a1
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/AbstractProperty.java
@@ -0,0 +1,138 @@
+/*
+ * AbstractProperty.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.SetWithoutNull;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.AbstractEntity;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlPropertyVisitor;
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.Set;
+
+/**
+ *
+ */
+public abstract class AbstractProperty extends AbstractEntity implements HasInverse, HasCardinality {
+	private Set<IRI> domains = new SetWithoutNull<>();
+	private Set<IRI> ranges = new SetWithoutNull<>();
+	private Set<IRI> referencedIris = new SetWithoutNull<>();
+
+	// Merged entities used only for json generation!
+	private IRI mergedDomain;
+	private IRI mergedRange;
+
+	public IRI getMergedDomain() {
+		return mergedDomain;
+	}
+
+	public void setMergedDomain(IRI mergedDomain) {
+		this.mergedDomain = mergedDomain;
+	}
+
+	public IRI getMergedRange() {
+		return mergedRange;
+	}
+
+	public void setMergedRange(IRI mergedRange) {
+		this.mergedRange = mergedRange;
+	}
+	private IRI inverse = null;
+	private int minCardinality;
+	private int maxCardinality;
+	private int exactCardinality;
+
+	protected AbstractProperty(IRI iri, String type) {
+		super(iri, type);
+	}
+
+	public Set<IRI> getDomains() {
+		return domains;
+	}
+
+	public Set<IRI> getRanges() {
+		return ranges;
+	}
+
+	public void addDomain(IRI iri) {
+		domains.add(iri);
+	}
+
+	public void addRange(IRI iri) {
+		ranges.add(iri);
+	}
+
+	public IRI getJsonDomain() {
+		return domains.size() == 1 ? domains.iterator().next() : mergedDomain;
+	}
+
+	public IRI getJsonRange() {
+		return ranges.size() == 1 ? ranges.iterator().next() : mergedRange;
+	}
+
+	@Override
+	public IRI getInverse() {
+		return inverse;
+	}
+
+	@Override
+	public void addInverse(IRI iri) {
+		this.inverse = iri;
+	}
+
+	@Override
+	public Integer getExactCardinality() {
+		return exactCardinality;
+	}
+
+	@Override
+	public void setExactCardinality(Integer value) {
+		exactCardinality = value;
+	}
+
+	@Override
+	public Integer getMaxCardinality() {
+		return maxCardinality;
+	}
+
+	@Override
+	public void setMaxCardinality(Integer value) {
+		maxCardinality = value;
+	}
+
+	@Override
+	public Integer getMinCardinality() {
+		return minCardinality;
+	}
+
+	@Override
+	public void setMinCardinality(Integer value) {
+		minCardinality = value;
+	}
+
+	
+	@Override
+	public void releaseMemory() {
+		if (domains!=null) domains.clear();
+		if (ranges!=null) ranges.clear();
+		if (referencedIris!=null) referencedIris.clear();
+		
+		
+		domains 		= null;
+		ranges			= null;
+		referencedIris	= null;
+		
+	}
+	
+	public abstract void accept(VowlPropertyVisitor visitor);
+
+	public Set<IRI> getReferencedIris() {
+		return referencedIris;
+	}
+
+	public void addReferencedProperty(IRI reference) {
+		referencedIris.add(reference);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/DatatypeValueReference.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/DatatypeValueReference.java
new file mode 100644
index 0000000..399ce79
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/DatatypeValueReference.java
@@ -0,0 +1,41 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.PropertyAllSomeValue;
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.PropertyType;
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.HasReference;
+import org.semanticweb.owlapi.model.IRI;
+
+public class DatatypeValueReference extends VowlDatatypeProperty implements HasReference {
+	private PropertyAllSomeValue value;
+	private IRI referenceIri;
+
+	public DatatypeValueReference(IRI iri, IRI referencedIri) {
+		super(iri);
+		this.referenceIri = referencedIri;
+	}
+
+	public PropertyAllSomeValue getValue() {
+		return value;
+	}
+
+	public void setValue(PropertyAllSomeValue value) {
+		this.value = value;
+
+		if (value == PropertyAllSomeValue.ALL) {
+			addAttribute(VowlAttribute.ALL_VALUES);
+			setType(PropertyType.ALL_VALUES);
+		} else {
+			addAttribute(VowlAttribute.SOME_VALUES);
+			setType(PropertyType.SOME_VALUES);
+		}
+	}
+
+	public IRI getReferenceIri() {
+		return referenceIri;
+	}
+
+	public void setReferenceIri(IRI referenceIri) {
+		this.referenceIri = referenceIri;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/HasCardinality.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/HasCardinality.java
new file mode 100644
index 0000000..5c87eef
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/HasCardinality.java
@@ -0,0 +1,14 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties;
+
+/**
+ * @author Eduard
+ */
+public interface HasCardinality {
+	Integer getMinCardinality();
+	Integer getMaxCardinality();
+	Integer getExactCardinality();
+
+	void setMinCardinality(Integer value);
+	void setMaxCardinality(Integer value);
+	void setExactCardinality(Integer value);
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/HasInverse.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/HasInverse.java
new file mode 100644
index 0000000..46eeff5
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/HasInverse.java
@@ -0,0 +1,13 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties;
+
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ * @author Eduard
+ */
+public interface HasInverse {
+	void addInverse(IRI iri);
+
+	// TODO could be multiple inverses?
+	IRI getInverse();
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/ObjectValueReference.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/ObjectValueReference.java
new file mode 100644
index 0000000..820d15f
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/ObjectValueReference.java
@@ -0,0 +1,41 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.PropertyAllSomeValue;
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.PropertyType;
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.HasReference;
+import org.semanticweb.owlapi.model.IRI;
+
+public class ObjectValueReference extends VowlObjectProperty implements HasReference {
+	private PropertyAllSomeValue value;
+	private IRI referenceIri;
+
+	public ObjectValueReference(IRI iri, IRI referencedIri) {
+		super(iri);
+		this.referenceIri = referencedIri;
+	}
+
+	public PropertyAllSomeValue getValue() {
+		return value;
+	}
+
+	public void setValue(PropertyAllSomeValue value) {
+		this.value = value;
+
+		if (value == PropertyAllSomeValue.ALL) {
+			addAttribute(VowlAttribute.ALL_VALUES);
+			setType(PropertyType.ALL_VALUES);
+		} else {
+			addAttribute(VowlAttribute.SOME_VALUES);
+			setType(PropertyType.SOME_VALUES);
+		}
+	}
+
+	public IRI getReferenceIri() {
+		return referenceIri;
+	}
+
+	public void setReferenceIri(IRI referenceIri) {
+		this.referenceIri = referenceIri;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/TypeOfProperty.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/TypeOfProperty.java
new file mode 100644
index 0000000..c096ebb
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/TypeOfProperty.java
@@ -0,0 +1,27 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.PropertyType;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation.Annotation;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlPropertyVisitor;
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ * Special property in VOWL which is colored in purple color.
+ */
+public class TypeOfProperty extends AbstractProperty {
+	public TypeOfProperty(IRI iri) {
+		super(iri, PropertyType.TYPEOF);
+		getAnnotations().addLabel(new Annotation("label", "is a"));
+	}
+
+	@Override
+	public void accept(VowlElementVisitor visitor) {
+		visitor.visit(this);
+	}
+
+	@Override
+	public void accept(VowlPropertyVisitor visitor) {
+		visitor.visit(this);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/VowlDatatypeProperty.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/VowlDatatypeProperty.java
new file mode 100644
index 0000000..4b9eeb0
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/VowlDatatypeProperty.java
@@ -0,0 +1,32 @@
+/*
+ * VowlDatatypeProperty.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.PropertyType;
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlPropertyVisitor;
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ *
+ */
+public class VowlDatatypeProperty extends AbstractProperty {
+	public VowlDatatypeProperty(IRI iri) {
+		super(iri, PropertyType.DATATYPE);
+		addAttribute(VowlAttribute.DATATYPE);
+	}
+
+	@Override
+	public void accept(VowlElementVisitor visitor) {
+		visitor.visit(this);
+	}
+
+	@Override
+	public void accept(VowlPropertyVisitor visitor) {
+		visitor.visit(this);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/VowlObjectProperty.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/VowlObjectProperty.java
new file mode 100644
index 0000000..4654529
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/entities/properties/VowlObjectProperty.java
@@ -0,0 +1,32 @@
+/*
+ * VowlObjectProperty.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.PropertyType;
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlPropertyVisitor;
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ *
+ */
+public class VowlObjectProperty extends AbstractProperty {
+	public VowlObjectProperty(IRI iri) {
+		super(iri, PropertyType.OBJECT);
+		addAttribute(VowlAttribute.OBJECT);
+	}
+
+	@Override
+	public void accept(VowlElementVisitor visitor) {
+		visitor.visit(this);
+	}
+
+	@Override
+	public void accept(VowlPropertyVisitor visitor) {
+		visitor.visit(this);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/HasAnnotations.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/HasAnnotations.java
new file mode 100644
index 0000000..c85ae19
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/HasAnnotations.java
@@ -0,0 +1,15 @@
+/*
+ * HasIri.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation.Annotations;
+
+/**
+ *
+ */
+public interface HasAnnotations {
+	Annotations getAnnotations();
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/HasIri.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/HasIri.java
new file mode 100644
index 0000000..15071e7
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/HasIri.java
@@ -0,0 +1,15 @@
+/*
+ * HasIri.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model;
+
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ *
+ */
+public interface HasIri {
+	IRI getIri();
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/individuals/VowlIndividual.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/individuals/VowlIndividual.java
new file mode 100644
index 0000000..627ea91
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/individuals/VowlIndividual.java
@@ -0,0 +1,24 @@
+/*
+ * VowlIndividual.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.individuals;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.AbstractVowlObject;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ *
+ */
+public class VowlIndividual extends AbstractVowlObject {
+	public VowlIndividual(IRI iri) {
+		super(iri);
+	}
+
+	@Override
+	public void accept(VowlElementVisitor visitor) {
+		visitor.visit(this);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/ontology/OntologyInformation.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/ontology/OntologyInformation.java
new file mode 100644
index 0000000..f27ac60
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/ontology/OntologyInformation.java
@@ -0,0 +1,75 @@
+/*
+ * OntologyInformation.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.ontology;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation.Annotation;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation.Annotations;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+
+import java.util.ArrayList;
+import java.util.HashSet;
+import java.util.List;
+import java.util.Set;
+
+/**
+ *
+ */
+public class OntologyInformation {
+	private static final Logger logger = LogManager.getLogger(OntologyInformation.class);
+	protected Set<String> authors = new HashSet<>();
+	protected String iri;
+	protected String version;
+	protected List<Annotation> titles = new ArrayList<>();
+	protected Annotations annotations = new Annotations();
+
+	public OntologyInformation() {
+	}
+
+	public Logger getLogger() {
+		return logger;
+	}
+	
+	public List<Annotation> getTitles() {
+		return titles;
+	}
+
+	public void setTitles(List<Annotation> titles) {
+		this.titles = titles;
+	}
+
+	public void addTitle(Annotation annotation) {
+		titles.add(annotation);
+	}
+
+	public Annotations getAnnotations() {
+		return annotations;
+	}
+
+	public Set<String> getAuthors() {
+		return authors;
+	}
+
+	public void addAuthor(String author) {
+		authors.add(author);
+	}
+
+	public String getIri() {
+		return iri;
+	}
+
+	public void setIri(String iri) {
+		this.iri = iri;
+	}
+
+	public String getVersion() {
+		return version;
+	}
+
+	public void setVersion(String version) {
+		this.version = version;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/ontology/OntologyMetric.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/ontology/OntologyMetric.java
new file mode 100644
index 0000000..4fda109
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/ontology/OntologyMetric.java
@@ -0,0 +1,85 @@
+/*
+ * OntologyMetric.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.ontology;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import org.semanticweb.owlapi.metrics.ReferencedClassCount;
+import org.semanticweb.owlapi.metrics.ReferencedDataPropertyCount;
+import org.semanticweb.owlapi.metrics.ReferencedIndividualCount;
+import org.semanticweb.owlapi.metrics.ReferencedObjectPropertyCount;
+import org.semanticweb.owlapi.model.OWLOntology;
+
+/**
+ * Holds the metrics of the desired ontology.
+ */
+public class OntologyMetric {
+    private OWLOntology ontology;
+    private int classes;
+    private int objectProperties;
+    private int datatypeProperties;
+    private int individuals;
+    private int nodes;
+    private int edges;
+
+    public OntologyMetric(OWLOntology ontology) {
+        this.ontology = ontology;
+        calculateOntologyMetrics();
+    }
+
+    private void calculateOntologyMetrics() {
+        classes = new ReferencedClassCount(ontology).getValue();
+        objectProperties = new ReferencedObjectPropertyCount(ontology).getValue();
+        datatypeProperties = new ReferencedDataPropertyCount(ontology).getValue();
+        individuals = new ReferencedIndividualCount(ontology).getValue();
+    }
+
+    public void calculate(VowlData vowlData) {
+    	System.out.println("this is never called and thats good so, -> Metrics calculated on the fly by visualization ");
+        int classCount = vowlData.getClassMap().size();
+        int datatypeCount = vowlData.getDatatypeMap().size();
+        int objectPropertyCounts = vowlData.getObjectPropertyMap().size();
+        int dataPropertyCount = vowlData.getDatatypePropertyMap().size();
+
+        nodes = classCount + datatypeCount;
+        edges = objectPropertyCounts + dataPropertyCount;
+    }
+
+    public int getClasses() {
+        return classes;
+    }
+
+    public int getObjectProperties() {
+        return objectProperties;
+    }
+
+    public int getDatatypeProperties() {
+        return datatypeProperties;
+    }
+
+    public int getIndividuals() {
+        return individuals;
+    }
+
+    public int getNodes() {
+        return nodes;
+    }
+
+    public int getEdges() {
+        return edges;
+    }
+
+    @Override
+    public String toString() {
+        return "OntologyMetric{" +
+                "classes=" + classes +
+                ", objectProperties=" + objectProperties +
+                ", datatypeProperties=" + datatypeProperties +
+                ", individuals=" + individuals +
+                ", nodes=" + nodes +
+                ", edges=" + edges +
+                '}';
+    }
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/SetWithoutNull.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/SetWithoutNull.java
new file mode 100644
index 0000000..39f48cd
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/SetWithoutNull.java
@@ -0,0 +1,20 @@
+/*
+ * SetWithoutNull.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model;
+
+import java.util.HashSet;
+
+/**
+ *
+ */
+@SuppressWarnings("serial")
+public class SetWithoutNull<E> extends HashSet<E> {
+	@Override
+	public boolean add(E e) {
+		return e != null && super.add(e);
+
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/visitor/VowlClassVisitor.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/visitor/VowlClassVisitor.java
new file mode 100644
index 0000000..69c1ae9
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/visitor/VowlClassVisitor.java
@@ -0,0 +1,24 @@
+/*
+ * VowlClassVisitor.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlThing;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlDatatype;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlLiteral;
+
+/**
+ *
+ */
+public interface VowlClassVisitor {
+	void visit(VowlThing vowlThing);
+
+	void visit(VowlClass vowlClass);
+
+	void visit(VowlLiteral vowlLiteral);
+
+	void visit(VowlDatatype vowlDatatype);
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/visitor/VowlElementVisitor.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/visitor/VowlElementVisitor.java
new file mode 100644
index 0000000..fe2a397
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/visitor/VowlElementVisitor.java
@@ -0,0 +1,15 @@
+/*
+ * VowlElementVisitor.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.individuals.VowlIndividual;
+
+/**
+ *
+ */
+public interface VowlElementVisitor extends VowlClassVisitor, VowlPropertyVisitor {
+	void visit(VowlIndividual vowlIndividual);
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/visitor/VowlPropertyVisitor.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/visitor/VowlPropertyVisitor.java
new file mode 100644
index 0000000..d392574
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/visitor/VowlPropertyVisitor.java
@@ -0,0 +1,21 @@
+/*
+ * VowlPropertyVisitor.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.TypeOfProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlDatatypeProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlObjectProperty;
+
+/**
+ *
+ */
+public interface VowlPropertyVisitor {
+	void visit(VowlObjectProperty vowlObjectProperty);
+
+	void visit(VowlDatatypeProperty vowlDatatypeProperty);
+
+	void visit(TypeOfProperty typeOfProperty);
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/VowlVisitable.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/VowlVisitable.java
new file mode 100644
index 0000000..6d24062
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/model/VowlVisitable.java
@@ -0,0 +1,16 @@
+/*
+ * VowlVisitable.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.model;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+
+/**
+ *
+ */
+public interface VowlVisitable {
+
+	void accept(VowlElementVisitor visitor);
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/Owl2Vowl.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/Owl2Vowl.java
new file mode 100644
index 0000000..a25de6e
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/Owl2Vowl.java
@@ -0,0 +1,92 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.converter.Converter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.converter.IRIConverter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.converter.InputStreamConverter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.converter.OntologyConverter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.export.types.BackupExporter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.export.types.FileExporter;
+import org.semanticweb.owlapi.model.IRI;
+import org.semanticweb.owlapi.model.OWLOntology;
+
+import java.io.ByteArrayInputStream;
+import java.io.File;
+import java.io.InputStream;
+import java.util.Collection;
+
+/**
+ * Global class for easy to use of this library to include in other projects.
+ */
+public class Owl2Vowl {
+	protected Converter converter;
+
+	public Owl2Vowl(OWLOntology ontology) {
+		converter = new OntologyConverter(ontology);
+		converter.clearLoadingMsg();
+	}
+
+	public Owl2Vowl(OWLOntology ontology, String ontologyIri) {
+		converter = new OntologyConverter(ontology, ontologyIri);
+	}
+
+	public Owl2Vowl(IRI ontologyIri) {
+		converter = new IRIConverter(ontologyIri);
+		converter.clearLoadingMsg();
+	}
+
+	public Owl2Vowl(IRI ontologyIri, Collection<IRI> dependencies) {
+		converter = new IRIConverter(ontologyIri, dependencies);
+		converter.clearLoadingMsg();
+	}
+
+	public Owl2Vowl(InputStream ontology) {
+		converter = new InputStreamConverter(ontology);
+		converter.clearLoadingMsg();
+	}
+	public Owl2Vowl(String ontologyAsString) {
+		InputStream ontologyStream = new ByteArrayInputStream(ontologyAsString.getBytes());
+		converter = new InputStreamConverter(ontologyStream);
+		converter.clearLoadingMsg();
+	}
+
+	public Owl2Vowl(InputStream ontology, Collection<InputStream> dependencies) {
+		converter = new InputStreamConverter(ontology, dependencies);
+		converter.clearLoadingMsg();
+	}
+
+	public String getLoadingMsg() {
+		return converter.getLoadingInfoString();
+	}
+	public void appendLoadingIndicatorPoint() {
+		if (converter.getCurrentlyLoadingFlag()) {
+			converter.addLoadingInfoToParentLine(".");
+		}
+	}
+
+	
+	/**
+	 * Converts the ontology to the webvowl compatible format and returns the usable json as string.
+	 *
+	 * @return The webvowl compatible json format.
+	 */
+	public String getJsonAsString() {
+		BackupExporter exporter = new BackupExporter();
+
+		try {
+			converter.export(exporter);
+		} catch (Exception e) {
+			throw new IllegalStateException(e);
+		}
+
+		return exporter.getConvertedJson();
+	}
+
+	public void writeToFile(File file) {
+		try {
+			converter.export(new FileExporter(file));
+		} catch (Exception e) {
+			throw new IllegalStateException(e);
+		}
+
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/helper/ComparisonHelper.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/helper/ComparisonHelper.java
new file mode 100644
index 0000000..9e2a178
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/helper/ComparisonHelper.java
@@ -0,0 +1,93 @@
+/*
+ * Tes.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.helper;
+
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.OWLEntity;
+import org.semanticweb.owlapi.model.OWLOntology;
+
+public class ComparisonHelper {
+	private static final Logger logger = LogManager.getLogger(ComparisonHelper.class);
+
+	public static boolean hasDifferentNameSpace(OWLEntity entity, OWLOntology ontology, String loadedIri) {
+		return hasDifferentNameSpace(entity.getIRI().toString(), ontology, loadedIri);
+	}
+
+	public static boolean hasDifferentNameSpace(String elementIri, String ontologyIri) {
+		// The trailing hash has no meaning and can be removed
+		String trimmedElementIri = removeTrailingHash(elementIri);
+		String trimmedOntologyIri = removeTrailingHash(ontologyIri);
+
+		if (trimmedElementIri.equals(trimmedOntologyIri)) {
+			return false;
+		}
+
+		if (trimmedElementIri.contains("#")) {
+			String elementNamespaceWithoutHashParameter = trimmedElementIri.split("#")[0];
+			if (elementNamespaceWithoutHashParameter.equals(trimmedOntologyIri)) {
+				return false;
+			}
+		}
+
+		if (trimmedElementIri.contains("/") && !trimmedElementIri.endsWith("/")) {
+			int lastSlashIndex = trimmedElementIri.lastIndexOf("/");
+			int indexAfterSlash = lastSlashIndex + 1;
+
+			String elementNamespaceWithoutLastPart = trimmedElementIri.substring(0, indexAfterSlash);
+
+			if (elementNamespaceWithoutLastPart.equals(trimmedOntologyIri)) {
+				return false;
+			}
+		}
+
+		return true;
+	}
+
+	public static boolean hasDifferentNameSpace(String elementNamespace, OWLOntology ontology, String loadedIri) {
+		if (elementNamespace == null) {
+			logger.info("Namespace check: Element has no namespace!");
+			return false;
+		}
+
+		String ontologyIri;
+
+		// Use ontology iri or the iri path to the ontology.
+		if (ontology.isAnonymous()) {
+			ontologyIri = loadedIri;
+		} else {
+			ontologyIri = ontology.getOntologyID().getOntologyIRI().get().toString();
+		}
+
+		return hasDifferentNameSpace(elementNamespace, ontologyIri);
+	}
+
+	public static String extractBaseIRI(String iri) {
+		if (iri.endsWith("#")) {
+			// e.g. http://test.de/working#
+			return iri.substring(0, iri.lastIndexOf("#"));
+		}
+
+		if (iri.contains("#")) {
+			// e.g. http://test.de/working#theworker
+			iri = iri.split("#")[0];
+			return iri;
+		}
+
+		if (iri.endsWith("/")) {
+			// e.g. http://test.de/working/theworker/
+			iri = iri.substring(0, iri.lastIndexOf("/"));
+		}
+
+		// e.g. http://test.de/working/theworker
+		return iri.substring(0, iri.lastIndexOf("/"));
+	}
+
+
+	private static String removeTrailingHash(String text) {
+		return text.replaceAll("#$", "");
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/helper/IriFormatText.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/helper/IriFormatText.java
new file mode 100644
index 0000000..7a0c59b
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/helper/IriFormatText.java
@@ -0,0 +1,51 @@
+/*
+ * Dummy.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.helper;
+
+/**
+ * @author Eduard Marbach
+ * @version 1.0
+ */
+public class IriFormatText {
+
+	/**
+	 * Cuts the begin and end quotes out of the string. Used with owlapi label annotations.
+	 */
+	public static String cutQuote(String cuttingObject) {
+		if (cuttingObject == null) {
+			return null;
+		}
+
+		int firstIndex = cuttingObject.indexOf("\"");
+		int lastIndex = cuttingObject.lastIndexOf("\"");
+
+		if (firstIndex != -1 && firstIndex != lastIndex) {
+			return cuttingObject.substring(firstIndex + 1, lastIndex);
+		} else {
+			return cuttingObject;
+		}
+	}
+
+
+	public static String extractNameFromIRI(String iri) {
+		String name;
+
+		if (iri.contains("#")) {
+			// IRI contains a # -> take name behind #
+			name = iri.substring(iri.indexOf("#") + 1);
+		} else {
+			if (iri.contains("/")) {
+				// IRI contains / -> take name behind the last /
+				name = iri.substring(iri.lastIndexOf("/") + 1);
+			} else {
+				// No suitable name found.
+				name = "";
+			}
+		}
+
+		return name;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/owlapi/EntityCreationVisitor.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/owlapi/EntityCreationVisitor.java
new file mode 100644
index 0000000..8a1d8af
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/owlapi/EntityCreationVisitor.java
@@ -0,0 +1,89 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.owlapi;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.AbstractClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlDatatype;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlLiteral;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlDatatypeProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlObjectProperty;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.OWLClass;
+import org.semanticweb.owlapi.model.OWLDataProperty;
+import org.semanticweb.owlapi.model.OWLDatatype;
+import org.semanticweb.owlapi.model.OWLLiteral;
+import org.semanticweb.owlapi.model.OWLObjectProperty;
+import org.semanticweb.owlapi.model.OWLObjectVisitor;
+
+public class EntityCreationVisitor implements OWLObjectVisitor {
+
+	private VowlData vowlData;
+	private Logger logger = LogManager.getLogger(EntityCreationVisitor.class);
+
+	public EntityCreationVisitor(VowlData vowlData) {
+		this.vowlData = vowlData;
+	}
+
+	@Override
+	public void visit(OWLClass ce) {
+		AbstractClass clazz;
+
+		if (ce.isOWLThing() || ce.isOWLNothing()) {
+			// General class do not create here
+			return;
+		} else if (!ce.isAnonymous()) {
+			clazz = new VowlClass(ce.getIRI());
+		} else {
+			// TODO Anonymous behaviour undefined
+			logger.info("Anonymous OWLClass " + ce);
+			return;
+		}
+
+		vowlData.addClass(clazz);
+	}
+
+	@Override
+	public void visit(OWLLiteral node) {
+	}
+
+	@Override
+	public void visit(OWLDatatype node) {
+		if (node.getIRI().toString().equals(VowlLiteral.LITERAL_IRI)) {
+			// Skip generic literal. Already included in the data as default.
+			return;
+		}
+
+		vowlData.addDatatype(new VowlDatatype(node.getIRI()));
+	}
+
+	@Override
+	public void visit(OWLObjectProperty property) {
+		VowlObjectProperty prop;
+
+		if (!property.isAnonymous()) {
+			prop = new VowlObjectProperty(property.getIRI());
+		} else {
+			// TODO anonymous behaviour
+			logger.info("Anonymous OWLObjectProperty " + property);
+			return;
+		}
+
+		vowlData.addObjectProperty(prop);
+	}
+
+	@Override
+	public void visit(OWLDataProperty property) {
+		VowlDatatypeProperty prop;
+
+		if (!property.isAnonymous()) {
+			prop = new VowlDatatypeProperty(property.getIRI());
+		} else {
+			// TODO anonymous behaviour
+			logger.info("Anonymous OWLDataProperty " + property);
+			return;
+		}
+
+		vowlData.addDatatypeProperty(prop);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/owlapi/IndividualsVisitor.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/owlapi/IndividualsVisitor.java
new file mode 100644
index 0000000..66270dd
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/owlapi/IndividualsVisitor.java
@@ -0,0 +1,60 @@
+/*
+ * IndividualsVisitor.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.owlapi;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.individuals.VowlIndividual;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.AnnotationParser;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.*;
+
+import javax.annotation.Nonnull;
+
+/**
+ *
+ */
+public class IndividualsVisitor implements OWLIndividualVisitor {
+
+	private final VowlData vowlData;
+	protected IRI baseIRI;
+	private OWLOntologyManager manager;
+	private Logger logger = LogManager.getLogger(IndividualsVisitor.class);
+
+	public IndividualsVisitor(VowlData vowlData, OWLIndividual owlIndividual, OWLClass baseClass, OWLOntologyManager manager) {
+		this.vowlData = vowlData;
+		this.manager = manager;
+		this.baseIRI = baseClass.getIRI();
+	}
+
+	public IndividualsVisitor(VowlData vowlData, OWLOntologyManager manager, IRI baseIRI) {
+		this.vowlData = vowlData;
+		this.manager = manager;
+		this.baseIRI = baseIRI;
+	}
+
+	@Override
+	public void visit(@Nonnull OWLNamedIndividual owlNamedIndividual) {
+		if (vowlData.getClassMap().containsKey(owlNamedIndividual.getIRI())) {
+			vowlData.getClassForIri(baseIRI).addInstance(owlNamedIndividual.getIRI());
+			vowlData.getGenerator().generateTypeOf(baseIRI, owlNamedIndividual.getIRI());
+		} else {
+			vowlData.getClassForIri(baseIRI).addIndividual(createIndividual(owlNamedIndividual));
+		}
+	}
+
+	private IRI createIndividual(OWLNamedIndividual owlNamedIndividual) {
+		VowlIndividual individual = vowlData.getGenerator().generateIndividual(owlNamedIndividual.getIRI());
+		new AnnotationParser(vowlData, manager).parse(individual);
+
+		return individual.getIri();
+	}
+
+	@Override
+	public void visit(@Nonnull OWLAnonymousIndividual owlAnonymousIndividual) {
+		logger.info("Anonymous individual: " + owlAnonymousIndividual);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/AnnotationParser.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/AnnotationParser.java
new file mode 100644
index 0000000..5f14be8
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/AnnotationParser.java
@@ -0,0 +1,38 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.Vowl_Lang;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.AbstractVowlObject;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation.Annotation;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.helper.IriFormatText;
+import org.semanticweb.owlapi.model.OWLOntologyManager;
+
+/**
+ * @author Eduard
+ */
+public class AnnotationParser {
+	private final VowlData vowlData;
+	private final OWLOntologyManager manager;
+
+	public AnnotationParser(VowlData vowlData, OWLOntologyManager manager) {
+		this.vowlData = vowlData;
+		this.manager = manager;
+	}
+
+	public void parse() {
+		vowlData.getEntityMap().values().stream().forEach(this::parseForEntity);
+	}
+
+	public void parse(AbstractVowlObject vowlObject) {
+		parseForEntity(vowlObject);
+	}
+
+	protected void parseForEntity(AbstractVowlObject entity) {
+		entity.accept(new AnnotationVisitor(vowlData, manager));
+
+		String iriLabel = IriFormatText.cutQuote(IriFormatText.extractNameFromIRI(entity.getIri().toString()));
+		Annotation iriAnnotationLabel = new Annotation("label", iriLabel);
+		iriAnnotationLabel.setLanguage(Vowl_Lang.LANG_DEFAULT);
+		entity.getAnnotations().addLabel(iriAnnotationLabel);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/AnnotationVisitor.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/AnnotationVisitor.java
new file mode 100644
index 0000000..a2831e4
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/AnnotationVisitor.java
@@ -0,0 +1,139 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.Vowl_Lang;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.AbstractEntity;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation.Annotation;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlThing;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlDatatype;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlLiteral;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.TypeOfProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlDatatypeProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlObjectProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.individuals.VowlIndividual;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+import org.semanticweb.owlapi.model.*;
+import org.semanticweb.owlapi.search.EntitySearcher;
+
+import java.util.HashSet;
+import java.util.Set;
+import java.util.stream.Collectors;
+import java.util.stream.Stream;
+
+/**
+ * @author Eduard
+ */
+public class AnnotationVisitor implements VowlElementVisitor {
+	private final VowlData vowlData;
+	private final OWLOntologyManager manager;
+
+	public AnnotationVisitor(VowlData vowlData, OWLOntologyManager manager) {
+		this.vowlData = vowlData;
+		this.manager = manager;
+	}
+
+	public Set<Annotation> getOntologyAnnotations(OWLOntology ontology) {
+		return ontology.annotations().map(this::getVowlAnnotation).collect(Collectors.toSet());
+	}
+
+	protected Set<Annotation> getAnnotations(OWLEntity entity) {
+		Set<Annotation> allAnnotations = new HashSet<>();
+
+		for (OWLOntology ontology : manager.ontologies().collect(Collectors.toSet())) {
+			Set<Annotation> currentAnnotations = mapOwlAnnotationsToVowlAnnotations(EntitySearcher.getAnnotations(entity, ontology));
+			allAnnotations.addAll(currentAnnotations);
+		}
+
+		return allAnnotations;
+	}
+
+	protected Set<Annotation> mapOwlAnnotationsToVowlAnnotations(Stream<OWLAnnotation> annotations) {
+		return annotations.map(this::getVowlAnnotation).collect(Collectors.toSet());
+	}
+
+	protected Annotation getVowlAnnotation(OWLAnnotation annotation) {
+		Annotation anno;
+
+		if (annotation.getValue() instanceof OWLLiteral) {
+			OWLLiteral val = (OWLLiteral) annotation.getValue();
+			String language;
+
+			if (val.hasLang()) {
+				language = val.getLang();
+				vowlData.addLanguage(val.getLang());
+			} else {
+				language = Vowl_Lang.LANG_UNSET;
+				vowlData.addLanguage(Vowl_Lang.LANG_UNSET);
+			}
+
+			anno = new Annotation(annotation.getProperty().toString(), val.getLiteral());
+			anno.setType(Annotation.TYPE_LABEL);
+			anno.setLanguage(language);
+		} else if (annotation.getValue() instanceof IRI) {
+			anno = new Annotation(annotation.getProperty().toString(), annotation.getValue().toString());
+			anno.setType(Annotation.TYPE_IRI);
+		} else {
+			anno = new Annotation(annotation.getProperty().toString(), annotation.getValue().toString());
+			anno.setType(Annotation.TYPE_LABEL);
+		}
+
+		return anno;
+	}
+
+	protected void checkDeprecation(AbstractEntity vowlEntity) {
+		if (vowlEntity.getAnnotations().isDeprecated()) {
+			vowlEntity.addAttribute(VowlAttribute.DEPRECATED);
+		}
+	}
+
+	@Override
+	public void visit(VowlThing vowlThing) {
+		// Generic class has not annotations
+	}
+
+	@Override
+	public void visit(VowlClass vowlClass) {
+		OWLClass owlClass = manager.getOWLDataFactory().getOWLClass(vowlClass.getIri());
+		vowlClass.getAnnotations().fillAnnotations(getAnnotations(owlClass));
+		checkDeprecation(vowlClass);
+	}
+
+	@Override
+	public void visit(VowlLiteral vowlLiteral) {
+		// Generic class has no annotations
+	}
+
+	@Override
+	public void visit(VowlDatatype vowlDatatype) {
+		OWLDatatype owlDatatype = manager.getOWLDataFactory().getOWLDatatype(vowlDatatype.getIri());
+		vowlDatatype.getAnnotations().fillAnnotations(getAnnotations(owlDatatype));
+		checkDeprecation(vowlDatatype);
+	}
+
+	@Override
+	public void visit(VowlObjectProperty vowlObjectProperty) {
+		OWLObjectProperty owlCowlObjectPropertyass = manager.getOWLDataFactory().getOWLObjectProperty(vowlObjectProperty.getIri());
+		vowlObjectProperty.getAnnotations().fillAnnotations(getAnnotations(owlCowlObjectPropertyass));
+		checkDeprecation(vowlObjectProperty);
+	}
+
+	@Override
+	public void visit(VowlDatatypeProperty vowlDatatypeProperty) {
+		OWLDataProperty owlDataProperty = manager.getOWLDataFactory().getOWLDataProperty(vowlDatatypeProperty.getIri());
+		vowlDatatypeProperty.getAnnotations().fillAnnotations(getAnnotations(owlDataProperty));
+		checkDeprecation(vowlDatatypeProperty);
+	}
+
+	@Override
+	public void visit(VowlIndividual vowlIndividual) {
+		OWLNamedIndividual owlNamedIndividual = manager.getOWLDataFactory().getOWLNamedIndividual(vowlIndividual.getIri());
+		vowlIndividual.getAnnotations().fillAnnotations(getAnnotations(owlNamedIndividual));
+	}
+
+	@Override
+	public void visit(TypeOfProperty typeOfProperty) {
+		// Nothing needed
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/BaseIriCollector.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/BaseIriCollector.java
new file mode 100644
index 0000000..272d9cb
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/BaseIriCollector.java
@@ -0,0 +1,23 @@
+/*
+ * BaseIriCollector.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+
+/**
+ * Collects all base iris from all all available entities in vowl data and stores it directly in it.
+ */
+public class BaseIriCollector {
+	private final VowlData vowlData;
+
+	public BaseIriCollector(VowlData vowlData) {
+		this.vowlData = vowlData;
+	}
+
+	public void execute() {
+		vowlData.getEntityMap().values().stream().forEach(entity -> vowlData.addBaseIri(entity.getBaseIri()));
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/classes/GenericClassAxiomVisitor.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/classes/GenericClassAxiomVisitor.java
new file mode 100644
index 0000000..0470084
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/classes/GenericClassAxiomVisitor.java
@@ -0,0 +1,42 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.classes;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.OWLObjectVisitor;
+import org.semanticweb.owlapi.model.OWLSubClassOfAxiom;
+
+/**
+ * Class which handles the correct parsing for generic axioms which are not directly related to any class.
+ * The referencing classes have to be retrieved here.
+ */
+public class GenericClassAxiomVisitor implements OWLObjectVisitor {
+
+	private VowlData vowlData;
+	private Logger logger = LogManager.getLogger(GenericClassAxiomVisitor.class);
+
+	public GenericClassAxiomVisitor(VowlData vowlData) {
+		this.vowlData = vowlData;
+	}
+
+	@Override
+	public void doDefault(Object object) {
+		logger.info("Unsupported generic class axiom: " + object);
+	}
+
+	@Override
+	public void visit(OWLSubClassOfAxiom axiom) {
+		if (!axiom.isGCI()) {
+		    // TODO
+			logger.info("Generic axiom subclass is not anonym -> currently not supported: " + axiom);
+			return;
+		}
+
+		if (axiom.getSuperClass().isAnonymous()) {
+			// TODO retrieve concrete superclass to use it in the subclass
+			return;
+		}
+
+		axiom.getSubClass().accept(new OwlClassAxiomVisitor(vowlData, axiom.getSuperClass().asOWLClass()));
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/classes/HasKeyAxiomParser.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/classes/HasKeyAxiomParser.java
new file mode 100644
index 0000000..438f308
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/classes/HasKeyAxiomParser.java
@@ -0,0 +1,46 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.classes;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.AbstractClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlDatatypeProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlObjectProperty;
+
+import java.util.stream.Collectors;
+
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.*;
+
+public class HasKeyAxiomParser {
+
+	private static final Logger logger = LogManager.getLogger(HasKeyAxiomParser.class);
+
+	public static void parse(OWLOntology ontology, OWLClass owlClass, VowlData vowlData) {
+		for (OWLHasKeyAxiom owlHasKeyAxiom : ontology.hasKeyAxioms(owlClass).collect(Collectors.toSet())) {
+			AbstractClass hasKeysClass = vowlData.getClassForIri(owlClass.getIRI());
+
+			for (OWLObjectPropertyExpression propertyExpression : owlHasKeyAxiom.objectPropertyExpressions().collect(Collectors.toSet())) {
+				if (propertyExpression.isAnonymous()) {
+					logger.info("Anonymous has key object property expression " + propertyExpression);
+					continue;
+				}
+
+				VowlObjectProperty property = vowlData.getObjectPropertyForIri(propertyExpression.asOWLObjectProperty().getIRI());
+				property.addAttribute(VowlAttribute.KEY);
+				hasKeysClass.addKey(property.getIri());
+			}
+
+			for (OWLDataPropertyExpression propertyExpression : owlHasKeyAxiom.dataPropertyExpressions().collect(Collectors.toSet())) {
+				if (propertyExpression.isAnonymous()) {
+					logger.info("Anonymous has key data property expression " + propertyExpression);
+					continue;
+				}
+
+				VowlDatatypeProperty property = vowlData.getDatatypePropertyForIri(propertyExpression.asOWLDataProperty().getIRI());
+				property.addAttribute(VowlAttribute.KEY);
+				hasKeysClass.addKey(property.getIri());
+			}
+		}
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/classes/OwlClassAxiomVisitor.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/classes/OwlClassAxiomVisitor.java
new file mode 100644
index 0000000..b8e816c
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/classes/OwlClassAxiomVisitor.java
@@ -0,0 +1,335 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.classes;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.PropertyAllSomeValue;
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.AbstractNode;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.AbstractClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.AbstractProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.DatatypeValueReference;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.ObjectValueReference;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.owlapi.IndividualsVisitor;
+
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.*;
+import org.semanticweb.owlapi.model.OWLDisjointClassesAxiom;
+//OWLDisjointClassesAxiomImpl;
+
+import java.util.Collection;
+import java.util.Set;
+import java.util.stream.Collectors;
+
+public class OwlClassAxiomVisitor implements OWLObjectVisitor {
+
+	private VowlData vowlData;
+	private OWLClass owlClass;
+	private Logger logger = LogManager.getLogger(OwlClassAxiomVisitor.class);
+
+	
+	
+	public void Destrucotre() {
+		this.vowlData = null;
+		this.owlClass = null;
+		
+	}
+	
+	public OwlClassAxiomVisitor(VowlData vowlData, OWLClass owlClass) {
+		this.vowlData = vowlData;
+		this.owlClass = owlClass;
+	}
+
+	@Override
+	public void doDefault(Object object) {
+		logger.info("Unsupported axiom: " + object);
+	}
+
+	@Override
+	public void visit(OWLEquivalentClassesAxiom axiom) {
+		// tested for memory release[x]
+		if (axiom.namedClasses().collect(Collectors.toSet()).size() != 1) {
+			createEquivalentClass(axiom); 
+			return;
+		}
+	
+		OWLClass referencedClass = axiom.namedClasses().collect(Collectors.toSet()).iterator().next();
+		Set<OWLClassExpression> expressionsWithoutRefClass = axiom.getClassExpressionsMinus(referencedClass);
+		for (OWLClassExpression anonymExpressions : expressionsWithoutRefClass) {
+			anonymExpressions.accept(new OwlClassAxiomVisitor(vowlData, referencedClass));
+		}
+	}
+	private void createEquivalentClass(OWLEquivalentClassesAxiom axiom) {
+		
+		AbstractClass topClass = vowlData.getClassForIri(owlClass.getIRI());
+		for (OWLClassExpression owlClassExpression : axiom.getClassExpressionsMinus(owlClass)) {
+			topClass.addEquivalentElement(owlClassExpression.asOWLClass().getIRI());
+		}
+		topClass.addAttribute(VowlAttribute.EQUIVALENT);
+		topClass=null;
+	}
+
+	@Override
+	public void visit(OWLSubClassOfAxiom axiom) {
+		// tested for memory release[x]
+		if (axiom.isGCI()) {
+			// TODO anonymous subclass behavior
+			logger.info("Anonym subclass: " + axiom);
+			return;
+		}
+		OWLClass subClass = axiom.getSubClass().asOWLClass();
+		AbstractClass vowlSubclass = vowlData.getClassForIri(subClass.getIRI());
+		if (axiom.getSuperClass().isAnonymous()) {
+			axiom.getSuperClass().accept(new OwlClassAxiomVisitor(vowlData, owlClass));
+		} else {
+			OWLClass superClass = axiom.getSuperClass().asOWLClass();
+			AbstractClass vowlSuperClass = vowlData.getClassForIri(superClass.getIRI());
+			vowlSubclass.addSuperEntity(vowlSuperClass.getIri());
+			vowlSuperClass.addSubEntity(vowlSubclass.getIri());
+			superClass     = null;
+			vowlSuperClass = null; 
+		}
+		subClass=null;
+		vowlSubclass=null;
+	}
+
+	@Override
+	public void visit(OWLDisjointClassesAxiom axiom) {
+		// tested for memory release[x]
+		Collection<OWLDisjointClassesAxiom> odca= axiom.asPairwiseAxioms();
+		for (OWLDisjointClassesAxiom pairwiseAxiom : odca) {
+			IRI[] domainRange = new IRI[2];
+			int index = 0;
+			
+			for (OWLClassExpression aClassEX : pairwiseAxiom.classExpressions().collect(Collectors.toSet())){
+				OWLClass cls=aClassEX.asOWLClass();
+				domainRange[index++] = cls.getIRI();
+			}
+			if (!vowlData.getSearcher().containsDisjoint(domainRange[0], domainRange[1])) {
+				vowlData.getGenerator().generateDisjointProperty(domainRange[0], domainRange[1]);
+			}
+			domainRange=null;
+		}
+	}
+
+	@Override
+	public void visit(OWLDisjointUnionAxiom axiom) {
+		if (axiom.getOWLClass().isAnonymous()) {
+			logger.info("Disjoint Union base is anonym.");
+			return;
+		}
+		
+		AbstractClass baseClass = vowlData.getClassForIri(axiom.getOWLClass().getIRI());
+		baseClass.addAttribute(VowlAttribute.DISJOINTUNION);
+		for (OWLClassExpression disjointClassEx : axiom.classExpressions().collect(Collectors.toSet())){
+			OWLClass cls=disjointClassEx.asOWLClass();
+			baseClass.addDisjointUnion(cls.getIRI());
+		}
+		//axiom.classesInSignature() << creates memory leak
+//		for (OWLClass disjointClass : axiom.getOWLDisjointClassesAxiom().classesInSignature().collect(Collectors.toSet())) {
+//			baseClass.addDisjointUnion(disjointClass.getIRI());
+//		}
+		baseClass=null;
+	}
+
+
+	@Override
+	public void visit(OWLObjectMinCardinality ce) {
+		if (!ce.getFiller().isOWLThing() && !ce.getFiller().isOWLNothing()) {
+			// TODO specification of a filler class
+			logger.info("Specification of cardinalities not supported yet: " + ce);
+			return;
+		}
+
+		OWLObjectProperty property = ce.getProperty().getNamedProperty();
+		AbstractProperty vowlProperty = vowlData.getPropertyForIri(property.getIRI());
+		vowlProperty.setMinCardinality(ce.getCardinality());
+		vowlProperty=null;
+		property=null;
+	}
+
+	@Override
+	public void visit(OWLDataExactCardinality ce) {
+		OWLDataPropertyExpression property = ce.getProperty();
+		if (property.isAnonymous()) {
+			logger.info("Anonymous dataproperty for exact cardinality.");
+			return;
+		}
+		AbstractProperty vowlProperty = vowlData.getPropertyForIri(property.asOWLDataProperty().getIRI());
+		vowlProperty.setExactCardinality(ce.getCardinality());
+		
+		property=null;
+		vowlProperty=null;
+	}
+
+	@Override
+	public void visit(OWLDataMaxCardinality ce) {
+		OWLDataPropertyExpression property = ce.getProperty();
+		if (property.isAnonymous()) {
+			logger.info("Anonymous dataproperty for max cardinality.");
+			return;
+		}
+		AbstractProperty vowlProperty = vowlData.getPropertyForIri(property.asOWLDataProperty().getIRI());
+		vowlProperty.setMaxCardinality(ce.getCardinality());
+		
+		property=null;
+		vowlProperty=null;
+	
+	}
+
+	@Override
+	public void visit(OWLDataMinCardinality ce) {
+		OWLDataPropertyExpression property = ce.getProperty();
+
+		if (property.isAnonymous()) {
+			logger.info("Anonymous dataproperty for min cardinality.");
+			return;
+		}
+		AbstractProperty vowlProperty = vowlData.getPropertyForIri(property.asOWLDataProperty().getIRI());
+		vowlProperty.setMinCardinality(ce.getCardinality());
+		
+		property=null;
+		vowlProperty=null;
+	}
+
+	@Override
+	public void visit(OWLDataAllValuesFrom ce) {
+		processDataValueRestriction(ce, PropertyAllSomeValue.ALL);
+	}
+
+	@Override
+	public void visit(OWLDataSomeValuesFrom ce) {
+		processDataValueRestriction(ce, PropertyAllSomeValue.SOME);
+	}
+
+	private void processDataValueRestriction(OWLQuantifiedDataRestriction ce, PropertyAllSomeValue value) {
+		if (!ce.getFiller().isOWLDatatype()) {
+			// TODO no datatype
+			logger.info("DataValue range is not a datatype: " + ce);
+			return;
+		}
+
+		OWLDatatype range = ce.getFiller().asOWLDatatype();
+		OWLDataProperty restrictedProperty = ce.getProperty().asOWLDataProperty();
+		DatatypeValueReference valueReference = vowlData.getGenerator().generateDatatypeValueReference(restrictedProperty.getIRI(), value);
+		valueReference.addRange(vowlData.getGenerator().generateDatatypeReference(range.getIRI()).getIri());
+		valueReference.addDomain(owlClass.getIRI());
+		
+		range=null;
+		restrictedProperty =null;
+		valueReference=null;
+	}
+
+	@Override
+	public void visit(OWLDataHasValue ce) {
+		logger.info(ce + " not supported yet.");
+	}
+
+	@Override
+	public void visit(OWLObjectAllValuesFrom ce) {
+		processObjectValueRestriction(ce, PropertyAllSomeValue.ALL);
+	}
+
+	@Override
+	public void visit(OWLObjectSomeValuesFrom ce) {
+		processObjectValueRestriction(ce, PropertyAllSomeValue.SOME);
+	}
+
+	private void processObjectValueRestriction(OWLQuantifiedObjectRestriction ce, PropertyAllSomeValue value) {
+		if (ce.getFiller().isAnonymous()) {
+			// TODO anonymous
+			logger.info("ObjectAllValuesFrom range class is anonymous: " + ce);
+			return;
+		}
+		OWLClass rangeClass = ce.getFiller().asOWLClass();
+		OWLObjectProperty restrictedProperty = ce.getProperty().getNamedProperty();
+		ObjectValueReference objectValueReference = vowlData.getGenerator().generateObjectValueReference(restrictedProperty.getIRI(), value);
+		objectValueReference.addRange(rangeClass.getIRI());
+		objectValueReference.addDomain(owlClass.getIRI());
+		
+		rangeClass=null;
+		restrictedProperty=null;
+		objectValueReference=null;
+		
+	}
+
+	@Override
+	public void visit(OWLObjectMaxCardinality ce) {
+		if (!ce.getFiller().isOWLThing() && !ce.getFiller().isOWLNothing()) {
+			// TODO specification of a filler class
+			logger.info("Specification of cardinalities not supported yet: " + ce);
+			return;
+		}
+		OWLObjectProperty property = ce.getProperty().getNamedProperty();
+		AbstractProperty vowlProperty = vowlData.getPropertyForIri(property.getIRI());
+		vowlProperty.setMaxCardinality(ce.getCardinality());
+		property=null;
+		vowlProperty=null;
+	}
+
+	@Override
+	public void visit(OWLObjectExactCardinality ce) {
+		if (!ce.getFiller().isOWLThing() && !ce.getFiller().isOWLNothing()) {
+			// TODO specification of a filler class
+			logger.info("Specification of cardinalities not supported yet: " + ce);
+			return;
+		}
+		OWLObjectProperty property = ce.getProperty().getNamedProperty();
+		AbstractProperty vowlProperty = vowlData.getPropertyForIri(property.getIRI());
+		vowlProperty.setExactCardinality(ce.getCardinality());
+		property=null;
+		vowlProperty=null;
+	}
+	@Override
+	public void visit(OWLObjectUnionOf ce) {
+		Set<OWLClassExpression> operands = ce.operands().collect(Collectors.toSet());
+		AbstractNode node = vowlData.getClassForIri(owlClass.getIRI());
+
+		for (OWLClassExpression operand : operands) {
+			if (!operand.isAnonymous()) {
+				node.addElementToUnion(operand.asOWLClass().getIRI());
+				node.addAttribute(VowlAttribute.UNION);
+			} else {
+				// TODO Anonymous undefined behavior
+				logger.info("Anonymous exists in unions.");
+			}
+		}
+		node=null;
+	}
+
+	@Override
+	public void visit(OWLObjectComplementOf ce) {
+		if (ce.getOperand().isAnonymous()) {
+			logger.info("Anonymous operand in object complement of.");
+			return;
+		}
+
+		IRI baseClassIri = ce.getOperand().asOWLClass().getIRI();
+		IRI complementIri = owlClass.getIRI();
+		// TODO where to set the complement?
+		//vowlData.getClassForIri(baseClassIri).addComplement(complementIri);
+		vowlData.getClassForIri(complementIri).addComplement(baseClassIri);
+		vowlData.getClassForIri(complementIri).addAttribute(VowlAttribute.COMPLEMENT);
+	}
+
+	@Override
+	public void visit(OWLObjectIntersectionOf ce) {
+		Set<OWLClassExpression> operands = ce.operands().collect(Collectors.toSet());
+		AbstractNode node = vowlData.getClassForIri(owlClass.getIRI());
+
+		for (OWLClassExpression operand : operands) {
+			if (!operand.isAnonymous()) {
+				node.addElementToIntersection(operand.asOWLClass().getIRI());
+				node.addAttribute(VowlAttribute.INTERSECTION);
+			} else {
+				// TODO Anonymous undefined behavior
+				logger.info("Anonymous exists in intersections. " + operand);
+			}
+		}
+	}
+
+	@Override
+	public void visit(OWLObjectOneOf ce) {
+		ce.individuals().collect(Collectors.toSet()).forEach(owlIndividual -> owlIndividual.accept(new IndividualsVisitor(vowlData, owlIndividual, owlClass, vowlData
+				.getOwlManager())));
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/EquivalentSorter.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/EquivalentSorter.java
new file mode 100644
index 0000000..f5d5e6e
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/EquivalentSorter.java
@@ -0,0 +1,109 @@
+/*
+ * EquivalentSorter.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.AbstractEntity;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlThing;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlDatatype;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlLiteral;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.TypeOfProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlDatatypeProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlObjectProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.individuals.VowlIndividual;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.helper.ComparisonHelper;
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.ArrayList;
+import java.util.Collections;
+import java.util.List;
+
+/**
+ *
+ */
+public class EquivalentSorter implements VowlElementVisitor {
+	private IRI baseIri;
+	private VowlData vowlData;
+
+	public EquivalentSorter(IRI baseIri, VowlData vowlData) {
+		this.baseIri = baseIri;
+		this.vowlData = vowlData;
+	}
+
+	protected List<IRI> getSortedEquivalents(AbstractEntity entity) {
+		List<IRI> iriToSort = new ArrayList<>(entity.getEquivalentElements());
+
+		if (ComparisonHelper.hasDifferentNameSpace(entity.getIri().toString(), baseIri.toString())) {
+			for (IRI iri : iriToSort) {
+				if (!ComparisonHelper.hasDifferentNameSpace(iri.toString(), baseIri.toString())) {
+					return Collections.emptyList();
+				}
+			}
+		}
+
+		for (IRI iri : iriToSort) {
+			if (vowlData.getEntityForIri(iri).getEquivalentElements().size() > iriToSort.size()) {
+				return Collections.emptyList();
+			}
+		}
+
+		Collections.sort(iriToSort, (o1, o2) -> {
+			if (o1.equals(baseIri)) {
+				return 1;
+			}
+
+			return 0;
+		});
+
+		return iriToSort;
+	}
+
+	@Override
+	public void visit(VowlThing vowlThing) {
+	}
+
+	@Override
+	public void visit(VowlClass vowlClass) {
+		if (vowlClass.getEquivalentElements().size() > 0) {
+			vowlClass.setSortedEquivalents(getSortedEquivalents(vowlClass));
+		}
+	}
+
+	@Override
+	public void visit(VowlLiteral vowlLiteral) {
+	}
+
+	@Override
+	public void visit(VowlDatatype vowlDatatype) {
+		if (vowlDatatype.getEquivalentElements().size() > 0) {
+			vowlDatatype.setSortedEquivalents(getSortedEquivalents(vowlDatatype));
+		}
+	}
+
+	@Override
+	public void visit(VowlObjectProperty vowlObjectProperty) {
+		if (vowlObjectProperty.getEquivalentElements().size() > 0) {
+			vowlObjectProperty.setSortedEquivalents(getSortedEquivalents(vowlObjectProperty));
+		}
+	}
+
+	@Override
+	public void visit(VowlDatatypeProperty vowlDatatypeProperty) {
+		if (vowlDatatypeProperty.getEquivalentElements().size() > 0) {
+			vowlDatatypeProperty.setSortedEquivalents(getSortedEquivalents(vowlDatatypeProperty));
+		}
+	}
+
+	@Override
+	public void visit(TypeOfProperty typeOfProperty) {
+	}
+
+	@Override
+	public void visit(VowlIndividual vowlIndividual) {
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/ImportedChecker.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/ImportedChecker.java
new file mode 100644
index 0000000..47588a4
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/ImportedChecker.java
@@ -0,0 +1,102 @@
+/*
+ * ImportedChecker.java
+ *
+ */
+
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.helper.ComparisonHelper;
+import org.semanticweb.owlapi.model.*;
+
+import javax.annotation.Nonnull;
+
+/**
+ *
+ */
+public class ImportedChecker implements OWLNamedObjectVisitor {
+
+//	private static final Logger logger = LogManager.getLogger(ImportedChecker.class);
+
+	private final VowlData vowlData;
+	@SuppressWarnings("unused")
+	private final OWLOntologyManager manager;
+	private OWLOntology loadedOntology;
+	private String loadPath;
+
+	public ImportedChecker(VowlData vowlData, OWLOntologyManager manager, OWLOntology loadedOntology, String loadPath) {
+		this.vowlData = vowlData;
+		this.manager = manager;
+		this.loadedOntology = loadedOntology;
+		this.loadPath = loadPath;
+	}
+
+	public void execute() {
+//		Set<OWLOntology> imports = manager.getImports(loadedOntology);
+//		imports.forEach(owlOntology -> {
+//			owlOntology.getSignature().forEach(element -> {
+//				element.accept(this);
+//			});
+//		});
+
+//		Stream<OWLOntology> imports = manager.imports(loadedOntology);
+//		logger.info("THE STREAM \n "+imports);
+//		List<String> strings = imports.map(Object::toString)
+//				.collect(ArrayList::new, ArrayList::add, ArrayList::addAll);
+//		logger.info("Strings \n "+strings);
+
+		vowlData.getEntityMap().values().forEach(abstractEntity -> {
+			IRI entityIri = abstractEntity.getIri();
+			if (entityIri.toString().contains("http://owl2vowl.de#")) {
+				return;
+			}
+
+			if (ComparisonHelper.hasDifferentNameSpace(entityIri.toString(), loadedOntology, loadPath)) {
+				addImportedAttribute(entityIri);
+			}
+		});
+	}
+
+	protected void addImportedAttribute(IRI iri) {
+		vowlData.getEntityForIri(iri).addAttribute(VowlAttribute.IMPORTED);
+	}
+
+	@Override
+	public void visit(@Nonnull OWLClass owlClass) {
+		if (owlClass.isOWLThing() || owlClass.isOWLNothing()) {
+			// Ignore imported things or owl things
+			return;
+		}
+		addImportedAttribute(owlClass.getIRI());
+	}
+
+	@Override
+	public void visit(@Nonnull OWLObjectProperty owlObjectProperty) {
+		addImportedAttribute(owlObjectProperty.getIRI());
+	}
+
+	@Override
+	public void visit(@Nonnull OWLDataProperty owlDataProperty) {
+		addImportedAttribute(owlDataProperty.getIRI());
+	}
+
+	@Override
+	public void visit(@Nonnull OWLNamedIndividual owlNamedIndividual) {
+		// TODO Do we need to mark individuals as imported?
+		//addImportedAttribute(owlNamedIndividual.getIRI());
+	}
+
+	@Override
+	public void visit(@Nonnull OWLOntology owlOntology) {
+	}
+
+	@Override
+	public void visit(@Nonnull OWLDatatype owlDatatype) {
+		addImportedAttribute(owlDatatype.getIRI());
+	}
+
+	@Override
+	public void visit(@Nonnull OWLAnnotationProperty owlAnnotationProperty) {
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/OntologyInformationParser.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/OntologyInformationParser.java
new file mode 100644
index 0000000..dc9753d
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/OntologyInformationParser.java
@@ -0,0 +1,56 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.OntologyInformationEnum;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.annotation.Annotation;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.ontology.OntologyInformation;
+import org.semanticweb.owlapi.model.IRI;
+import org.semanticweb.owlapi.model.OWLOntology;
+
+import java.util.List;
+import java.util.Map;
+import java.util.Optional;
+import java.util.Set;
+
+/**
+ *
+ */
+public class OntologyInformationParser {
+	private VowlData vowlData;
+	private OWLOntology ontology;
+
+	public OntologyInformationParser(VowlData vowlData, OWLOntology ontology) {
+		this.vowlData = vowlData;
+		this.ontology = ontology;
+	}
+
+	public void execute() {
+		Set<Annotation> ontologyAnnotations = new AnnotationVisitor(vowlData, null).getOntologyAnnotations(ontology);
+		OntologyInformation ontologyInformation = vowlData.getOntologyInformation();
+		ontologyInformation.getAnnotations().fillAnnotations(ontologyAnnotations);
+
+		Optional<IRI> ontologyIRI = ontology.getOntologyID().getOntologyIRI();
+		if (ontologyIRI.isPresent()) {
+			ontologyInformation.setIri(ontologyIRI.get().toString());
+		} else {
+			ontologyInformation.setIri("No IRI set");
+		}
+
+		Map<String, List<Annotation>> identifierMap = ontologyInformation.getAnnotations().getIdentifierToAnnotation();
+
+		if (identifierMap.containsKey(OntologyInformationEnum.VERSION.getValue())) {
+			// Take the first available versions
+			ontologyInformation.setVersion(identifierMap.get(OntologyInformationEnum.VERSION.getValue()).get(0).getValue());
+		}
+
+		if (identifierMap.containsKey(OntologyInformationEnum.TITLE.getValue())) {
+			ontologyInformation.setTitles(identifierMap.get(OntologyInformationEnum.TITLE.getValue()));
+		}
+
+		if (identifierMap.containsKey(OntologyInformationEnum.AUTHOR.getValue())) {
+			identifierMap.get(OntologyInformationEnum.AUTHOR.getValue()).forEach(annotation -> {
+				ontologyInformation.addAuthor(annotation.getValue());
+			});
+		}
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/DataPropertyVisitor.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/DataPropertyVisitor.java
new file mode 100644
index 0000000..f9c4eb6
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/DataPropertyVisitor.java
@@ -0,0 +1,118 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.property;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.AbstractNode;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.NullClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.DatatypeReference;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.AbstractProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlDatatypeProperty;
+
+import java.util.stream.Collectors;
+
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.*;
+
+public class DataPropertyVisitor extends PropertyVisitor {
+	private Logger logger = LogManager.getLogger(DataPropertyVisitor.class);
+
+	public DataPropertyVisitor(VowlData vowlData, OWLProperty owlObjectProperty) {
+		super(vowlData, owlObjectProperty);
+	}
+
+	@Override
+	public void visit(OWLFunctionalDataPropertyAxiom axiom) {
+		VowlDatatypeProperty prop = vowlData.getDatatypePropertyForIri(owlObjectProperty.getIRI());
+		prop.addAttribute(VowlAttribute.FUNCTIONAL);
+	}
+	
+	@Override
+	public void visit(OWLDataPropertyRangeAxiom axiom) {
+		VowlDatatypeProperty prop = vowlData.getDatatypePropertyForIri(owlObjectProperty.getIRI());
+
+		if (!axiom.getRange().isOWLDatatype()) {
+			logger.info("DataPropertyRange is no datatype: " + axiom);
+			return;
+		}
+
+		AbstractNode node = axiom.getRange().accept(new DomainRangeVisitor(owlObjectProperty, vowlData));
+
+		if ((node instanceof NullClass)) {
+			logger.info("Skipped anonymous data range: " + axiom.getRange());
+			return;
+		}
+
+		DatatypeReference reference = (DatatypeReference) node;
+
+		prop.addRange(reference.getIri());
+		reference.addInGoingProperty(prop.getIri());
+	}
+
+	@Override
+	public void visit(OWLDataPropertyDomainAxiom axiom) {
+		VowlDatatypeProperty prop = vowlData.getDatatypePropertyForIri(owlObjectProperty.getIRI());
+		IRI domainIri;
+		if (axiom.getDomain().isAnonymous()){
+			
+			AbstractNode anonymClass = axiom.getDomain().accept(new DomainRangeVisitor(owlObjectProperty, vowlData));
+			if (!(anonymClass instanceof NullClass)) {
+				domainIri = anonymClass.getIri();
+			} else {
+				logger.info("Skipped anonymous object domain: " + axiom.getDomain());
+				return;
+			}
+		} else {
+			if (axiom.getDomain().asOWLClass().isOWLThing()) {
+				return;
+			}
+
+			domainIri = axiom.getDomain().asOWLClass().getIRI();
+		}
+		prop.addDomain(domainIri);
+		vowlData.getClassForIri(domainIri).addOutGoingProperty(prop.getIri());
+	}
+
+	@Override
+	public void visit(OWLSubDataPropertyOfAxiom axiom) {
+		logger.info("Sub Data property axiom not supported yet.");
+
+//		logger.info("Sub Data property axiom experimentally supported.");
+//		OWLDataPropertyExpression subProperty = axiom.getSubProperty();
+//		OWLDataPropertyExpression superProperty = axiom.getSuperProperty();
+//		if (subProperty.isAnonymous()) {
+//			logger.info("Anonym sub property:" + subProperty);
+//			return;
+//		}
+//
+//		if (superProperty.isAnonymous()) {
+//			// TODO anonymous behavior
+//			logger.info("Anonym super property:" + superProperty);
+//			return;
+//		}
+//
+//		AbstractProperty subVowl = vowlData.getPropertyForIri(subProperty.asOWLDataProperty().getIRI());
+//		AbstractProperty superVowl = vowlData.getPropertyForIri(superProperty.asOWLDataProperty().getIRI());
+//		subVowl.addSuperEntity(superVowl.getIri());
+//		superVowl.addSubEntity(subVowl.getIri());
+	}
+
+	@Override
+	public void visit(OWLEquivalentDataPropertiesAxiom axiom) {
+		AbstractProperty base = vowlData.getPropertyForIri(owlObjectProperty.getIRI());
+
+		for (OWLDataPropertyExpression expr : axiom.properties().collect(Collectors.toSet())) {
+			if (expr.isAnonymous()) {
+				// TODO anonymous behavior
+				logger.info("Anonysmous equivalent prop: " + expr);
+				continue;
+			}
+
+			if (expr.asOWLDataProperty().getIRI().equals(base.getIri())) {
+				continue;
+			}
+
+			base.addEquivalentElement(expr.asOWLDataProperty().getIRI());
+		}
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/DomainRangeFiller.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/DomainRangeFiller.java
new file mode 100644
index 0000000..2a3d58b
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/DomainRangeFiller.java
@@ -0,0 +1,179 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.property;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.HasReference;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlThing;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlLiteral;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.AbstractProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.TypeOfProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlDatatypeProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlObjectProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlPropertyVisitor;
+import java.util.Collection;
+import java.util.Set;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.IRI;
+
+/**
+ * Class which is responsible to fill the Domain/Range of properties regarding the VOWL specification.
+ *
+ * @author Eduard
+ */
+public class DomainRangeFiller implements VowlPropertyVisitor {
+
+	private static final Logger logger = LogManager.getLogger(DomainRangeFiller.class);
+
+	private final VowlData vowlData;
+	private final Collection<? extends AbstractProperty> values;
+
+	public DomainRangeFiller(VowlData vowlData, Collection<? extends AbstractProperty> values) {
+		this.vowlData = vowlData;
+		this.values = values;
+	}
+
+	public void execute() {
+		fillEmpty();
+		mergeMulti();
+		processInverseProperties();
+	}
+
+	private void fillEmpty() {
+		values.stream()
+				// Only process props which have empty domain/range
+				.filter(property -> property.getDomains().isEmpty() || property.getRanges().isEmpty())
+				// skip inverse properties
+				.filter(property -> property.getInverse() == null)
+				.forEach(this::processProperty);
+	}
+
+	private void processProperty(AbstractProperty property) {
+		if (property instanceof HasReference) {
+			//Ignore references cause they do not need generated Domain/Range
+			return;
+		}
+		try {
+			property.accept(this);
+		} catch (Exception e) {
+			logger.error("Exception during processing property: " + e + " with message: " + e.getMessage() + " | Skip");
+		}
+	}
+
+	private VowlThing searchForConnectedThing(Set<IRI> value) {
+		if (value.size() != 1) {
+			return null;
+		}
+
+		return vowlData.getThingProvider().getConnectedThing(value.iterator().next());
+	}
+
+	private void mergeMulti() {
+		for (AbstractProperty value : values) {
+			// TODO rethink validity of in/out going edges in the nodes! Probably remap
+			if (value.getRanges().size() > 1) {
+				VowlClass rangeUnion = vowlData.getGenerator().generateUnion(value.getRanges());
+				value.setMergedRange(rangeUnion.getIri());
+			}
+
+			if (value.getDomains().size() > 1) {
+				VowlClass domainUnion = vowlData.getGenerator().generateUnion(value.getDomains());
+				value.setMergedDomain(domainUnion.getIri());
+			}
+		}
+	}
+
+	private void processInverseProperties() {
+		values.stream()
+				.filter(property -> property.getInverse() != null)
+				.filter(property -> property.getDomains().isEmpty() || property.getRanges().isEmpty())
+				.peek(this::fillWithInverse)
+				.filter(property -> property.getDomains().isEmpty() || property.getRanges().isEmpty())
+				.forEach(this::processProperty);
+	}
+
+	private void fillWithInverse(AbstractProperty property) {
+		AbstractProperty inverse = vowlData.getPropertyForIri(property.getInverse());
+
+		if (property.getDomains().isEmpty() && inverse.getJsonRange() != null) {
+			property.getDomains().add(inverse.getJsonRange());
+			logger.debug("Filled inverse property domain " + property + " with " + inverse.getJsonRange());
+		}
+
+		if (property.getRanges().isEmpty() && inverse.getJsonDomain() != null) {
+			property.getRanges().add(inverse.getJsonDomain());
+			logger.debug("Filled inverse property range " + property + " with " + inverse.getJsonDomain());
+		}
+	}
+
+	@Override
+	public void visit(VowlObjectProperty vowlObjectProperty) {
+		classBehaviour(vowlObjectProperty);
+	}
+
+	@Override
+	public void visit(VowlDatatypeProperty property) {
+		if (property.getDomains().isEmpty() && property.getRanges().isEmpty()) {
+			if (!property.getReferencedIris().isEmpty()) {
+				property.setExportToJson(false);
+				return;
+			}
+
+			VowlThing disconnectedThing = vowlData.getThingProvider().getDisconnectedThing();
+			
+			VowlLiteral vowlLiteral = vowlData.getGenerator().generateLiteral();
+			disconnectedThing.addOutGoingProperty(property.getIri());
+			vowlLiteral.addInGoingProperty(property.getIri());
+			property.addDomain(disconnectedThing.getIri());
+			property.addRange(vowlLiteral.getIri());
+			disconnectedThing=null;
+			
+		} else if (property.getDomains().isEmpty()) {
+			VowlThing connectedThing = searchForConnectedThing(property.getRanges());
+			if (connectedThing == null) {
+				connectedThing = vowlData.getThingProvider().getDisconnectedThing();
+			}
+			connectedThing.addOutGoingProperty(property.getIri());
+			property.addDomain(connectedThing.getIri());
+		} else if (property.getRanges().isEmpty()) {
+			VowlLiteral vowlLiteral = vowlData.getGenerator().generateLiteral();
+			vowlLiteral.addInGoingProperty(property.getIri());
+			property.addRange(vowlLiteral.getIri());
+		}
+	}
+
+	@Override
+	public void visit(TypeOfProperty typeOfProperty) {
+		classBehaviour(typeOfProperty);
+	}
+
+	private void classBehaviour(AbstractProperty property) {
+		if (property.getDomains().isEmpty() && property.getRanges().isEmpty()) {
+			if (!property.getReferencedIris().isEmpty()) {
+				property.setExportToJson(false);
+				return;
+			}
+
+			VowlThing disconnectedThing = vowlData.getThingProvider().getDisconnectedThing();
+			disconnectedThing.addOutGoingProperty(property.getIri());
+			disconnectedThing.addInGoingProperty(property.getIri());
+			property.addDomain(disconnectedThing.getIri());
+			property.addRange(disconnectedThing.getIri());
+			disconnectedThing=null;
+		} else if (property.getDomains().isEmpty()) {
+			VowlThing connectedThing = searchForConnectedThing(property.getRanges());
+			if (connectedThing == null) {
+				connectedThing = vowlData.getGenerator().generateThing();
+			}
+			connectedThing.addOutGoingProperty(property.getIri());
+			property.addDomain(connectedThing.getIri());
+		} else if (property.getRanges().isEmpty()) {
+			VowlThing connectedThing = searchForConnectedThing(property.getDomains());
+			if (connectedThing == null) {
+				connectedThing = vowlData.getGenerator().generateThing();
+			}
+			connectedThing.addInGoingProperty(property.getIri());
+			property.addRange(connectedThing.getIri());
+		}
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/DomainRangeVisitor.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/DomainRangeVisitor.java
new file mode 100644
index 0000000..a48fee5
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/DomainRangeVisitor.java
@@ -0,0 +1,134 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.property;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.AbstractNode;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.NullClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlThing;
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.owlapi.IndividualsVisitor;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.*;
+
+import javax.annotation.Nonnull;
+import java.util.HashSet;
+import java.util.Set;
+import java.util.stream.Collectors;
+
+/**
+ * @author Eduard
+ */
+public class DomainRangeVisitor implements OWLObjectVisitorEx<AbstractNode> {
+	@SuppressWarnings("unused")
+	private final OWLProperty owlObjectProperty;
+	private final VowlData vowlData;
+	private Logger logger = LogManager.getLogger(DomainRangeVisitor.class);
+
+	public DomainRangeVisitor(OWLProperty owlObjectProperty, VowlData vowlData) {
+		this.owlObjectProperty = owlObjectProperty;
+		this.vowlData = vowlData;
+	}
+
+	@Nonnull
+	@Override
+	public AbstractNode doDefault(@Nonnull Object object) {
+		logger.info("Missed object for domain/range: " + object);
+		return (AbstractNode) object;
+	}
+
+	@Nonnull
+	@Override
+	public AbstractNode visit(@Nonnull OWLObjectIntersectionOf ce) {
+		Set<OWLClassExpression> operands = ce.operands().collect(Collectors.toSet());
+		Set<IRI> iriList = new HashSet<>();
+
+		for (OWLClassExpression operand : operands) {
+			if (operand.isAnonymous()) {
+				logger.info("Anonymous operand in intersections");
+				return new NullClass();
+			}
+			iriList.add(operand.asOWLClass().getIRI());
+		}
+
+		if (iriList.contains(VowlThing.GENERIC_THING_IRI)) {
+			iriList.remove(VowlThing.GENERIC_THING_IRI);
+		}
+
+		VowlClass intersection = vowlData.getSearcher().getIntersection(iriList);
+
+		if (intersection == null) {
+			intersection = vowlData.getGenerator().generateIntersection(iriList);
+		}
+
+		
+		// memCleaner;
+		iriList.clear();
+		iriList=null;
+		operands=null;
+		return intersection;
+	}
+
+	@Nonnull
+	@Override
+	public AbstractNode visit(OWLObjectUnionOf ce) {
+		Set<OWLClassExpression> operands = ce.operands().collect(Collectors.toSet());
+		Set<IRI> iriList = new HashSet<>();
+
+		for (OWLClassExpression operand : operands) {
+			if (operand.isAnonymous()) {
+				logger.info("Anonymous operand in intersections");
+				return new NullClass();
+			}
+
+			iriList.add(operand.asOWLClass().getIRI());
+		}
+
+		if (iriList.contains(VowlThing.GENERIC_THING_IRI)) {
+			iriList.remove(VowlThing.GENERIC_THING_IRI);
+		}
+
+		VowlClass intersection = vowlData.getSearcher().getUnion(iriList);
+
+		if (intersection == null) {
+			intersection = vowlData.getGenerator().generateUnion(iriList);
+		}
+
+		// memCleaners
+		iriList.clear();
+		iriList=null;
+		operands=null;
+		
+		return intersection;
+	}
+
+	@Nonnull
+	@Override
+	public AbstractNode visit(OWLObjectComplementOf ce) {
+		OWLClassExpression baseClass = ce.getOperand();
+		if (baseClass.isAnonymous()) {
+			logger.info("Complement base is anonym:" + baseClass);
+			return new NullClass();
+		}
+
+		return vowlData.getGenerator().generateComplement(baseClass.asOWLClass().getIRI());
+	}
+
+	@Nonnull
+	@Override
+	public AbstractNode visit(@Nonnull OWLDatatype node) {
+		return vowlData.getGenerator().generateDatatypeReference(node.getIRI());
+	}
+
+	@Nonnull
+	@Override
+	public AbstractNode visit(OWLObjectOneOf ce) {
+		VowlClass oneOfClass = vowlData.getGenerator().generateAnonymousClass();
+
+		ce.individuals().collect(Collectors.toSet()).forEach(owlIndividual -> {
+			owlIndividual.accept(new IndividualsVisitor(vowlData, vowlData.getOwlManager(), oneOfClass.getIri()));
+		});
+
+		return oneOfClass;
+	}
+
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/ObjectPropertyVisitor.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/ObjectPropertyVisitor.java
new file mode 100644
index 0000000..620ec09
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/ObjectPropertyVisitor.java
@@ -0,0 +1,184 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.property;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.AbstractNode;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.NullClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.AbstractProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlObjectProperty;
+
+import java.util.stream.Collectors;
+
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.*;
+
+public class ObjectPropertyVisitor extends PropertyVisitor {
+	private Logger logger = LogManager.getLogger(ObjectPropertyVisitor.class);
+
+	public ObjectPropertyVisitor(VowlData vowlData, OWLProperty owlObjectProperty) {
+		super(vowlData, owlObjectProperty);
+	}
+
+	@Override
+	public void visit(OWLInverseFunctionalObjectPropertyAxiom axiom) {
+		VowlObjectProperty prop = vowlData.getObjectPropertyForIri(owlObjectProperty.getIRI());
+		prop.addAttribute(VowlAttribute.INVERSE_FUNCTIONAL);
+	}
+
+	@Override
+	public void visit(OWLFunctionalObjectPropertyAxiom axiom) {
+		VowlObjectProperty prop = vowlData.getObjectPropertyForIri(owlObjectProperty.getIRI());
+		prop.addAttribute(VowlAttribute.FUNCTIONAL);
+	}
+
+	@Override
+	public void visit(OWLIrreflexiveObjectPropertyAxiom axiom) {
+		VowlObjectProperty prop = vowlData.getObjectPropertyForIri(owlObjectProperty.getIRI());
+		prop.addAttribute(VowlAttribute.IRREFLEXIVE);
+	}
+
+	@Override
+	public void visit(OWLObjectPropertyDomainAxiom axiom) {
+		VowlObjectProperty prop = vowlData.getObjectPropertyForIri(owlObjectProperty.getIRI());
+		IRI domainIri;
+
+		if (axiom.getDomain().isAnonymous()){
+			AbstractNode anonymClass = axiom.getDomain().accept(new DomainRangeVisitor(owlObjectProperty, vowlData));
+			if (!(anonymClass instanceof NullClass)) {
+				domainIri = anonymClass.getIri();
+			} else {
+				logger.info("Skipped anonymous object domain: " + axiom.getDomain());
+				return;
+			}
+		} else {
+			if (axiom.getDomain().asOWLClass().isOWLThing()) {
+				return;
+			}
+
+			domainIri = axiom.getDomain().asOWLClass().getIRI();
+		}
+
+		prop.addDomain(domainIri);
+		vowlData.getClassForIri(domainIri).addOutGoingProperty(prop.getIri());
+	}
+
+	@Override
+	public void visit(OWLObjectPropertyRangeAxiom axiom) {
+		VowlObjectProperty prop = vowlData.getObjectPropertyForIri(owlObjectProperty.getIRI());
+		IRI rangeIri;
+
+		if (axiom.getRange().isAnonymous()){
+			AbstractNode anonymClass = axiom.getRange().accept(new DomainRangeVisitor(owlObjectProperty, vowlData));
+			if (!(anonymClass instanceof NullClass)) {
+				rangeIri = anonymClass.getIri();
+			} else {
+				logger.info("Skipped anonymous object range: " + axiom.getRange());
+				return;
+			}
+		} else {
+			if (axiom.getRange().asOWLClass().isOWLThing()) {
+				return;
+			}
+			rangeIri = axiom.getRange().asOWLClass().getIRI();
+		}
+
+		prop.addRange(rangeIri);
+		vowlData.getClassForIri(rangeIri).addInGoingProperty(prop.getIri());
+	}
+
+	@Override
+	public void visit(OWLDisjointObjectPropertiesAxiom axiom) {
+		logger.info("Disjoint object properties not supported: " + axiom);
+	}
+
+	@Override
+	public void visit(OWLInverseObjectPropertiesAxiom axiom) {
+		OWLObjectPropertyExpression firstProperty = axiom.getFirstProperty();
+		OWLObjectPropertyExpression secondProperty = axiom.getSecondProperty();
+
+		if (firstProperty.isAnonymous()) {
+			// TODO anonymous behavior
+			logger.info("Anonym first property:" + firstProperty);
+			return;
+		}
+
+		if (secondProperty.isAnonymous()) {
+			// TODO anonymous behavior
+			logger.info("Anonym second property:" + secondProperty);
+			return;
+		}
+
+		OWLObjectProperty inverseProperty = firstProperty.asOWLObjectProperty();
+		OWLObjectProperty baseProperty = secondProperty.asOWLObjectProperty();
+
+		AbstractProperty inverseVowlProp = vowlData.getPropertyForIri(inverseProperty.getIRI());
+		inverseVowlProp.addInverse(baseProperty.getIRI());
+	}
+
+	@Override
+	public void visit(OWLSubObjectPropertyOfAxiom axiom) {
+		OWLObjectPropertyExpression subProperty = axiom.getSubProperty();
+		OWLObjectPropertyExpression superProperty = axiom.getSuperProperty();
+
+		if (subProperty.isAnonymous()) {
+			// TODO anonymous behavior
+			logger.info("Anonym sub property:" + subProperty);
+			return;
+		}
+
+		if (superProperty.isAnonymous()) {
+			// TODO anonymous behavior
+			logger.info("Anonym super property:" + superProperty);
+			return;
+		}
+
+		AbstractProperty subVowl = vowlData.getPropertyForIri(subProperty.asOWLObjectProperty().getIRI());
+		AbstractProperty superVowl = vowlData.getPropertyForIri(superProperty.asOWLObjectProperty().getIRI());
+		subVowl.addSuperEntity(superVowl.getIri());
+		superVowl.addSubEntity(subVowl.getIri());
+	}
+
+	@Override
+	public void visit(OWLEquivalentObjectPropertiesAxiom axiom) {
+		AbstractProperty base = vowlData.getPropertyForIri(owlObjectProperty.getIRI());
+
+		for (OWLObjectPropertyExpression expr : axiom.properties().collect(Collectors.toSet())) {
+			if (expr.isAnonymous()) {
+				// TODO anonymous behavior
+				logger.info("Anonysmous equivalent prop: " + expr);
+				continue;
+			}
+
+			if (expr.asOWLObjectProperty().getIRI().equals(base.getIri())) {
+				continue;
+			}
+
+			base.addEquivalentElement(expr.asOWLObjectProperty().getIRI());
+		}
+	}
+
+	@Override
+	public void visit(OWLAsymmetricObjectPropertyAxiom axiom) {
+		VowlObjectProperty prop = vowlData.getObjectPropertyForIri(owlObjectProperty.getIRI());
+		prop.addAttribute(VowlAttribute.ASYMMETRIC);
+	}
+
+	@Override
+	public void visit(OWLSymmetricObjectPropertyAxiom axiom) {
+		VowlObjectProperty prop = vowlData.getObjectPropertyForIri(owlObjectProperty.getIRI());
+		prop.addAttribute(VowlAttribute.SYMMETRIC);
+	}
+
+	@Override
+	public void visit(OWLReflexiveObjectPropertyAxiom axiom) {
+		VowlObjectProperty prop = vowlData.getObjectPropertyForIri(owlObjectProperty.getIRI());
+		prop.addAttribute(VowlAttribute.REFLEXIVE);
+	}
+
+	@Override
+	public void visit(OWLTransitiveObjectPropertyAxiom axiom) {
+		VowlObjectProperty prop = vowlData.getObjectPropertyForIri(owlObjectProperty.getIRI());
+		prop.addAttribute(VowlAttribute.TRANSITIVE);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/PropertyVisitor.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/PropertyVisitor.java
new file mode 100644
index 0000000..a32c69f
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/PropertyVisitor.java
@@ -0,0 +1,27 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.property;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.semanticweb.owlapi.model.OWLObjectVisitor;
+import org.semanticweb.owlapi.model.OWLProperty;
+
+/**
+ * Top class for property visitors.
+ * @author Eduard
+ */
+public class PropertyVisitor implements OWLObjectVisitor {
+	private Logger logger = LogManager.getLogger(PropertyVisitor.class);
+	protected final VowlData vowlData;
+	protected final OWLProperty owlObjectProperty;
+
+	public PropertyVisitor(VowlData vowlData, OWLProperty owlObjectProperty) {
+		this.vowlData = vowlData;
+		this.owlObjectProperty = owlObjectProperty;
+	}
+
+	@Override
+	public void doDefault(Object object) {
+		logger.info("Missing axiom: " + object);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/VowlSubclassPropertyGenerator.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/VowlSubclassPropertyGenerator.java
new file mode 100644
index 0000000..793442d
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/property/VowlSubclassPropertyGenerator.java
@@ -0,0 +1,80 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl.property;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.AbstractEntity;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlThing;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlDatatype;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlLiteral;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.TypeOfProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlDatatypeProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlObjectProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.individuals.VowlIndividual;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+import org.semanticweb.owlapi.model.IRI;
+
+import java.util.HashSet;
+import java.util.Set;
+
+/**
+ * @author Eduard
+ */
+public class VowlSubclassPropertyGenerator implements VowlElementVisitor {
+	private VowlData vowlData;
+
+	public VowlSubclassPropertyGenerator(VowlData vowlData) {
+		this.vowlData = vowlData;
+	}
+
+	public void execute() {
+		Set<AbstractEntity> entities = new HashSet<>(vowlData.getEntityMap().values());
+
+		for (AbstractEntity abstractEntity : entities) {
+			abstractEntity.accept(this);
+		}
+	}
+
+	@Override
+	public void visit(VowlThing vowlThing) {
+
+	}
+
+	@Override
+	public void visit(VowlClass vowlClass) {
+		if (vowlClass.getSubEntities().size() != 0) {
+			for (IRI iri : vowlClass.getSubEntities()) {
+				vowlData.getGenerator().generateSubclassProperty(iri, vowlClass.getIri());
+			}
+		}
+	}
+
+	@Override
+	public void visit(VowlLiteral vowlLiteral) {
+
+	}
+
+	@Override
+	public void visit(VowlDatatype vowlDatatype) {
+
+	}
+
+	@Override
+	public void visit(VowlObjectProperty vowlObjectProperty) {
+
+	}
+
+	@Override
+	public void visit(VowlDatatypeProperty vowlDatatypeProperty) {
+
+	}
+
+	@Override
+	public void visit(VowlIndividual vowlIndividual) {
+
+	}
+
+	@Override
+	public void visit(TypeOfProperty typeOfProperty) {
+
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/TypeSetter.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/TypeSetter.java
new file mode 100644
index 0000000..d27cb3a
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/vowl/TypeSetter.java
@@ -0,0 +1,90 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.vowl;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.NodeType;
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.VowlAttribute;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlClass;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.classes.VowlThing;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlDatatype;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.nodes.datatypes.VowlLiteral;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.TypeOfProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlDatatypeProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.VowlObjectProperty;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.individuals.VowlIndividual;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.visitor.VowlElementVisitor;
+
+import java.util.Collection;
+
+public class TypeSetter implements VowlElementVisitor {
+	@Override
+	public void visit(VowlThing vowlThing) {
+
+	}
+
+	@Override
+	public void visit(VowlClass vowlClass) {
+		vowlClass.setType(getClassType(vowlClass.getAttributes()));
+	}
+
+	@Override
+	public void visit(VowlLiteral vowlLiteral) {
+
+	}
+
+	@Override
+	public void visit(VowlDatatype vowlDatatype) {
+
+	}
+
+	@Override
+	public void visit(VowlObjectProperty vowlObjectProperty) {
+
+	}
+
+	@Override
+	public void visit(VowlDatatypeProperty vowlDatatypeProperty) {
+
+	}
+
+	@Override
+	public void visit(VowlIndividual vowlIndividual) {
+
+	}
+
+	@Override
+	public void visit(TypeOfProperty typeOfProperty) {
+
+	}
+
+	/**
+	 * 1. Intersection, Union, Complement, DisjointUnion
+	 * 2. Equivalent
+	 * 3. rdf
+	 */
+	protected String getClassType(Collection<VowlAttribute> attributes) {
+		if (attributes.contains(VowlAttribute.INTERSECTION)) {
+			return NodeType.TYPE_INTERSECTION;
+		}
+
+		if (attributes.contains(VowlAttribute.UNION)) {
+			return NodeType.TYPE_UNION;
+		}
+
+		if (attributes.contains(VowlAttribute.COMPLEMENT)) {
+			return NodeType.TYPE_COMPLEMENT;
+		}
+
+		if (attributes.contains(VowlAttribute.DISJOINTUNION)) {
+			return NodeType.TYPE_DISJOINTUNION;
+		}
+
+		if (attributes.contains(VowlAttribute.EQUIVALENT)) {
+			return NodeType.TYPE_EQUIVALENT;
+		}
+
+		if (attributes.contains(VowlAttribute.RDF)) {
+			return NodeType.TYPE_RDFSCLASS;
+		}
+
+		return NodeType.TYPE_CLASS;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/server/ContextPath.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/server/ContextPath.java
new file mode 100644
index 0000000..ac98edf
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/server/ContextPath.java
@@ -0,0 +1,22 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.server;
+
+import org.springframework.stereotype.Component;
+import org.springframework.web.context.ServletContextAware;
+
+import javax.servlet.ServletContext;
+import java.io.File;
+
+@Component
+public class ContextPath implements ServletContextAware {
+
+	private static String contextPath;
+
+	public static String getContextPath() {
+		return contextPath;
+	}
+
+	@Override
+	public void setServletContext(ServletContext servletContext) {
+		ContextPath.contextPath = servletContext.getRealPath(File.separator) + File.separator;
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/server/Owl2VowlController.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/server/Owl2VowlController.java
new file mode 100644
index 0000000..bd9fd4f
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/server/Owl2VowlController.java
@@ -0,0 +1,346 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.server;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.Owl2Vowl;
+import de.uni_stuttgart.vis.vowl.owl2vowl.constants.LoggingConstants;
+import org.apache.logging.log4j.LogManager;
+import org.apache.logging.log4j.Logger;
+import org.apache.commons.io.IOUtils;
+
+import org.semanticweb.owlapi.model.IRI;
+import org.semanticweb.owlapi.model.OWLOntologyCreationException;
+import org.springframework.http.HttpStatus;
+import org.springframework.web.bind.annotation.*;
+import org.springframework.web.multipart.MultipartFile;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.util.ArrayList;
+import java.util.Date;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+import java.util.Timer;
+import java.util.TimerTask;
+import java.net.URL;
+import java.text.NumberFormat;
+
+
+
+
+
+@RestController
+public class Owl2VowlController {
+
+	private static final Logger logger = LogManager.getLogger(Owl2VowlController.class);
+
+	private static final Logger conversionLogger = LogManager.getLogger(LoggingConstants.CONVERSION_LOGGER);
+	private static final String СONVERT_MAPPING = "/convert";
+	private static final String READ_JSON = "/read";
+	
+	private static final String LOADING_STATUS = "/loadingStatus";
+	private static final String SERVER_TIMESTAMP = "/serverTimeStamp";
+	private static final String CONVERSION_DONE = "/conversionDone";
+	private static final String DIRECT_INPUT = "/directInput";
+	private static final String GIZMO_INPUT = "/gizMOInput";
+	
+	public  static       String loadingStatusMsg="";
+	private static Boolean needConversionID=true;
+	
+	Map<String, Owl2Vowl> conversionSessionMap=new HashMap<String, Owl2Vowl>();
+	
+	public String msgForWebVOWL(String stackTrace) {
+		// converts the < and > tags to html string so no html injection is created
+		String s1= stackTrace.replaceAll("<", "&lt;");
+		String s2= s1.replaceAll(">", "&gt;");
+		return s2;
+	}
+	
+	public void timed_provideMemoryReleaseHintForGC(String sessionId, String msg, Timer t ) {
+		t.cancel();
+		t.purge();
+		t=null;
+		provideMemoryReleaseHintForGC(sessionId, msg);
+	}
+	
+	public void provideMemoryReleaseHintForGC(String sessionId, String msg) {
+		Owl2Vowl conversionInstace= conversionSessionMap.get(sessionId);
+		if (conversionInstace!=null) {
+			Runtime runtime = Runtime.getRuntime();
+			NumberFormat format = NumberFormat.getInstance();
+			long allocatedMemory = runtime.totalMemory();
+			long freeMemory = runtime.freeMemory();
+
+			conversionSessionMap.remove(sessionId);
+			conversionInstace=null;
+			System.gc();
+			System.runFinalization();
+			System.out.println("Cleaning up Memory for session Id "+ sessionId+ " << closed Session ");
+			System.out.println("Conversion Finished "+msg+" ");
+		
+			// create some statistics
+			format = NumberFormat.getInstance();
+			long after_allocatedMemory = runtime.totalMemory();
+			long after_freeMemory = runtime.freeMemory();
+			System.out.println("-> USED MEMORY " + format.format((allocatedMemory - freeMemory) / 1024)      + "  ->    "+format.format( (after_allocatedMemory- after_freeMemory) / 1024)+"  ");
+		    
+		}
+	}
+	
+	synchronized public void evaluateLifeCycleOfConversionObject(String sessionId, long numOfMiliSeconds) { 
+		Owl2Vowl conversionInstace= conversionSessionMap.get(sessionId);
+		if (conversionInstace!=null) {
+			 final Timer timer = new Timer();
+			    timer.schedule(new TimerTask() {
+		        @Override
+			        public void run() {
+		        	timed_provideMemoryReleaseHintForGC(sessionId, " -> Live cycle evaluation request", timer);
+		        	}
+			    },numOfMiliSeconds,numOfMiliSeconds);
+		}
+   }
+	
+	@ResponseStatus(value = HttpStatus.BAD_REQUEST, reason = "Parameter not correct")
+	@ExceptionHandler(IllegalArgumentException.class)
+	public void parameterExceptionHandler(Exception e) {
+		logger.info("--- Parameter exception: " + e.getMessage());
+		conversionLogger.error("Problems with parameters: " + e.getMessage());
+		loadingStatusMsg+="* <span style='color:red;'>Problems with parameters:</span>\n";
+		loadingStatusMsg+=msgForWebVOWL(e.getMessage());
+	}
+
+	@ResponseStatus(value = HttpStatus.BAD_REQUEST, reason = "Ontology could not be created")
+	@ExceptionHandler(OWLOntologyCreationException.class)
+	public void ontologyCreationExceptionHandler(Exception e) {
+		logger.info("--- Ontology creation exception: " + e.getMessage());
+		conversionLogger.error("Problems in ontology creation process: " + e.getMessage());
+		loadingStatusMsg+="* <span style='color:red;'>Problems in ontology creation process:</span>\n";
+		loadingStatusMsg+=msgForWebVOWL(e.getMessage());
+	}
+
+	@ResponseStatus(value = HttpStatus.BAD_REQUEST, reason = "Problems while generating uploaded file on server.")
+	@ExceptionHandler(IOException.class)
+	public void fileExceptionHandler(Exception e) {
+		logger.info("--- IO exception: " + e.getMessage());
+		conversionLogger.error("IO exception while generating file on server: " + e.getMessage());
+		loadingStatusMsg+="* <span style='color:red;'>IO exception while generating file on server:</span>\n";
+		loadingStatusMsg+=msgForWebVOWL(e.getMessage());
+	}
+
+	// adding the conversion loading to webvowl;
+	@RequestMapping(value = LOADING_STATUS, method = RequestMethod.GET)
+	public String getLoadingStatus(@RequestParam("sessionId") String sessionId){
+		Owl2Vowl converstionInstace= conversionSessionMap.get(sessionId);
+		if (converstionInstace!=null) {
+			// add a . for loading indication;
+			converstionInstace.appendLoadingIndicatorPoint();
+			return converstionInstace.getLoadingMsg();
+		}
+		else {
+			if (needConversionID==true) {
+				loadingStatusMsg+=".";
+				return loadingStatusMsg;
+			}else {
+				return loadingStatusMsg;
+			}
+		}
+	}
+	
+	// adding finished call from client, in order to remove owl2vowl converter from map and 
+	// cleanup memory by garbage collector the wise 
+	@RequestMapping(value = CONVERSION_DONE, method = RequestMethod.GET)
+	public void conversionFinished(@RequestParam("sessionId") String sessionId){
+		provideMemoryReleaseHintForGC(sessionId,"-> Requested by WebVOWL");
+	}
+	
+	// adding session id to owl2vowl;
+	@RequestMapping(value = SERVER_TIMESTAMP, method = RequestMethod.GET)
+		public String getServerTimeStamp(){
+		  needConversionID=true;
+	  	  Date currentTime=new Date();
+    	  long SystemTimeStamp=currentTime.getTime();
+    	  
+    	  String value=String.valueOf(SystemTimeStamp);
+    	  loadingStatusMsg="";
+    	  System.out.println("Requested session Id:             "+ value);
+   		  return value;
+		}
+	
+	@RequestMapping(value = DIRECT_INPUT, method = RequestMethod.POST)
+	public String directInput(@RequestParam("input")String input, @RequestParam("sessionId") String sessionId) throws IOException,
+			OWLOntologyCreationException {
+		String jsonAsString;
+		try {
+			Owl2Vowl owl2Vowl = new Owl2Vowl(input);
+			conversionSessionMap.put(sessionId, owl2Vowl);
+			jsonAsString = owl2Vowl.getJsonAsString();
+		} catch (Exception e) {
+			conversionLogger.info("Error for direct Input  " + e.getMessage());
+			throw e;
+		}
+		finally {
+			evaluateLifeCycleOfConversionObject(sessionId,5000);
+		}
+	
+		return jsonAsString;
+	}
+	
+	
+	@RequestMapping(value = СONVERT_MAPPING, method = RequestMethod.POST)
+	public String uploadOntology(@RequestParam("ontology") MultipartFile[] files, @RequestParam("sessionId") String sessionId) throws IOException,
+			OWLOntologyCreationException {
+
+		if (files == null || files.length == 0) {
+			loadingStatusMsg+="* <span style='color:red;'>No file uploaded!</span>";
+			throw new IllegalArgumentException("No file uploaded!");
+		}
+
+		if (files.length > 1) {
+			loadingStatusMsg+="* <span style='color:red;'>Please upload only the main ontology!</span>";
+			throw new IllegalArgumentException("Please upload only the main ontology!");
+		}
+
+		List<InputStream> inputStreams = new ArrayList<>();
+
+		for (MultipartFile file : files) {
+			inputStreams.add(file.getInputStream());
+		}
+
+		String jsonAsString;
+
+		try {
+			Owl2Vowl owl2Vowl = new Owl2Vowl(inputStreams.get(0));
+			conversionSessionMap.put(sessionId, owl2Vowl);
+			jsonAsString = owl2Vowl.getJsonAsString();
+		} catch (Exception e) {
+			conversionLogger.info("Uploaded files " + files[0].getName() + ": " + 0);
+			throw e;
+		}
+		finally {
+			evaluateLifeCycleOfConversionObject(sessionId,5000);
+		}
+		return jsonAsString;
+	}
+	
+	@RequestMapping(value = GIZMO_INPUT, method = RequestMethod.POST)
+	public String uploadOntology(@RequestParam("ontology") MultipartFile[] files) throws IOException,
+			OWLOntologyCreationException {
+		if (files == null || files.length == 0) {
+			loadingStatusMsg+="* <span style='color:red;'>No file uploaded!</span>";
+			throw new IllegalArgumentException("No file uploaded!");
+		}
+
+		if (files.length > 1) {
+			loadingStatusMsg+="* <span style='color:red;'>Please upload only the main ontology!</span>";
+			throw new IllegalArgumentException("Please upload only the main ontology!");
+		}
+
+		List<InputStream> inputStreams = new ArrayList<>();
+
+		for (MultipartFile file : files) {
+			inputStreams.add(file.getInputStream());
+		}
+
+		String jsonAsString;
+
+		try {
+			Owl2Vowl owl2Vowl = new Owl2Vowl(inputStreams.get(0));
+			//conversionSessionMap.put(sessionId, owl2Vowl);
+			jsonAsString = owl2Vowl.getJsonAsString();
+		} catch (Exception e) {
+			conversionLogger.info("Uploaded files " + files[0].getName() + ": " + 0);
+			throw e;
+		}
+		finally {
+			//evaluateLifeCycleOfConversionObject(sessionId,5000);
+		}
+		return jsonAsString;
+	}
+
+
+	@RequestMapping(value = СONVERT_MAPPING, method = RequestMethod.GET)
+	public String convertIRI(@RequestParam("iri") String iri,@RequestParam("sessionId") String sessionId) throws IOException, OWLOntologyCreationException {
+		String jsonAsString;
+		String out=iri.replace(" ","%20");
+		loadingStatusMsg="";
+		try {
+		
+			Owl2Vowl owl2Vowl = new Owl2Vowl(IRI.create(out));
+			conversionSessionMap.put(sessionId, owl2Vowl);
+   		    jsonAsString =  owl2Vowl.getJsonAsString();
+		
+			conversionLogger.info(out + " " + 1);
+		} catch (Exception e) {
+			conversionLogger.info(out + " " + 1);
+			return e.getMessage();
+		}
+		finally {
+			evaluateLifeCycleOfConversionObject(sessionId,5000);
+		}
+		conversionLogger.info(iri + " " + 0);
+		return jsonAsString;
+	}
+
+	// adding some proxy functionality
+
+	@RequestMapping(value = READ_JSON, method = RequestMethod.POST)
+	public String uploadJSON(@RequestParam("ontology") MultipartFile[] files) throws IOException,
+			OWLOntologyCreationException {
+		// clear loading String; 
+		if (files == null || files.length == 0) {
+			loadingStatusMsg+="No file uploaded!";
+			throw new IllegalArgumentException("No file uploaded!");
+		}
+
+		if (files.length > 1) {
+			loadingStatusMsg+="* <span style='color:red;'>Please upload only the main ontology!</span>";
+			throw new IllegalArgumentException("Please upload only the main ontology!");
+		}
+
+		List<InputStream> inputStreams = new ArrayList<>();
+
+		String jsonAsString="";
+		for (MultipartFile file : files) {
+			inputStreams.add(file.getInputStream());
+		}
+
+		try {
+			jsonAsString=IOUtils.toString(inputStreams.get(0),"UTF-8");
+		}
+		catch (Exception e){
+			logger.info("Something went wrong");
+			conversionLogger.error("Something went wrong " + e.getMessage());
+			loadingStatusMsg+="* <span style='color:red;'> Something went wrong</span>\n";
+			loadingStatusMsg+=msgForWebVOWL(e.getMessage());
+		}
+
+		return jsonAsString;
+	}
+
+	
+	
+	@RequestMapping(value = READ_JSON, method = RequestMethod.GET)
+	public String readJsons(@RequestParam("json") String json) throws IOException, OWLOntologyCreationException {
+		String jsonAsString="";
+		needConversionID=false;
+		try {
+			InputStream input = new URL(json).openStream();
+			try {
+				jsonAsString=IOUtils.toString(input,"UTF-8");
+			} catch (Exception e2){
+				loadingStatusMsg+="* <span style='color:red;'> Something went wrong</span>\n";
+				loadingStatusMsg+=msgForWebVOWL(e2.getMessage());
+			}finally {
+				IOUtils.closeQuietly(input);
+			}
+		}
+		catch (Exception e){
+			logger.info("Something went wrong");
+			conversionLogger.error("Something went wrong " + e.getMessage());
+//			loadingStatusMsg+="* <span style='color:red;'> Something went wrong</span>\n";
+//			loadingStatusMsg+=msgForWebVOWL(e.getMessage());
+			conversionLogger.error(loadingStatusMsg);
+		}
+		return jsonAsString;
+	}
+
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/ServerMain.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/ServerMain.java
new file mode 100644
index 0000000..d759821
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/ServerMain.java
@@ -0,0 +1,18 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl;
+
+import org.springframework.boot.SpringApplication;
+import org.springframework.boot.autoconfigure.SpringBootApplication;
+import org.springframework.boot.builder.SpringApplicationBuilder;
+import org.springframework.boot.web.support.SpringBootServletInitializer;
+
+@SpringBootApplication
+public class ServerMain extends SpringBootServletInitializer {
+	public static void main(String[] args) {
+		SpringApplication.run(ServerMain.class, args);
+	}
+
+	@Override
+	protected SpringApplicationBuilder configure(SpringApplicationBuilder application) {
+		return application.sources(ServerMain.class);
+	}
+}
diff --git a/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/util/ProjectInformations.java b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/util/ProjectInformations.java
new file mode 100644
index 0000000..0298cb9
--- /dev/null
+++ b/src/main/java/de/uni_stuttgart/vis/vowl/owl2vowl/util/ProjectInformations.java
@@ -0,0 +1,31 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.util;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.util.Properties;
+
+/**
+ *
+ */
+public class ProjectInformations {
+
+	private static final String VERSION_PROPERTIES_FILE = "/version.properties";
+	private static String version;
+
+	static {
+
+		try (InputStream inputStream =
+						 ProjectInformations.class.getResourceAsStream(VERSION_PROPERTIES_FILE)) {
+			Properties properties = new Properties();
+			properties.load(inputStream);
+			version = properties.getProperty("version", "");
+		} catch (IOException e) {
+			System.err.println(VERSION_PROPERTIES_FILE + " not found.");
+		}
+
+	}
+
+	public static String getVersion() {
+		return version;
+	}
+}
diff --git a/src/main/resources/application.properties b/src/main/resources/application.properties
new file mode 100644
index 0000000..f938aa8
--- /dev/null
+++ b/src/main/resources/application.properties
@@ -0,0 +1,4 @@
+spring.http.multipart.max-file-size=10MB
+spring.http.multipart.max-request-size=10MB
+!remove comment if you want to use extra file logger in the war
+!logging.config=log4j2-spring-file.xml
\ No newline at end of file
diff --git a/src/main/resources/log4j2-spring.xml b/src/main/resources/log4j2-spring.xml
new file mode 100644
index 0000000..59c5fdc
--- /dev/null
+++ b/src/main/resources/log4j2-spring.xml
@@ -0,0 +1,32 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Configuration status="WARN">
+	<Properties>
+		<Property name="PID">????</Property>
+		<Property name="LOG_EXCEPTION_CONVERSION_WORD">%xwEx</Property>
+		<Property name="LOG_LEVEL_PATTERN">%5p</Property>
+		<Property name="CONSOLE_LOG_PATTERN">%clr{%d{yyyy-MM-dd HH:mm:ss.SSS}}{faint} %clr{${LOG_LEVEL_PATTERN}} %clr{${sys:PID}}{magenta} %clr{---}{faint} %clr{[%15.15t]}{faint} %clr{%-40.40c{1.}}{cyan} %clr{:}{faint} %m%n${sys:LOG_EXCEPTION_CONVERSION_WORD}</Property>
+		<Property name="FILE_LOG_PATTERN">%d{yyyy-MM-dd HH:mm:ss.SSS} ${LOG_LEVEL_PATTERN} ${sys:PID} --- [%t] %-40.40c{1.} : %m%n${sys:LOG_EXCEPTION_CONVERSION_WORD}</Property>
+	</Properties>
+	<Appenders>
+		<Console name="Console" target="SYSTEM_OUT" follow="true">
+			<PatternLayout pattern="${sys:CONSOLE_LOG_PATTERN}" />
+		</Console>
+	</Appenders>
+	<Loggers>
+		<Logger name="org.apache.catalina.startup.DigesterFactory" level="error" />
+		<Logger name="org.apache.catalina.util.LifecycleBase" level="error" />
+		<Logger name="org.apache.coyote.http11.Http11NioProtocol" level="warn" />
+		<logger name="org.apache.sshd.common.util.SecurityUtils" level="warn"/>
+		<Logger name="org.apache.tomcat.util.net.NioSelectorPool" level="warn" />
+		<Logger name="org.crsh.plugin" level="warn" />
+		<logger name="org.crsh.ssh" level="warn"/>
+		<Logger name="org.eclipse.jetty.util.component.AbstractLifeCycle" level="error" />
+		<Logger name="org.hibernate.validator.internal.util.Version" level="warn" />
+		<logger name="org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration" level="warn"/>
+		<logger name="org.springframework.boot.actuate.endpoint.jmx" level="warn"/>
+		<logger name="org.thymeleaf" level="warn"/>
+		<Root level="info">
+			<AppenderRef ref="Console" />
+		</Root>
+	</Loggers>
+</Configuration>
diff --git a/src/main/resources/log4j2-spring-file.xml b/src/main/resources/log4j2-spring-file.xml
new file mode 100644
index 0000000..1a9532f
--- /dev/null
+++ b/src/main/resources/log4j2-spring-file.xml
@@ -0,0 +1,66 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Configuration status="WARN">
+	<Properties>
+		<Property name="log-dir">logs</Property>
+		<Property name="PID">????</Property>
+		<Property name="LOG_EXCEPTION_CONVERSION_WORD">%xwEx</Property>
+		<Property name="LOG_LEVEL_PATTERN">%5p</Property>
+		<Property name="CONSOLE_LOG_PATTERN">%clr{%d{yyyy-MM-dd HH:mm:ss.SSS}}{faint} %clr{${LOG_LEVEL_PATTERN}} %clr{${sys:PID}}{magenta} %clr{---}{faint} %clr{[%15.15t]}{faint} %clr{%-40.40c{1.}}{cyan} %clr{:}{faint} %m%n${sys:LOG_EXCEPTION_CONVERSION_WORD}</Property>
+		<Property name="FILE_LOG_PATTERN">%d{yyyy-MM-dd HH:mm:ss.SSS} ${LOG_LEVEL_PATTERN} ${sys:PID} --- [%t] %-40.40c{1.} : %m%n${sys:LOG_EXCEPTION_CONVERSION_WORD}</Property>
+	</Properties>
+	<Appenders>
+		<Console name="Console" target="SYSTEM_OUT" follow="true">
+			<PatternLayout pattern="${sys:CONSOLE_LOG_PATTERN}" />
+		</Console>
+		<RollingFile name="File" fileName="${log-dir}/log.log" filePattern="logs/$${date:yyyy-MM}/app-%d{yyyy-MM-dd-HH}-%i.log.gz">
+			<PatternLayout>
+				<Pattern>${sys:FILE_LOG_PATTERN}</Pattern>
+			</PatternLayout>
+			<Policies>
+				<SizeBasedTriggeringPolicy size="10 MB" />
+			</Policies>
+		</RollingFile>
+
+		<RollingFile name="Conversion_File" fileName="${log-dir}/conversions.log" filePattern="logs/$${date:yyyy-MM}/conversion-%d{yyyy-MM-dd-HH}-%i.log.gz">
+			<PatternLayout>
+				<Pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} - %msg%n</Pattern>
+			</PatternLayout>
+			<Policies>
+				<TimeBasedTriggeringPolicy>1</TimeBasedTriggeringPolicy>
+			</Policies>
+		</RollingFile>
+
+		<RollingFile name="Ontology_Structure" fileName="${log-dir}/structure.log" filePattern="logs/$${date:yyyy-MM}/structure-%d{yyyy-MM-dd-HH}-%i.log.gz">
+			<PatternLayout>
+				<Pattern>${sys:FILE_LOG_PATTERN}</Pattern>
+			</PatternLayout>
+			<Policies>
+				<TimeBasedTriggeringPolicy>1</TimeBasedTriggeringPolicy>
+			</Policies>
+		</RollingFile>
+	</Appenders>
+	<Loggers>
+		<Logger name="org.apache.catalina.startup.DigesterFactory" level="error" />
+		<Logger name="org.apache.catalina.util.LifecycleBase" level="error" />
+		<Logger name="org.apache.coyote.http11.Http11NioProtocol" level="warn" />
+		<logger name="org.apache.sshd.common.util.SecurityUtils" level="warn"/>
+		<Logger name="org.apache.tomcat.util.net.NioSelectorPool" level="warn" />
+		<Logger name="org.crsh.plugin" level="warn" />
+		<logger name="org.crsh.ssh" level="warn"/>
+		<Logger name="org.eclipse.jetty.util.component.AbstractLifeCycle" level="error" />
+		<Logger name="org.hibernate.validator.internal.util.Version" level="warn" />
+		<logger name="org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration" level="warn"/>
+		<logger name="org.springframework.boot.actuate.endpoint.jmx" level="warn"/>
+		<logger name="org.thymeleaf" level="warn"/>
+		<logger name="de.uni_stuttgart.vis.vowl.owl2vowl">
+			<AppenderRef ref="Ontology_Structure" level="info"/>
+		</logger>
+		<logger name="conversion-logger">
+			<AppenderRef ref="Conversion_File" level="info"/>
+		</logger>
+		<Root level="info">
+			<AppenderRef ref="Console" />
+			<AppenderRef ref="File" />
+		</Root>
+	</Loggers>
+</Configuration>
diff --git a/src/main/resources/version.properties b/src/main/resources/version.properties
new file mode 100644
index 0000000..c59b420
--- /dev/null
+++ b/src/main/resources/version.properties
@@ -0,0 +1 @@
+version = @project.version@
diff --git a/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/CompleteTestSuite.java b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/CompleteTestSuite.java
new file mode 100644
index 0000000..50c46ba
--- /dev/null
+++ b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/CompleteTestSuite.java
@@ -0,0 +1,17 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.parser.helper.ComparisonHelperTest;
+import junit.framework.TestSuite;
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+@RunWith(Suite.class)
+@Suite.SuiteClasses({
+		ComparisonHelperTest.class,
+		ConsoleMainTest.class,
+		OntobenchTest.class,
+		PropertyTest.class
+})
+public class CompleteTestSuite extends TestSuite {
+
+}
diff --git a/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/ConsoleMainTest.java b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/ConsoleMainTest.java
new file mode 100644
index 0000000..2228b1f
--- /dev/null
+++ b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/ConsoleMainTest.java
@@ -0,0 +1,56 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.converter.AbstractConverter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.converter.IRIConverter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.export.types.FileExporter;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.Mockito;
+import org.powermock.api.mockito.PowerMockito;
+import org.powermock.core.classloader.annotations.PowerMockIgnore;
+import org.powermock.core.classloader.annotations.PrepareForTest;
+import org.powermock.modules.junit4.PowerMockRunner;
+import org.semanticweb.owlapi.model.IRI;
+
+import java.io.File;
+
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.hamcrest.Matchers.is;
+import static org.mockito.Matchers.anyCollection;
+import static org.mockito.Mockito.doNothing;
+import static org.mockito.Mockito.mock;
+
+@RunWith(PowerMockRunner.class)
+@PrepareForTest(AbstractConverter.class)
+@PowerMockIgnore( {"javax.management.*"})
+public class ConsoleMainTest extends ConsoleMain {
+
+	private static final String TEST_PATH = "testPfad";
+	private static final String TEST_IRI = "http://testiri.de";
+
+	@Test
+	public void testMain() throws Exception {
+		IRIConverter mockedConverter = mock(IRIConverter.class);
+		doNothing().when(mockedConverter).convert();
+
+		PowerMockito.whenNew(IRIConverter.class).withArguments(Mockito.any(IRI.class), anyCollection()).thenReturn(mockedConverter);
+
+		ConsoleMain.main(new String[]{"-iri", "http://test.de"});
+	}
+
+	@Test
+	public void testOutputParameter() throws Exception {
+		IRIConverter mockedConverter = mock(IRIConverter.class);
+		doNothing().when(mockedConverter).convert();
+		PowerMockito.whenNew(IRIConverter.class).withArguments(Mockito.any(IRI.class), anyCollection()).thenReturn(mockedConverter);
+
+		FileExporter mockedFileExporter = mock(FileExporter.class);
+		PowerMockito.whenNew(FileExporter.class).withArguments(Mockito.any(File.class)).thenAnswer(invocationOnMock -> {
+			File file = (File) invocationOnMock.getArguments()[0];
+			assertThat(file.getName(), is(TEST_PATH));
+			return mockedFileExporter;
+		});
+
+		new ConsoleMain().parseCommandLine(new String[]{"-output", TEST_PATH, "-iri", TEST_IRI});
+	}
+}
diff --git a/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/Constants.java b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/Constants.java
new file mode 100644
index 0000000..757dfb2
--- /dev/null
+++ b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/Constants.java
@@ -0,0 +1,12 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl;
+
+import org.semanticweb.owlapi.model.IRI;
+
+public class Constants {
+
+	public static final String OWL2VOWL_NAMESPACE = "https://owl2vowl.de/";
+
+	public static IRI getIRIWithTestNamespace(String entityIRI) {
+		return IRI.create(OWL2VOWL_NAMESPACE + entityIRI);
+	}
+}
diff --git a/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/OntobenchTest.java b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/OntobenchTest.java
new file mode 100644
index 0000000..6e02994
--- /dev/null
+++ b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/OntobenchTest.java
@@ -0,0 +1,14 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl;
+
+import org.junit.Test;
+
+/**
+ * Crash test class to check if OWL2VOWL crashes when converting all possible constructs created with OntoBench.
+ */
+public class OntobenchTest {
+
+	@Test
+	public void crashTest() {
+		new Owl2Vowl(getClass().getResourceAsStream("/full_ontobench_test.ttl")).getJsonAsString();
+	}
+}
diff --git a/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/helper/ComparisonHelperTest.java b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/helper/ComparisonHelperTest.java
new file mode 100644
index 0000000..27e0ac8
--- /dev/null
+++ b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/parser/helper/ComparisonHelperTest.java
@@ -0,0 +1,26 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl.parser.helper;
+
+import org.junit.Test;
+
+import static org.hamcrest.Matchers.is;
+import static org.junit.Assert.assertThat;
+
+public class ComparisonHelperTest {
+
+	@Test
+	public void testExtractBaseIRI() throws Exception {
+		String resultIri = "http://test.de/working";
+
+		String testIri1 = "http://test.de/working#worker";
+		assertThat(ComparisonHelper.extractBaseIRI(testIri1), is(resultIri));
+
+		String testIri2 = "http://test.de/working/worker/";
+		assertThat(ComparisonHelper.extractBaseIRI(testIri2), is(resultIri));
+
+		String testIri3 = "http://test.de/working/worker";
+		assertThat(ComparisonHelper.extractBaseIRI(testIri3), is(resultIri));
+
+		String testIri4 = "http://test.de/working#";
+		assertThat(ComparisonHelper.extractBaseIRI(testIri4), is(resultIri));
+	}
+}
diff --git a/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/PropertyTest.java b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/PropertyTest.java
new file mode 100644
index 0000000..00b103a
--- /dev/null
+++ b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/PropertyTest.java
@@ -0,0 +1,27 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl;
+
+import static org.hamcrest.MatcherAssert.assertThat;
+import static org.hamcrest.Matchers.is;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.entities.properties.AbstractProperty;
+import org.junit.Test;
+
+
+public class PropertyTest {
+
+	@Test
+	public void shouldProcessAnonymousInverseRelationCorrectly() {
+		TestConverter converter = new TestConverter(getClass().getResourceAsStream("/inverse-anonym-test.ttl"));
+		VowlData data = converter.getConvertedData();
+
+		AbstractProperty propertyA = data.getPropertyForIri(Constants.getIRIWithTestNamespace("propertyA"));
+		AbstractProperty propertyB = data.getPropertyForIri(Constants.getIRIWithTestNamespace("propertyB"));
+
+		assertThat(propertyA.getJsonDomain(), is(Constants.getIRIWithTestNamespace("classA")));
+		assertThat(propertyA.getJsonRange(), is(Constants.getIRIWithTestNamespace("classB")));
+
+		assertThat(propertyB.getJsonDomain(), is(Constants.getIRIWithTestNamespace("classB")));
+		assertThat(propertyB.getJsonRange(), is(Constants.getIRIWithTestNamespace("classA")));
+	}
+}
diff --git a/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/TestConverter.java b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/TestConverter.java
new file mode 100644
index 0000000..6ec7d80
--- /dev/null
+++ b/src/test/java/de/uni_stuttgart/vis/vowl/owl2vowl/TestConverter.java
@@ -0,0 +1,19 @@
+package de.uni_stuttgart.vis.vowl.owl2vowl;
+
+import de.uni_stuttgart.vis.vowl.owl2vowl.converter.InputStreamConverter;
+import de.uni_stuttgart.vis.vowl.owl2vowl.model.data.VowlData;
+import java.io.InputStream;
+
+public class TestConverter extends InputStreamConverter {
+
+	public TestConverter(InputStream ontology) {
+		super(ontology);
+	}
+
+	public VowlData getConvertedData() {
+		if (!this.initialized) {
+			this.convert();
+		}
+		return this.vowlData;
+	}
+}
diff --git a/src/test/resources/full_ontobench_test.ttl b/src/test/resources/full_ontobench_test.ttl
new file mode 100644
index 0000000..faecc84
--- /dev/null
+++ b/src/test/resources/full_ontobench_test.ttl
@@ -0,0 +1,10595 @@
+@prefix : <http://webvowl.steffen-lohmann.de/ontology/1/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix xml: <http://www.w3.org/XML/1998/namespace> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@base <http://webvowl.steffen-lohmann.de/ontology/1/> .
+
+<http://webvowl.steffen-lohmann.de/ontology/1/> rdf:type owl:Ontology ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/title> "Benchmark Ontology"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/terms/date> "2016-05-01"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/terms/title> "Benchmark Ontology"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/date> "2016-05-01"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/identifier> "http://webvowl.steffen-lohmann.de/ontology/1/"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/creator> "Ontology Visualization Benchmark Generator"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/terms/description> "Benchmark ontology created with the Ontology Visualization Benchmark Generator"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/publisher> "Ontology Visualization Benchmark Generator"^^xsd:string ;
+                                                
+                                                rdfs:label "Benchmark Ontology"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/contributor> "Vincent Link"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/elements/1.1/description> "Benchmark ontology created with the Ontology Visualization Benchmark Generator"^^xsd:string ;
+                                                
+                                                owl:versionInfo "1.0"^^xsd:string ;
+                                                
+                                                <http://purl.org/dc/terms/identifier> "http://webvowl.steffen-lohmann.de/ontology/1/"^^xsd:string ;
+                                                
+                                                rdfs:comment "Benchmark ontology created with the Ontology Visualization Benchmark Generator"^^xsd:string .
+
+
+#################################################################
+#
+#    Annotation properties
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/customAnnotationProperty
+
+:customAnnotationProperty rdf:type owl:AnnotationProperty .
+
+
+
+
+
+#################################################################
+#
+#    Datatypes
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataOneOf
+
+:DataOneOf rdf:type rdfs:Datatype ;
+           
+           owl:equivalentClass [ rdf:type rdfs:Datatype ;
+                                 owl:oneOf [ rdf:type rdf:List ;
+                                             rdf:first "DataOneOf_Literal1"^^xsd:string ;
+                                             rdf:rest [ rdf:type rdf:List ;
+                                                        rdf:first "DataOneOf_Literal2"^^xsd:string ;
+                                                        rdf:rest [ rdf:type rdf:List ;
+                                                                   rdf:first "DataOneOf_Literal3"^^xsd:string ;
+                                                                   rdf:rest rdf:nil
+                                                                 ]
+                                                      ]
+                                           ]
+                               ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataOneOf_EL
+
+:DataOneOf_EL rdf:type rdfs:Datatype ;
+              
+              owl:equivalentClass [ rdf:type rdfs:Datatype ;
+                                    owl:oneOf [ rdf:type rdf:List ;
+                                                rdf:first "DataOneOf_EL_Literal1"^^xsd:string ;
+                                                rdf:rest rdf:nil
+                                              ]
+                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataUnionOf_Datatype1
+
+:DataUnionOf_Datatype1 rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataUnionOf_Datatype2
+
+:DataUnionOf_Datatype2 rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DatatypeIntersectionOf_Datatype1
+
+:DatatypeIntersectionOf_Datatype1 rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DatatypeIntersectionOf_Datatype2
+
+:DatatypeIntersectionOf_Datatype2 rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DatatypeRestrictionDatatype
+
+:DatatypeRestrictionDatatype rdf:type rdfs:Datatype .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/RdfsDatatype
+
+:RdfsDatatype rdf:type rdfs:Datatype .
+
+
+
+
+
+#################################################################
+#
+#    Object Properties
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DeprecatedProperty
+
+:DeprecatedProperty rdf:type owl:ObjectProperty ;
+                    
+                    rdfs:domain :Class18 ;
+                    
+                    rdfs:range :DeprecatedPropertyRange ;
+                    
+                    owl:deprecated "true"^^xsd:boolean .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_1
+
+:EightParallelProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_2
+
+:EightParallelProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_3
+
+:EightParallelProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_4
+
+:EightParallelProperties_4 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_5
+
+:EightParallelProperties_5 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_6
+
+:EightParallelProperties_6 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_7
+
+:EightParallelProperties_7 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelProperties_8
+
+:EightParallelProperties_8 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :EightParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveParallelProperties_1
+
+:FiveParallelProperties_1 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveParallelProperties_2
+
+:FiveParallelProperties_2 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveParallelProperties_3
+
+:FiveParallelProperties_3 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveParallelProperties_4
+
+:FiveParallelProperties_4 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveParallelProperties_5
+
+:FiveParallelProperties_5 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FiveParallelPropertiesDomain ;
+                          
+                          rdfs:range :SixParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FourParallelProperties_1
+
+:FourParallelProperties_1 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FourParallelPropertiesDomain ;
+                          
+                          rdfs:range :FiveParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FourParallelProperties_2
+
+:FourParallelProperties_2 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FourParallelPropertiesDomain ;
+                          
+                          rdfs:range :FiveParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FourParallelProperties_3
+
+:FourParallelProperties_3 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FourParallelPropertiesDomain ;
+                          
+                          rdfs:range :FiveParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FourParallelProperties_4
+
+:FourParallelProperties_4 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :FourParallelPropertiesDomain ;
+                          
+                          rdfs:range :FiveParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_1
+
+:SevenParallelProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_2
+
+:SevenParallelProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_3
+
+:SevenParallelProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_4
+
+:SevenParallelProperties_4 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_5
+
+:SevenParallelProperties_5 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_6
+
+:SevenParallelProperties_6 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelProperties_7
+
+:SevenParallelProperties_7 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :SevenParallelPropertiesDomain ;
+                           
+                           rdfs:range :EightParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelProperties_1
+
+:SixParallelProperties_1 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelProperties_2
+
+:SixParallelProperties_2 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelProperties_3
+
+:SixParallelProperties_3 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelProperties_4
+
+:SixParallelProperties_4 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelProperties_5
+
+:SixParallelProperties_5 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelProperties_6
+
+:SixParallelProperties_6 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :SixParallelPropertiesDomain ;
+                         
+                         rdfs:range :SevenParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThreeParallelProperties_1
+
+:ThreeParallelProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :ThreeParallelPropertiesDomain ;
+                           
+                           rdfs:range :FourParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThreeParallelProperties_2
+
+:ThreeParallelProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :ThreeParallelPropertiesDomain ;
+                           
+                           rdfs:range :FourParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThreeParallelProperties_3
+
+:ThreeParallelProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :ThreeParallelPropertiesDomain ;
+                           
+                           rdfs:range :FourParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TwoParallelProperties_1
+
+:TwoParallelProperties_1 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :TwoParallelPropertiesDomain ;
+                         
+                         rdfs:range :ThreeParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TwoParallelProperties_2
+
+:TwoParallelProperties_2 rdf:type owl:ObjectProperty ;
+                         
+                         rdfs:domain :TwoParallelPropertiesDomain ;
+                         
+                         rdfs:range :ThreeParallelPropertiesDomain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/allDisjointObjectProperties_Property1
+
+:allDisjointObjectProperties_Property1 rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class1 ;
+                                       
+                                       rdfs:range :DisjointObjectProperty_Range1 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/allDisjointObjectProperties_Property2
+
+:allDisjointObjectProperties_Property2 rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class1 ;
+                                       
+                                       rdfs:range :DisjointObjectProperty_Range2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/allDisjointObjectProperties_Property3
+
+:allDisjointObjectProperties_Property3 rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class1 ;
+                                       
+                                       rdfs:range :DisjointObjectProperty_Range3 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/asymmetricProperty
+
+:asymmetricProperty rdf:type owl:ObjectProperty ,
+                             owl:AsymmetricProperty ;
+                    
+                    rdfs:domain :Class1 ;
+                    
+                    rdfs:range :AsymmetricObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_1
+
+:eightSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_2
+
+:eightSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_3
+
+:eightSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_4
+
+:eightSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_5
+
+:eightSymmetricProperties_5 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_6
+
+:eightSymmetricProperties_6 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_7
+
+:eightSymmetricProperties_7 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/eightSymmetricProperties_8
+
+:eightSymmetricProperties_8 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :EightSymmetricProperties ;
+                            
+                            rdfs:range :EightSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/equivalentObjectProperty_1
+
+:equivalentObjectProperty_1 rdf:type owl:ObjectProperty ;
+                            
+                            owl:equivalentProperty :equivalentObjectProperty_2 ;
+                            
+                            rdfs:domain :Class23 ;
+                            
+                            rdfs:range :EquivalentObjectProperty_Range1 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/equivalentObjectProperty_2
+
+:equivalentObjectProperty_2 rdf:type owl:ObjectProperty ;
+                            
+                            owl:equivalentProperty :equivalentObjectProperty_3 ;
+                            
+                            rdfs:domain :Class23 ;
+                            
+                            rdfs:range :EquivalentObjectProperty_Range2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/equivalentObjectProperty_3
+
+:equivalentObjectProperty_3 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :Class23 ;
+                            
+                            rdfs:range :EquivalentObjectProperty_Range3 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fiveSymmetricProperties_1
+
+:fiveSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fiveSymmetricProperties_2
+
+:fiveSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fiveSymmetricProperties_3
+
+:fiveSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fiveSymmetricProperties_4
+
+:fiveSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fiveSymmetricProperties_5
+
+:fiveSymmetricProperties_5 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FiveSymmetricProperties ;
+                           
+                           rdfs:range :FiveSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fourSymmetricProperties_1
+
+:fourSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FourSymmetricProperties ;
+                           
+                           rdfs:range :FourSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fourSymmetricProperties_2
+
+:fourSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FourSymmetricProperties ;
+                           
+                           rdfs:range :FourSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fourSymmetricProperties_3
+
+:fourSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FourSymmetricProperties ;
+                           
+                           rdfs:range :FourSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/fourSymmetricProperties_4
+
+:fourSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                           
+                           rdfs:domain :FourSymmetricProperties ;
+                           
+                           rdfs:range :FourSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/functionalObjectProperty
+
+:functionalObjectProperty rdf:type owl:ObjectProperty ,
+                                   owl:FunctionalProperty ;
+                          
+                          rdfs:domain :Class23 ;
+                          
+                          rdfs:range :FunctionalObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/hasKeyProperty_2
+
+:hasKeyProperty_2 rdf:type owl:ObjectProperty ;
+                  
+                  rdfs:domain :HasKeyClass ;
+                  
+                  rdfs:range :HasKeyPropertyRange_2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/hasSelfProperty
+
+:hasSelfProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/inverseFunctionalObjectProperty
+
+:inverseFunctionalObjectProperty rdf:type owl:ObjectProperty ,
+                                          owl:InverseFunctionalProperty ;
+                                 
+                                 rdfs:domain :Class23 ;
+                                 
+                                 rdfs:range :InverseFunctionalObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/inverseProperty
+
+:inverseProperty rdf:type owl:ObjectProperty ;
+                 
+                 owl:inverseOf :nonInverseProperty ;
+                 
+                 rdfs:domain :InverseOfPropertyRange ;
+                 
+                 rdfs:range :Class23 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/irreflexiveObjectProperty
+
+:irreflexiveObjectProperty rdf:type owl:ObjectProperty ,
+                                    owl:IrreflexiveProperty ;
+                           
+                           rdfs:domain :Class23 ;
+                           
+                           rdfs:range :IrreflexiveObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/negativeObjectPropertyAssertionProperty
+
+:negativeObjectPropertyAssertionProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/noDomainAndRangeObjectProperty
+
+:noDomainAndRangeObjectProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/noDomainObjectProperty
+
+:noDomainObjectProperty rdf:type owl:ObjectProperty ;
+                        
+                        rdfs:range :Range .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/noRangeObjectProperty
+
+:noRangeObjectProperty rdf:type owl:ObjectProperty ;
+                       
+                       rdfs:domain :Domain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/nonInverseProperty
+
+:nonInverseProperty rdf:type owl:ObjectProperty ;
+                    
+                    rdfs:domain :Class23 ;
+                    
+                    rdfs:range :InverseOfPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectAllValuesFromProperty
+
+:objectAllValuesFromProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectExactCardinalityProperty
+
+:objectExactCardinalityProperty rdf:type owl:ObjectProperty ;
+                                
+                                rdfs:domain :Class1 ;
+                                
+                                rdfs:range :ObjectExactCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectExactCardinalityProperty_Lite
+
+:objectExactCardinalityProperty_Lite rdf:type owl:ObjectProperty ;
+                                     
+                                     rdfs:domain :Class18 ;
+                                     
+                                     rdfs:range :ObjectExactCardinalityRange_Lite .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectExactQualifiedCardinalityProperty
+
+:objectExactQualifiedCardinalityProperty rdf:type owl:ObjectProperty ;
+                                         
+                                         rdfs:domain :Class40 ;
+                                         
+                                         rdfs:range :ObjectExactQualifiedCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectHasValueProperty
+
+:objectHasValueProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMaxCardinalityProperty
+
+:objectMaxCardinalityProperty rdf:type owl:ObjectProperty ;
+                              
+                              rdfs:domain :Class23 ;
+                              
+                              rdfs:range :ObjectMaxCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMaxCardinalityProperty_LiteRL
+
+:objectMaxCardinalityProperty_LiteRL rdf:type owl:ObjectProperty ;
+                                     
+                                     rdfs:domain :Class23 ;
+                                     
+                                     rdfs:range :ObjectMaxCardinalityRange_LiteRL .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMaxQualifiedCardinalityProperty
+
+:objectMaxQualifiedCardinalityProperty rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class40 ;
+                                       
+                                       rdfs:range :ObjectMaxQualifiedCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMaxQualifiedCardinalityProperty_RL
+
+:objectMaxQualifiedCardinalityProperty_RL rdf:type owl:ObjectProperty ;
+                                          
+                                          rdfs:domain :Class40 ;
+                                          
+                                          rdfs:range :ObjectMaxQualifiedCardinalityRange_RL .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMinCardinalityProperty
+
+:objectMinCardinalityProperty rdf:type owl:ObjectProperty ;
+                              
+                              rdfs:domain :Class40 ;
+                              
+                              rdfs:range :ObjectMinCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMinCardinalityProperty_Lite
+
+:objectMinCardinalityProperty_Lite rdf:type owl:ObjectProperty ;
+                                   
+                                   rdfs:domain :Class40 ;
+                                   
+                                   rdfs:range :ObjectMinCardinalityRange_Lite .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectMinQualifiedCardinalityProperty
+
+:objectMinQualifiedCardinalityProperty rdf:type owl:ObjectProperty ;
+                                       
+                                       rdfs:domain :Class40 ;
+                                       
+                                       rdfs:range :ObjectMinQualifiedCardinalityRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectProperty
+
+:objectProperty rdf:type owl:ObjectProperty ;
+                
+                rdfs:domain :Class1 ;
+                
+                rdfs:range :ObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectPropertyDisjointWith_Property1
+
+:objectPropertyDisjointWith_Property1 rdf:type owl:ObjectProperty ;
+                                      
+                                      rdfs:domain :Class40 ;
+                                      
+                                      rdfs:range :ObjectPropertyDisjointWith_Range1 ;
+                                      
+                                      owl:propertyDisjointWith :objectPropertyDisjointWith_Property2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectPropertyDisjointWith_Property2
+
+:objectPropertyDisjointWith_Property2 rdf:type owl:ObjectProperty ;
+                                      
+                                      rdfs:domain :Class40 ;
+                                      
+                                      rdfs:range :ObjectPropertyDisjointWith_Range2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectSomeValuesFromProperty
+
+:objectSomeValuesFromProperty rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/objectSomeValuesFromProperty_RL
+
+:objectSomeValuesFromProperty_RL rdf:type owl:ObjectProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/oneSymmetricProperty_1
+
+:oneSymmetricProperty_1 rdf:type owl:ObjectProperty ;
+                        
+                        rdfs:domain :OneSymmetricProperty ;
+                        
+                        rdfs:range :OneSymmetricProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/propertyChainProperty_DoubleStep
+
+:propertyChainProperty_DoubleStep rdf:type owl:ObjectProperty ;
+                                  
+                                  rdfs:domain :PropertyChainEnd ;
+                                  
+                                  rdfs:range :Class40 ;
+                                  
+                                  owl:propertyChainAxiom ( :propertyChainProperty_SingleStep
+                                                           :propertyChainProperty_SingleStep
+                                                         ) .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/propertyChainProperty_SingleStep
+
+:propertyChainProperty_SingleStep rdf:type owl:ObjectProperty ;
+                                  
+                                  rdfs:domain :PropertyChainEnd ,
+                                              :PropertyChainMiddle ;
+                                  
+                                  rdfs:range :Class40 ,
+                                             :PropertyChainMiddle .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/propertyWithInfos
+
+:propertyWithInfos rdf:type owl:ObjectProperty ;
+                   
+                   rdfs:domain :Class57 ;
+                   
+                   rdfs:range :ClassWithInfos ;
+                   
+                   rdfs:comment "Comment of a property"@en ,
+                                "Comment of a property (undefined language)"^^xsd:string ,
+                                "Kommentar einer Property"@de ,
+                                "プロパティのコメント"@ja ;
+                   
+                   rdfs:label "Bezeichnung einer Property"@de ,
+                              "Label of a property"@en ,
+                              "Label of a property (undefined language)"^^xsd:string ,
+                              "プロパティの指定"@ja .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/reflexiveObjectProperty
+
+:reflexiveObjectProperty rdf:type owl:ObjectProperty ,
+                                  owl:ReflexiveProperty ;
+                         
+                         rdfs:domain :Class57 ;
+                         
+                         rdfs:range :ReflexiveObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_1
+
+:sevenSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_2
+
+:sevenSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_3
+
+:sevenSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_4
+
+:sevenSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_5
+
+:sevenSymmetricProperties_5 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_6
+
+:sevenSymmetricProperties_6 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sevenSymmetricProperties_7
+
+:sevenSymmetricProperties_7 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :SevenSymmetricProperties ;
+                            
+                            rdfs:range :SevenSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sixSymmetricProperties_1
+
+:sixSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sixSymmetricProperties_2
+
+:sixSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sixSymmetricProperties_3
+
+:sixSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sixSymmetricProperties_4
+
+:sixSymmetricProperties_4 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sixSymmetricProperties_5
+
+:sixSymmetricProperties_5 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/sixSymmetricProperties_6
+
+:sixSymmetricProperties_6 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :SixSymmetricProperties ;
+                          
+                          rdfs:range :SixSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/subObjectProperty
+
+:subObjectProperty rdf:type owl:ObjectProperty ;
+                   
+                   rdfs:subPropertyOf :superObjectProperty ;
+                   
+                   rdfs:domain :Class57 ;
+                   
+                   rdfs:range :Class66 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/superObjectProperty
+
+:superObjectProperty rdf:type owl:ObjectProperty ;
+                     
+                     rdfs:domain :Class66 ;
+                     
+                     rdfs:range :Class67 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/symmetricObjectProperty
+
+:symmetricObjectProperty rdf:type owl:ObjectProperty ,
+                                  owl:SymmetricProperty ;
+                         
+                         rdfs:domain :Class57 ;
+                         
+                         rdfs:range :SymmetricObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/threeSymmetricProperties_1
+
+:threeSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :ThreeSymmetricProperties ;
+                            
+                            rdfs:range :ThreeSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/threeSymmetricProperties_2
+
+:threeSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :ThreeSymmetricProperties ;
+                            
+                            rdfs:range :ThreeSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/threeSymmetricProperties_3
+
+:threeSymmetricProperties_3 rdf:type owl:ObjectProperty ;
+                            
+                            rdfs:domain :ThreeSymmetricProperties ;
+                            
+                            rdfs:range :ThreeSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/transitiveObjectProperty
+
+:transitiveObjectProperty rdf:type owl:ObjectProperty ,
+                                   owl:TransitiveProperty ;
+                          
+                          rdfs:domain :Class57 ;
+                          
+                          rdfs:range :TransitiveObjectPropertyRange .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/twoSymmetricProperties_1
+
+:twoSymmetricProperties_1 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :TwoSymmetricProperties ;
+                          
+                          rdfs:range :TwoSymmetricProperties .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/twoSymmetricProperties_2
+
+:twoSymmetricProperties_2 rdf:type owl:ObjectProperty ;
+                          
+                          rdfs:domain :TwoSymmetricProperties ;
+                          
+                          rdfs:range :TwoSymmetricProperties .
+
+
+
+###  http://www.w3.org/2002/07/owl#bottomObjectProperty
+
+owl:bottomObjectProperty rdfs:domain :Class1 ;
+                         
+                         rdfs:range :BottomObjectPropertyRange .
+
+
+
+###  http://www.w3.org/2002/07/owl#topObjectProperty
+
+owl:topObjectProperty rdfs:domain :Class1 ;
+                      
+                      rdfs:range :TopObjectPropertyRange .
+
+
+
+
+
+#################################################################
+#
+#    Data properties
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataUnionOf
+
+:DataUnionOf rdf:type owl:DatatypeProperty ;
+             
+             rdfs:domain :Class57 ;
+             
+             rdfs:range [ rdf:type rdfs:Datatype ;
+                          owl:unionOf ( :DataUnionOf_Datatype1
+                                        :DataUnionOf_Datatype2
+                                      )
+                        ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/allDisjointDataProperties_Property1
+
+:allDisjointDataProperties_Property1 rdf:type owl:DatatypeProperty ;
+                                     
+                                     rdfs:domain :Class1 ;
+                                     
+                                     rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/allDisjointDataProperties_Property2
+
+:allDisjointDataProperties_Property2 rdf:type owl:DatatypeProperty ;
+                                     
+                                     rdfs:domain :Class1 ;
+                                     
+                                     rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/allDisjointDataProperties_Property3
+
+:allDisjointDataProperties_Property3 rdf:type owl:DatatypeProperty ;
+                                     
+                                     rdfs:domain :Class1 ;
+                                     
+                                     rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataAllValuesFromProperty
+
+:dataAllValuesFromProperty rdf:type owl:DatatypeProperty ;
+                           
+                           rdfs:domain :Class1 ;
+                           
+                           rdfs:range xsd:integer .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataComplementOfProperty
+
+:dataComplementOfProperty rdf:type owl:DatatypeProperty ;
+                          
+                          rdfs:domain :Class18 ;
+                          
+                          rdfs:range [ rdf:type rdfs:Datatype ;
+                                       owl:datatypeComplementOf xsd:string
+                                     ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataExactCardinality
+
+:dataExactCardinality rdf:type owl:DatatypeProperty ;
+                      
+                      rdfs:domain :Class1 ;
+                      
+                      rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataExactQualifiedCardinality
+
+:dataExactQualifiedCardinality rdf:type owl:DatatypeProperty ;
+                               
+                               rdfs:domain :Class57 ;
+                               
+                               rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataHasValueProperty
+
+:dataHasValueProperty rdf:type owl:DatatypeProperty ;
+                      
+                      rdfs:domain :Class23 ;
+                      
+                      rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataMaxCardinality
+
+:dataMaxCardinality rdf:type owl:DatatypeProperty ;
+                    
+                    rdfs:domain :Class23 ;
+                    
+                    rdfs:range xsd:float .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataMaxCardinality_RL
+
+:dataMaxCardinality_RL rdf:type owl:DatatypeProperty ;
+                       
+                       rdfs:domain :Class40 ;
+                       
+                       rdfs:range xsd:float .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataMaxQualifiedCardinality
+
+:dataMaxQualifiedCardinality rdf:type owl:DatatypeProperty ;
+                             
+                             rdfs:domain :Class40 ;
+                             
+                             rdfs:range rdfs:Literal .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataMaxQualifiedCardinality_RL
+
+:dataMaxQualifiedCardinality_RL rdf:type owl:DatatypeProperty ;
+                                
+                                rdfs:domain :Class40 ;
+                                
+                                rdfs:range rdfs:Literal .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataMinCardinality
+
+:dataMinCardinality rdf:type owl:DatatypeProperty ;
+                    
+                    rdfs:domain :Class40 ;
+                    
+                    rdfs:range xsd:boolean .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataMinQualifiedCardinality
+
+:dataMinQualifiedCardinality rdf:type owl:DatatypeProperty ;
+                             
+                             rdfs:domain :Class40 ;
+                             
+                             rdfs:range xsd:float .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataPropertyDisjointWith_Property1
+
+:dataPropertyDisjointWith_Property1 rdf:type owl:DatatypeProperty ;
+                                    
+                                    rdfs:domain :Class40 ;
+                                    
+                                    rdfs:range xsd:integer ;
+                                    
+                                    owl:propertyDisjointWith :dataPropertyDisjointWith_Property2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataPropertyDisjointWith_Property2
+
+:dataPropertyDisjointWith_Property2 rdf:type owl:DatatypeProperty ;
+                                    
+                                    rdfs:domain :Class40 ;
+                                    
+                                    rdfs:range xsd:decimal .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataSomeValuesFromProperty
+
+:dataSomeValuesFromProperty rdf:type owl:DatatypeProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/dataSomeValuesFromProperty_RL
+
+:dataSomeValuesFromProperty_RL rdf:type owl:DatatypeProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/datatypeIntersectionOfProperty
+
+:datatypeIntersectionOfProperty rdf:type owl:DatatypeProperty ;
+                                
+                                rdfs:domain :Class23 ;
+                                
+                                rdfs:range [ rdf:type rdfs:Datatype ;
+                                             owl:intersectionOf ( :DatatypeIntersectionOf_Datatype1
+                                                                  :DatatypeIntersectionOf_Datatype2
+                                                                )
+                                           ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/datatypeIntersectionOfProperty_OWL2
+
+:datatypeIntersectionOfProperty_OWL2 rdf:type owl:DatatypeProperty ;
+                                     
+                                     rdfs:domain :Class23 ;
+                                     
+                                     rdfs:range [ rdf:type rdfs:Datatype ;
+                                                  owl:intersectionOf ( xsd:dateTime
+                                                                       xsd:string
+                                                                     )
+                                                ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/datatypeProperty
+
+:datatypeProperty rdf:type owl:DatatypeProperty ;
+                  
+                  rdfs:domain :Class18 ;
+                  
+                  rdfs:range xsd:integer .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/datatypeRestrictionProperty
+
+:datatypeRestrictionProperty rdf:type owl:DatatypeProperty ;
+                             
+                             rdfs:domain :Class57 ;
+                             
+                             rdfs:range [ rdf:type rdfs:Datatype ;
+                                          owl:onDatatype :DatatypeRestrictionDatatype ;
+                                          owl:withRestrictions ( [ xsd:minLength 10
+                                                                 ]
+                                                                 [ xsd:pattern "DatatypeRestrictionLiteral"^^xsd:string
+                                                                 ]
+                                                               )
+                                        ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/equivalentDataProperty_1
+
+:equivalentDataProperty_1 rdf:type owl:DatatypeProperty ;
+                          
+                          owl:equivalentProperty :equivalentDataProperty_2 ;
+                          
+                          rdfs:domain :Class23 ;
+                          
+                          rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/equivalentDataProperty_2
+
+:equivalentDataProperty_2 rdf:type owl:DatatypeProperty ;
+                          
+                          owl:equivalentProperty :equivalentDataProperty_3 ;
+                          
+                          rdfs:domain :Class23 ;
+                          
+                          rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/equivalentDataProperty_3
+
+:equivalentDataProperty_3 rdf:type owl:DatatypeProperty ;
+                          
+                          rdfs:domain :Class23 ;
+                          
+                          rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/functionalDataProperty
+
+:functionalDataProperty rdf:type owl:DatatypeProperty ,
+                                 owl:FunctionalProperty ;
+                        
+                        rdfs:domain :Class23 ;
+                        
+                        rdfs:range xsd:nonNegativeInteger .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/hasKeyProperty_1
+
+:hasKeyProperty_1 rdf:type owl:DatatypeProperty ;
+                  
+                  rdfs:domain :HasKeyClass ;
+                  
+                  rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/negativeDataPropertyAssertionProperty
+
+:negativeDataPropertyAssertionProperty rdf:type owl:DatatypeProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/noDomainAndRangeDataProperty
+
+:noDomainAndRangeDataProperty rdf:type owl:DatatypeProperty .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/noDomainDataProperty
+
+:noDomainDataProperty rdf:type owl:DatatypeProperty ;
+                      
+                      rdfs:range rdfs:Literal .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/noRangeDataProperty
+
+:noRangeDataProperty rdf:type owl:DatatypeProperty ;
+                     
+                     rdfs:domain :Domain .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/subDataProperty
+
+:subDataProperty rdf:type owl:DatatypeProperty ;
+                 
+                 rdfs:subPropertyOf :superDataProperty ;
+                 
+                 rdfs:domain :Class57 ;
+                 
+                 rdfs:range xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/superDataProperty
+
+:superDataProperty rdf:type owl:DatatypeProperty ;
+                   
+                   rdfs:domain :Class57 ;
+                   
+                   rdfs:range xsd:string .
+
+
+
+###  http://www.w3.org/2002/07/owl#bottomDataProperty
+
+owl:bottomDataProperty rdfs:domain :Class1 ;
+                       
+                       rdfs:range xsd:integer .
+
+
+
+###  http://www.w3.org/2002/07/owl#topDataProperty
+
+owl:topDataProperty rdfs:domain :Class57 ;
+                    
+                    rdfs:range xsd:integer .
+
+
+
+
+
+#################################################################
+#
+#    Classes
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDisjointClasses_Class1
+
+:AllDisjointClasses_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDisjointClasses_Class2
+
+:AllDisjointClasses_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDisjointClasses_Class3
+
+:AllDisjointClasses_Class3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AsymmetricObjectPropertyRange
+
+:AsymmetricObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/BottomObjectPropertyRange
+
+:BottomObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class1
+
+:Class1 rdf:type owl:Class ;
+        
+        :customAnnotationProperty "Custom Annotation Value"^^xsd:string .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class18
+
+:Class18 rdf:type owl:Class ;
+         
+         owl:equivalentClass :EquivalentClass_1 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class23
+
+:Class23 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class40
+
+:Class40 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class57
+
+:Class57 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class66
+
+:Class66 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Class67
+
+:Class67 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ClassWithInfos
+
+:ClassWithInfos rdfs:comment "Comment of a class"@en ,
+                             "Comment of a class (undefined language)"^^xsd:string ,
+                             "Kommentar einer Klasse"@de ,
+                             "どうもありがとうミスターロボット"@ja ;
+                
+                rdfs:label "Bezeichnung einer Klasse"@de ,
+                           "Label of a class"@en ,
+                           "Label of a class (undefined language)"^^xsd:string ,
+                           "どうもありがとうミスターロボット"@ja .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataAllValuesFrom
+
+:DataAllValuesFrom rdf:type owl:Class ;
+                   
+                   rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                     owl:onProperty :dataAllValuesFromProperty ;
+                                     owl:allValuesFrom xsd:integer
+                                   ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataExactCardinalityRange
+
+:DataExactCardinalityRange rdf:type owl:Class ;
+                           
+                           rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                             owl:onProperty :dataExactCardinality ;
+                                             owl:cardinality "11"^^xsd:nonNegativeInteger
+                                           ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataExactQualifiedCardinalityRange
+
+:DataExactQualifiedCardinalityRange rdf:type owl:Class ;
+                                    
+                                    rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                      owl:onProperty :dataExactQualifiedCardinality ;
+                                                      owl:qualifiedCardinality "12"^^xsd:nonNegativeInteger ;
+                                                      owl:onDataRange xsd:dateTime
+                                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataHasValue
+
+:DataHasValue rdf:type owl:Class ;
+              
+              rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                owl:onProperty :dataHasValueProperty ;
+                                owl:hasValue 6
+                              ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataMaxCardinalityRange
+
+:DataMaxCardinalityRange rdf:type owl:Class ;
+                         
+                         rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                           owl:onProperty :dataMaxCardinality ;
+                                           owl:maxCardinality "19"^^xsd:nonNegativeInteger
+                                         ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataMaxCardinalityRange_RL
+
+:DataMaxCardinalityRange_RL rdf:type owl:Class ;
+                            
+                            rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                              owl:onProperty :dataMaxCardinality_RL ;
+                                              owl:maxCardinality "1"^^xsd:nonNegativeInteger
+                                            ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataMaxQualifiedCardinalityRange
+
+:DataMaxQualifiedCardinalityRange rdf:type owl:Class ;
+                                  
+                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                    owl:onProperty :dataMaxQualifiedCardinality ;
+                                                    owl:maxQualifiedCardinality "18"^^xsd:nonNegativeInteger ;
+                                                    owl:onDataRange xsd:byte
+                                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataMaxQualifiedCardinalityRange_RL
+
+:DataMaxQualifiedCardinalityRange_RL rdf:type owl:Class ;
+                                     
+                                     rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                       owl:onProperty :dataMaxQualifiedCardinality_RL ;
+                                                       owl:maxQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
+                                                       owl:onDataRange xsd:byte
+                                                     ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataMinCardinalityRange
+
+:DataMinCardinalityRange rdf:type owl:Class ;
+                         
+                         rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                           owl:onProperty :dataMinCardinality ;
+                                           owl:minCardinality "3"^^xsd:nonNegativeInteger
+                                         ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataMinQualifiedCardinalityRange
+
+:DataMinQualifiedCardinalityRange rdf:type owl:Class ;
+                                  
+                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                    owl:onProperty :dataMinQualifiedCardinality ;
+                                                    owl:minQualifiedCardinality "9"^^xsd:nonNegativeInteger ;
+                                                    owl:onDataRange xsd:dateTime
+                                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataSomeValuesFrom
+
+:DataSomeValuesFrom rdf:type owl:Class ;
+                    
+                    rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                      owl:onProperty :dataSomeValuesFromProperty ;
+                                      owl:someValuesFrom xsd:dateTime
+                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DataSomeValuesFrom_RL
+
+:DataSomeValuesFrom_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DeprecatedClass
+
+:DeprecatedClass rdf:type owl:Class ;
+                 
+                 owl:deprecated "true"^^xsd:boolean .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DeprecatedPropertyRange
+
+:DeprecatedPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointObjectProperty_Range1
+
+:DisjointObjectProperty_Range1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointObjectProperty_Range2
+
+:DisjointObjectProperty_Range2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointObjectProperty_Range3
+
+:DisjointObjectProperty_Range3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointUnion
+
+:DisjointUnion rdf:type owl:Class ;
+               
+               owl:disjointUnionOf ( :DisjointUnion_Class1
+                                     :DisjointUnion_Class2
+                                   ) .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointUnion_Class1
+
+:DisjointUnion_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointUnion_Class2
+
+:DisjointUnion_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointWith_Class1
+
+:DisjointWith_Class1 rdf:type owl:Class ;
+                     
+                     owl:disjointWith :DisjointWith_Class2 ,
+                                      :DisjointWith_Class3 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointWith_Class2
+
+:DisjointWith_Class2 rdf:type owl:Class ;
+                     
+                     owl:disjointWith :DisjointWith_Class3 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/DisjointWith_Class3
+
+:DisjointWith_Class3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Domain
+
+:Domain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelPropertiesDomain
+
+:EightParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightParallelPropertiesRange
+
+:EightParallelPropertiesRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EightSymmetricProperties
+
+:EightSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EquivalentClass_1
+
+:EquivalentClass_1 rdf:type owl:Class ;
+                   
+                   owl:equivalentClass :EquivalentClass_2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EquivalentClass_2
+
+:EquivalentClass_2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EquivalentObjectProperty_Range1
+
+:EquivalentObjectProperty_Range1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EquivalentObjectProperty_Range2
+
+:EquivalentObjectProperty_Range2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/EquivalentObjectProperty_Range3
+
+:EquivalentObjectProperty_Range3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveParallelPropertiesDomain
+
+:FiveParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FiveSymmetricProperties
+
+:FiveSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FourParallelPropertiesDomain
+
+:FourParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FourSymmetricProperties
+
+:FourSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/FunctionalObjectPropertyRange
+
+:FunctionalObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HasKeyClass
+
+:HasKeyClass rdf:type owl:Class ;
+             
+             owl:hasKey ( :hasKeyProperty_2
+                          :hasKeyProperty_1
+                        ) .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HasKeyPropertyRange_2
+
+:HasKeyPropertyRange_2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HasSelfClass
+
+:HasSelfClass rdf:type owl:Class ;
+              
+              owl:equivalentClass [ rdf:type owl:Restriction ;
+                                    owl:onProperty :hasSelfProperty ;
+                                    owl:hasSelf "true"^^xsd:boolean
+                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals
+
+:HundredIndividuals rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/InverseFunctionalObjectPropertyRange
+
+:InverseFunctionalObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/InverseOfPropertyRange
+
+:InverseOfPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/IrreflexiveObjectPropertyRange
+
+:IrreflexiveObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/NoObjectComplementOf
+
+:NoObjectComplementOf rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectAllValuesFrom
+
+:ObjectAllValuesFrom rdf:type owl:Class ;
+                     
+                     rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                       owl:onProperty :objectAllValuesFromProperty ;
+                                       owl:allValuesFrom :ObjectAllValuesFromRange
+                                     ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectAllValuesFromRange
+
+:ObjectAllValuesFromRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectComplementOf
+
+:ObjectComplementOf rdf:type owl:Class ;
+                    
+                    rdfs:subClassOf [ rdf:type owl:Class ;
+                                      owl:complementOf :NoObjectComplementOf
+                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectExactCardinalityRange
+
+:ObjectExactCardinalityRange rdf:type owl:Class ;
+                             
+                             rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                               owl:onProperty :objectExactCardinalityProperty ;
+                                               owl:cardinality "4"^^xsd:nonNegativeInteger
+                                             ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectExactCardinalityRange_Lite
+
+:ObjectExactCardinalityRange_Lite rdf:type owl:Class ;
+                                  
+                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                    owl:onProperty :objectExactCardinalityProperty_Lite ;
+                                                    owl:cardinality "1"^^xsd:nonNegativeInteger
+                                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectExactQualifiedCardinalityRange
+
+:ObjectExactQualifiedCardinalityRange rdf:type owl:Class ;
+                                      
+                                      rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                        owl:onProperty :objectExactQualifiedCardinalityProperty ;
+                                                        owl:qualifiedCardinality "1"^^xsd:nonNegativeInteger ;
+                                                        owl:onClass :ObjectExactQualifiedCardinality_Qualifier
+                                                      ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectExactQualifiedCardinality_Qualifier
+
+:ObjectExactQualifiedCardinality_Qualifier rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectHasValue
+
+:ObjectHasValue rdf:type owl:Class ;
+                
+                rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                  owl:onProperty :objectHasValueProperty ;
+                                  owl:hasValue :ObjectHasValue_Individual
+                                ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectIntersectionOf
+
+:ObjectIntersectionOf rdf:type owl:Class ;
+                      
+                      owl:equivalentClass [ owl:intersectionOf ( :ObjectIntersectionOf_Class1
+                                                                 :ObjectIntersectionOf_Class2
+                                                               ) ;
+                                            rdf:type owl:Class
+                                          ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectIntersectionOf_Class1
+
+:ObjectIntersectionOf_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectIntersectionOf_Class2
+
+:ObjectIntersectionOf_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectIntersectionOf_QL
+
+:ObjectIntersectionOf_QL rdf:type owl:Class ;
+                         
+                         rdfs:subClassOf [ owl:intersectionOf ( :ObjectIntersectionOf_QL_Class1
+                                                                :ObjectIntersectionOf_QL_Class2
+                                                              ) ;
+                                           rdf:type owl:Class
+                                         ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectIntersectionOf_QL_Class1
+
+:ObjectIntersectionOf_QL_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectIntersectionOf_QL_Class2
+
+:ObjectIntersectionOf_QL_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMaxCardinalityRange
+
+:ObjectMaxCardinalityRange rdf:type owl:Class ;
+                           
+                           rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                             owl:onProperty :objectMaxCardinalityProperty ;
+                                             owl:maxCardinality "8"^^xsd:nonNegativeInteger
+                                           ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMaxCardinalityRange_LiteRL
+
+:ObjectMaxCardinalityRange_LiteRL rdf:type owl:Class ;
+                                  
+                                  rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                    owl:onProperty :objectMaxCardinalityProperty_LiteRL ;
+                                                    owl:maxCardinality "1"^^xsd:nonNegativeInteger
+                                                  ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMaxQualifiedCardinalityRange
+
+:ObjectMaxQualifiedCardinalityRange rdf:type owl:Class ;
+                                    
+                                    rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                      owl:onProperty :objectMaxQualifiedCardinalityProperty ;
+                                                      owl:maxQualifiedCardinality "3"^^xsd:nonNegativeInteger ;
+                                                      owl:onClass :ObjectMaxQualifiedCardinality_Qualifier
+                                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMaxQualifiedCardinalityRange_RL
+
+:ObjectMaxQualifiedCardinalityRange_RL rdf:type owl:Class ;
+                                       
+                                       rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                         owl:onProperty :objectMaxQualifiedCardinalityProperty_RL ;
+                                                         owl:maxQualifiedCardinality "0"^^xsd:nonNegativeInteger ;
+                                                         owl:onClass :ObjectMaxQualifiedCardinality_RL_Qualifier
+                                                       ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMaxQualifiedCardinality_Qualifier
+
+:ObjectMaxQualifiedCardinality_Qualifier rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMaxQualifiedCardinality_RL_Qualifier
+
+:ObjectMaxQualifiedCardinality_RL_Qualifier rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMinCardinalityRange
+
+:ObjectMinCardinalityRange rdf:type owl:Class ;
+                           
+                           rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                             owl:onProperty :objectMinCardinalityProperty ;
+                                             owl:minCardinality "2"^^xsd:nonNegativeInteger
+                                           ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMinCardinalityRange_Lite
+
+:ObjectMinCardinalityRange_Lite rdf:type owl:Class ;
+                                
+                                rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                  owl:onProperty :objectMinCardinalityProperty_Lite ;
+                                                  owl:minCardinality "0"^^xsd:nonNegativeInteger
+                                                ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMinQualifiedCardinalityRange
+
+:ObjectMinQualifiedCardinalityRange rdf:type owl:Class ;
+                                    
+                                    rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                                      owl:onProperty :objectMinQualifiedCardinalityProperty ;
+                                                      owl:minQualifiedCardinality "1"^^xsd:nonNegativeInteger ;
+                                                      owl:onClass :ObjectMinQualifiedCardinality_Qualifier
+                                                    ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectMinQualifiedCardinality_Qualifier
+
+:ObjectMinQualifiedCardinality_Qualifier rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf
+
+:ObjectOneOf rdf:type owl:Class ;
+             
+             owl:equivalentClass [ rdf:type owl:Class ;
+                                   owl:oneOf ( :ObjectOneOf_Individual1
+                                               :ObjectOneOf_Individual2
+                                             )
+                                 ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_EL
+
+:ObjectOneOf_EL rdf:type owl:Class ;
+                
+                rdfs:subClassOf [ rdf:type owl:Class ;
+                                  owl:oneOf ( :ObjectOneOf_EL_Individual
+                                            )
+                                ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_RL
+
+:ObjectOneOf_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectPropertyDisjointWith_Range1
+
+:ObjectPropertyDisjointWith_Range1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectPropertyDisjointWith_Range2
+
+:ObjectPropertyDisjointWith_Range2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectPropertyRange
+
+:ObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectSomeValuesFrom
+
+:ObjectSomeValuesFrom rdf:type owl:Class ;
+                      
+                      rdfs:subClassOf [ rdf:type owl:Restriction ;
+                                        owl:onProperty :objectSomeValuesFromProperty ;
+                                        owl:someValuesFrom :ObjectSomeValuesFromRange
+                                      ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectSomeValuesFromRange
+
+:ObjectSomeValuesFromRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectSomeValuesFromRange_RL
+
+:ObjectSomeValuesFromRange_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectSomeValuesFrom_RL
+
+:ObjectSomeValuesFrom_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf
+
+:ObjectUnionOf rdf:type owl:Class ;
+               
+               rdfs:subClassOf [ rdf:type owl:Class ;
+                                 owl:unionOf ( :ObjectUnionOf_Class1
+                                               :ObjectUnionOf_Class2
+                                               :ObjectUnionOf_Class3
+                                             )
+                               ] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_Class1
+
+:ObjectUnionOf_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_Class2
+
+:ObjectUnionOf_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_Class3
+
+:ObjectUnionOf_Class3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_RL
+
+:ObjectUnionOf_RL rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_RL_Class1
+
+:ObjectUnionOf_RL_Class1 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_RL_Class2
+
+:ObjectUnionOf_RL_Class2 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectUnionOf_RL_Class3
+
+:ObjectUnionOf_RL_Class3 rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/OneSymmetricProperty
+
+:OneSymmetricProperty rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/PropertyChainEnd
+
+:PropertyChainEnd rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/PropertyChainMiddle
+
+:PropertyChainMiddle rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/Range
+
+:Range rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ReflexiveObjectPropertyRange
+
+:ReflexiveObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenParallelPropertiesDomain
+
+:SevenParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SevenSymmetricProperties
+
+:SevenSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixParallelPropertiesDomain
+
+:SixParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SixSymmetricProperties
+
+:SixSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SubClass
+
+:SubClass rdf:type owl:Class ;
+          
+          rdfs:subClassOf :SuperClass .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SuperClass
+
+:SuperClass rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SymmetricObjectPropertyRange
+
+:SymmetricObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals
+
+:TenIndividuals rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals
+
+:ThousandIndividuals rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThreeParallelPropertiesDomain
+
+:ThreeParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThreeSymmetricProperties
+
+:ThreeSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TopObjectPropertyRange
+
+:TopObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TransitiveObjectPropertyRange
+
+:TransitiveObjectPropertyRange rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TwoParallelPropertiesDomain
+
+:TwoParallelPropertiesDomain rdf:type owl:Class .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TwoSymmetricProperties
+
+:TwoSymmetricProperties rdf:type owl:Class .
+
+
+
+###  http://www.w3.org/2002/07/owl#Nothing
+
+owl:Nothing rdf:type owl:Class .
+
+
+
+###  http://www.w3.org/2002/07/owl#Thing
+
+owl:Thing rdf:type owl:Class .
+
+
+
+
+
+#################################################################
+#
+#    Individuals
+#
+#################################################################
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDifferent_Individual1
+
+:AllDifferent_Individual1 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDifferent_Individual2
+
+:AllDifferent_Individual2 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDifferent_Individual3
+
+:AllDifferent_Individual3 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/AllDifferent_Individual4
+
+:AllDifferent_Individual4 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_1
+
+:HundredIndividuals_1 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_10
+
+:HundredIndividuals_10 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_100
+
+:HundredIndividuals_100 rdf:type owl:NamedIndividual ,
+                                 :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_11
+
+:HundredIndividuals_11 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_12
+
+:HundredIndividuals_12 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_13
+
+:HundredIndividuals_13 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_14
+
+:HundredIndividuals_14 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_15
+
+:HundredIndividuals_15 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_16
+
+:HundredIndividuals_16 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_17
+
+:HundredIndividuals_17 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_18
+
+:HundredIndividuals_18 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_19
+
+:HundredIndividuals_19 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_2
+
+:HundredIndividuals_2 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_20
+
+:HundredIndividuals_20 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_21
+
+:HundredIndividuals_21 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_22
+
+:HundredIndividuals_22 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_23
+
+:HundredIndividuals_23 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_24
+
+:HundredIndividuals_24 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_25
+
+:HundredIndividuals_25 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_26
+
+:HundredIndividuals_26 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_27
+
+:HundredIndividuals_27 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_28
+
+:HundredIndividuals_28 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_29
+
+:HundredIndividuals_29 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_3
+
+:HundredIndividuals_3 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_30
+
+:HundredIndividuals_30 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_31
+
+:HundredIndividuals_31 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_32
+
+:HundredIndividuals_32 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_33
+
+:HundredIndividuals_33 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_34
+
+:HundredIndividuals_34 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_35
+
+:HundredIndividuals_35 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_36
+
+:HundredIndividuals_36 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_37
+
+:HundredIndividuals_37 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_38
+
+:HundredIndividuals_38 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_39
+
+:HundredIndividuals_39 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_4
+
+:HundredIndividuals_4 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_40
+
+:HundredIndividuals_40 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_41
+
+:HundredIndividuals_41 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_42
+
+:HundredIndividuals_42 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_43
+
+:HundredIndividuals_43 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_44
+
+:HundredIndividuals_44 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_45
+
+:HundredIndividuals_45 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_46
+
+:HundredIndividuals_46 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_47
+
+:HundredIndividuals_47 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_48
+
+:HundredIndividuals_48 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_49
+
+:HundredIndividuals_49 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_5
+
+:HundredIndividuals_5 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_50
+
+:HundredIndividuals_50 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_51
+
+:HundredIndividuals_51 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_52
+
+:HundredIndividuals_52 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_53
+
+:HundredIndividuals_53 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_54
+
+:HundredIndividuals_54 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_55
+
+:HundredIndividuals_55 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_56
+
+:HundredIndividuals_56 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_57
+
+:HundredIndividuals_57 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_58
+
+:HundredIndividuals_58 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_59
+
+:HundredIndividuals_59 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_6
+
+:HundredIndividuals_6 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_60
+
+:HundredIndividuals_60 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_61
+
+:HundredIndividuals_61 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_62
+
+:HundredIndividuals_62 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_63
+
+:HundredIndividuals_63 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_64
+
+:HundredIndividuals_64 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_65
+
+:HundredIndividuals_65 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_66
+
+:HundredIndividuals_66 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_67
+
+:HundredIndividuals_67 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_68
+
+:HundredIndividuals_68 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_69
+
+:HundredIndividuals_69 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_7
+
+:HundredIndividuals_7 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_70
+
+:HundredIndividuals_70 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_71
+
+:HundredIndividuals_71 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_72
+
+:HundredIndividuals_72 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_73
+
+:HundredIndividuals_73 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_74
+
+:HundredIndividuals_74 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_75
+
+:HundredIndividuals_75 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_76
+
+:HundredIndividuals_76 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_77
+
+:HundredIndividuals_77 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_78
+
+:HundredIndividuals_78 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_79
+
+:HundredIndividuals_79 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_8
+
+:HundredIndividuals_8 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_80
+
+:HundredIndividuals_80 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_81
+
+:HundredIndividuals_81 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_82
+
+:HundredIndividuals_82 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_83
+
+:HundredIndividuals_83 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_84
+
+:HundredIndividuals_84 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_85
+
+:HundredIndividuals_85 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_86
+
+:HundredIndividuals_86 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_87
+
+:HundredIndividuals_87 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_88
+
+:HundredIndividuals_88 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_89
+
+:HundredIndividuals_89 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_9
+
+:HundredIndividuals_9 rdf:type owl:NamedIndividual ,
+                               :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_90
+
+:HundredIndividuals_90 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_91
+
+:HundredIndividuals_91 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_92
+
+:HundredIndividuals_92 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_93
+
+:HundredIndividuals_93 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_94
+
+:HundredIndividuals_94 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_95
+
+:HundredIndividuals_95 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_96
+
+:HundredIndividuals_96 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_97
+
+:HundredIndividuals_97 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_98
+
+:HundredIndividuals_98 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/HundredIndividuals_99
+
+:HundredIndividuals_99 rdf:type owl:NamedIndividual ,
+                                :HundredIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/NamedIndividual
+
+:NamedIndividual rdf:type owl:NamedIndividual ,
+                          :Class40 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/NegativeDataPropertyAssertion_SourceIndividual
+
+:NegativeDataPropertyAssertion_SourceIndividual rdf:type owl:NamedIndividual .
+[ rdf:type owl:NegativePropertyAssertion ;
+  owl:sourceIndividual :NegativeDataPropertyAssertion_SourceIndividual ;
+  owl:assertionProperty :negativeDataPropertyAssertionProperty ;
+  owl:targetValue "NegativeDataPropertyAssertion_TargetValue"^^xsd:string
+] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/NegativeObjectPropertyAssertion_SourceIndividual
+
+:NegativeObjectPropertyAssertion_SourceIndividual rdf:type owl:NamedIndividual .
+[ rdf:type owl:NegativePropertyAssertion ;
+  owl:sourceIndividual :NegativeObjectPropertyAssertion_SourceIndividual ;
+  owl:assertionProperty :negativeObjectPropertyAssertionProperty ;
+  owl:targetIndividual :NegativeObjectPropertyAssertion_TargetIndividual
+] .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/NegativeObjectPropertyAssertion_TargetIndividual
+
+:NegativeObjectPropertyAssertion_TargetIndividual rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectHasValue_Individual
+
+:ObjectHasValue_Individual rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_EL_Individual
+
+:ObjectOneOf_EL_Individual rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_Individual1
+
+:ObjectOneOf_Individual1 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_Individual2
+
+:ObjectOneOf_Individual2 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_RL_Individual1
+
+:ObjectOneOf_RL_Individual1 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ObjectOneOf_RL_Individual2
+
+:ObjectOneOf_RL_Individual2 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SameAs_Individual1
+
+:SameAs_Individual1 rdf:type owl:NamedIndividual ;
+                    
+                    owl:sameAs :SameAs_Individual2 .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/SameAs_Individual2
+
+:SameAs_Individual2 rdf:type owl:NamedIndividual .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_1
+
+:TenIndividuals_1 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_10
+
+:TenIndividuals_10 rdf:type owl:NamedIndividual ,
+                            :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_2
+
+:TenIndividuals_2 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_3
+
+:TenIndividuals_3 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_4
+
+:TenIndividuals_4 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_5
+
+:TenIndividuals_5 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_6
+
+:TenIndividuals_6 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_7
+
+:TenIndividuals_7 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_8
+
+:TenIndividuals_8 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/TenIndividuals_9
+
+:TenIndividuals_9 rdf:type owl:NamedIndividual ,
+                           :TenIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_1
+
+:ThousandIndividuals_1 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_10
+
+:ThousandIndividuals_10 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_100
+
+:ThousandIndividuals_100 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_1000
+
+:ThousandIndividuals_1000 rdf:type owl:NamedIndividual ,
+                                   :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_101
+
+:ThousandIndividuals_101 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_102
+
+:ThousandIndividuals_102 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_103
+
+:ThousandIndividuals_103 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_104
+
+:ThousandIndividuals_104 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_105
+
+:ThousandIndividuals_105 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_106
+
+:ThousandIndividuals_106 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_107
+
+:ThousandIndividuals_107 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_108
+
+:ThousandIndividuals_108 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_109
+
+:ThousandIndividuals_109 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_11
+
+:ThousandIndividuals_11 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_110
+
+:ThousandIndividuals_110 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_111
+
+:ThousandIndividuals_111 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_112
+
+:ThousandIndividuals_112 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_113
+
+:ThousandIndividuals_113 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_114
+
+:ThousandIndividuals_114 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_115
+
+:ThousandIndividuals_115 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_116
+
+:ThousandIndividuals_116 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_117
+
+:ThousandIndividuals_117 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_118
+
+:ThousandIndividuals_118 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_119
+
+:ThousandIndividuals_119 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_12
+
+:ThousandIndividuals_12 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_120
+
+:ThousandIndividuals_120 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_121
+
+:ThousandIndividuals_121 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_122
+
+:ThousandIndividuals_122 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_123
+
+:ThousandIndividuals_123 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_124
+
+:ThousandIndividuals_124 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_125
+
+:ThousandIndividuals_125 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_126
+
+:ThousandIndividuals_126 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_127
+
+:ThousandIndividuals_127 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_128
+
+:ThousandIndividuals_128 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_129
+
+:ThousandIndividuals_129 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_13
+
+:ThousandIndividuals_13 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_130
+
+:ThousandIndividuals_130 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_131
+
+:ThousandIndividuals_131 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_132
+
+:ThousandIndividuals_132 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_133
+
+:ThousandIndividuals_133 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_134
+
+:ThousandIndividuals_134 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_135
+
+:ThousandIndividuals_135 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_136
+
+:ThousandIndividuals_136 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_137
+
+:ThousandIndividuals_137 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_138
+
+:ThousandIndividuals_138 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_139
+
+:ThousandIndividuals_139 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_14
+
+:ThousandIndividuals_14 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_140
+
+:ThousandIndividuals_140 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_141
+
+:ThousandIndividuals_141 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_142
+
+:ThousandIndividuals_142 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_143
+
+:ThousandIndividuals_143 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_144
+
+:ThousandIndividuals_144 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_145
+
+:ThousandIndividuals_145 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_146
+
+:ThousandIndividuals_146 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_147
+
+:ThousandIndividuals_147 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_148
+
+:ThousandIndividuals_148 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_149
+
+:ThousandIndividuals_149 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_15
+
+:ThousandIndividuals_15 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_150
+
+:ThousandIndividuals_150 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_151
+
+:ThousandIndividuals_151 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_152
+
+:ThousandIndividuals_152 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_153
+
+:ThousandIndividuals_153 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_154
+
+:ThousandIndividuals_154 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_155
+
+:ThousandIndividuals_155 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_156
+
+:ThousandIndividuals_156 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_157
+
+:ThousandIndividuals_157 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_158
+
+:ThousandIndividuals_158 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_159
+
+:ThousandIndividuals_159 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_16
+
+:ThousandIndividuals_16 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_160
+
+:ThousandIndividuals_160 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_161
+
+:ThousandIndividuals_161 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_162
+
+:ThousandIndividuals_162 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_163
+
+:ThousandIndividuals_163 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_164
+
+:ThousandIndividuals_164 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_165
+
+:ThousandIndividuals_165 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_166
+
+:ThousandIndividuals_166 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_167
+
+:ThousandIndividuals_167 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_168
+
+:ThousandIndividuals_168 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_169
+
+:ThousandIndividuals_169 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_17
+
+:ThousandIndividuals_17 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_170
+
+:ThousandIndividuals_170 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_171
+
+:ThousandIndividuals_171 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_172
+
+:ThousandIndividuals_172 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_173
+
+:ThousandIndividuals_173 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_174
+
+:ThousandIndividuals_174 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_175
+
+:ThousandIndividuals_175 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_176
+
+:ThousandIndividuals_176 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_177
+
+:ThousandIndividuals_177 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_178
+
+:ThousandIndividuals_178 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_179
+
+:ThousandIndividuals_179 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_18
+
+:ThousandIndividuals_18 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_180
+
+:ThousandIndividuals_180 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_181
+
+:ThousandIndividuals_181 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_182
+
+:ThousandIndividuals_182 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_183
+
+:ThousandIndividuals_183 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_184
+
+:ThousandIndividuals_184 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_185
+
+:ThousandIndividuals_185 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_186
+
+:ThousandIndividuals_186 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_187
+
+:ThousandIndividuals_187 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_188
+
+:ThousandIndividuals_188 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_189
+
+:ThousandIndividuals_189 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_19
+
+:ThousandIndividuals_19 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_190
+
+:ThousandIndividuals_190 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_191
+
+:ThousandIndividuals_191 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_192
+
+:ThousandIndividuals_192 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_193
+
+:ThousandIndividuals_193 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_194
+
+:ThousandIndividuals_194 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_195
+
+:ThousandIndividuals_195 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_196
+
+:ThousandIndividuals_196 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_197
+
+:ThousandIndividuals_197 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_198
+
+:ThousandIndividuals_198 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_199
+
+:ThousandIndividuals_199 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_2
+
+:ThousandIndividuals_2 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_20
+
+:ThousandIndividuals_20 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_200
+
+:ThousandIndividuals_200 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_201
+
+:ThousandIndividuals_201 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_202
+
+:ThousandIndividuals_202 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_203
+
+:ThousandIndividuals_203 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_204
+
+:ThousandIndividuals_204 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_205
+
+:ThousandIndividuals_205 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_206
+
+:ThousandIndividuals_206 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_207
+
+:ThousandIndividuals_207 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_208
+
+:ThousandIndividuals_208 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_209
+
+:ThousandIndividuals_209 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_21
+
+:ThousandIndividuals_21 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_210
+
+:ThousandIndividuals_210 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_211
+
+:ThousandIndividuals_211 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_212
+
+:ThousandIndividuals_212 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_213
+
+:ThousandIndividuals_213 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_214
+
+:ThousandIndividuals_214 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_215
+
+:ThousandIndividuals_215 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_216
+
+:ThousandIndividuals_216 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_217
+
+:ThousandIndividuals_217 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_218
+
+:ThousandIndividuals_218 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_219
+
+:ThousandIndividuals_219 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_22
+
+:ThousandIndividuals_22 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_220
+
+:ThousandIndividuals_220 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_221
+
+:ThousandIndividuals_221 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_222
+
+:ThousandIndividuals_222 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_223
+
+:ThousandIndividuals_223 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_224
+
+:ThousandIndividuals_224 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_225
+
+:ThousandIndividuals_225 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_226
+
+:ThousandIndividuals_226 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_227
+
+:ThousandIndividuals_227 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_228
+
+:ThousandIndividuals_228 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_229
+
+:ThousandIndividuals_229 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_23
+
+:ThousandIndividuals_23 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_230
+
+:ThousandIndividuals_230 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_231
+
+:ThousandIndividuals_231 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_232
+
+:ThousandIndividuals_232 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_233
+
+:ThousandIndividuals_233 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_234
+
+:ThousandIndividuals_234 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_235
+
+:ThousandIndividuals_235 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_236
+
+:ThousandIndividuals_236 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_237
+
+:ThousandIndividuals_237 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_238
+
+:ThousandIndividuals_238 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_239
+
+:ThousandIndividuals_239 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_24
+
+:ThousandIndividuals_24 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_240
+
+:ThousandIndividuals_240 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_241
+
+:ThousandIndividuals_241 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_242
+
+:ThousandIndividuals_242 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_243
+
+:ThousandIndividuals_243 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_244
+
+:ThousandIndividuals_244 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_245
+
+:ThousandIndividuals_245 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_246
+
+:ThousandIndividuals_246 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_247
+
+:ThousandIndividuals_247 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_248
+
+:ThousandIndividuals_248 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_249
+
+:ThousandIndividuals_249 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_25
+
+:ThousandIndividuals_25 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_250
+
+:ThousandIndividuals_250 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_251
+
+:ThousandIndividuals_251 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_252
+
+:ThousandIndividuals_252 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_253
+
+:ThousandIndividuals_253 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_254
+
+:ThousandIndividuals_254 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_255
+
+:ThousandIndividuals_255 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_256
+
+:ThousandIndividuals_256 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_257
+
+:ThousandIndividuals_257 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_258
+
+:ThousandIndividuals_258 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_259
+
+:ThousandIndividuals_259 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_26
+
+:ThousandIndividuals_26 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_260
+
+:ThousandIndividuals_260 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_261
+
+:ThousandIndividuals_261 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_262
+
+:ThousandIndividuals_262 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_263
+
+:ThousandIndividuals_263 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_264
+
+:ThousandIndividuals_264 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_265
+
+:ThousandIndividuals_265 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_266
+
+:ThousandIndividuals_266 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_267
+
+:ThousandIndividuals_267 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_268
+
+:ThousandIndividuals_268 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_269
+
+:ThousandIndividuals_269 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_27
+
+:ThousandIndividuals_27 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_270
+
+:ThousandIndividuals_270 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_271
+
+:ThousandIndividuals_271 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_272
+
+:ThousandIndividuals_272 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_273
+
+:ThousandIndividuals_273 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_274
+
+:ThousandIndividuals_274 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_275
+
+:ThousandIndividuals_275 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_276
+
+:ThousandIndividuals_276 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_277
+
+:ThousandIndividuals_277 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_278
+
+:ThousandIndividuals_278 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_279
+
+:ThousandIndividuals_279 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_28
+
+:ThousandIndividuals_28 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_280
+
+:ThousandIndividuals_280 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_281
+
+:ThousandIndividuals_281 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_282
+
+:ThousandIndividuals_282 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_283
+
+:ThousandIndividuals_283 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_284
+
+:ThousandIndividuals_284 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_285
+
+:ThousandIndividuals_285 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_286
+
+:ThousandIndividuals_286 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_287
+
+:ThousandIndividuals_287 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_288
+
+:ThousandIndividuals_288 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_289
+
+:ThousandIndividuals_289 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_29
+
+:ThousandIndividuals_29 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_290
+
+:ThousandIndividuals_290 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_291
+
+:ThousandIndividuals_291 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_292
+
+:ThousandIndividuals_292 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_293
+
+:ThousandIndividuals_293 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_294
+
+:ThousandIndividuals_294 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_295
+
+:ThousandIndividuals_295 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_296
+
+:ThousandIndividuals_296 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_297
+
+:ThousandIndividuals_297 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_298
+
+:ThousandIndividuals_298 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_299
+
+:ThousandIndividuals_299 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_3
+
+:ThousandIndividuals_3 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_30
+
+:ThousandIndividuals_30 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_300
+
+:ThousandIndividuals_300 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_301
+
+:ThousandIndividuals_301 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_302
+
+:ThousandIndividuals_302 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_303
+
+:ThousandIndividuals_303 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_304
+
+:ThousandIndividuals_304 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_305
+
+:ThousandIndividuals_305 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_306
+
+:ThousandIndividuals_306 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_307
+
+:ThousandIndividuals_307 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_308
+
+:ThousandIndividuals_308 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_309
+
+:ThousandIndividuals_309 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_31
+
+:ThousandIndividuals_31 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_310
+
+:ThousandIndividuals_310 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_311
+
+:ThousandIndividuals_311 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_312
+
+:ThousandIndividuals_312 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_313
+
+:ThousandIndividuals_313 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_314
+
+:ThousandIndividuals_314 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_315
+
+:ThousandIndividuals_315 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_316
+
+:ThousandIndividuals_316 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_317
+
+:ThousandIndividuals_317 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_318
+
+:ThousandIndividuals_318 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_319
+
+:ThousandIndividuals_319 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_32
+
+:ThousandIndividuals_32 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_320
+
+:ThousandIndividuals_320 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_321
+
+:ThousandIndividuals_321 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_322
+
+:ThousandIndividuals_322 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_323
+
+:ThousandIndividuals_323 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_324
+
+:ThousandIndividuals_324 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_325
+
+:ThousandIndividuals_325 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_326
+
+:ThousandIndividuals_326 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_327
+
+:ThousandIndividuals_327 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_328
+
+:ThousandIndividuals_328 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_329
+
+:ThousandIndividuals_329 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_33
+
+:ThousandIndividuals_33 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_330
+
+:ThousandIndividuals_330 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_331
+
+:ThousandIndividuals_331 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_332
+
+:ThousandIndividuals_332 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_333
+
+:ThousandIndividuals_333 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_334
+
+:ThousandIndividuals_334 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_335
+
+:ThousandIndividuals_335 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_336
+
+:ThousandIndividuals_336 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_337
+
+:ThousandIndividuals_337 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_338
+
+:ThousandIndividuals_338 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_339
+
+:ThousandIndividuals_339 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_34
+
+:ThousandIndividuals_34 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_340
+
+:ThousandIndividuals_340 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_341
+
+:ThousandIndividuals_341 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_342
+
+:ThousandIndividuals_342 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_343
+
+:ThousandIndividuals_343 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_344
+
+:ThousandIndividuals_344 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_345
+
+:ThousandIndividuals_345 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_346
+
+:ThousandIndividuals_346 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_347
+
+:ThousandIndividuals_347 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_348
+
+:ThousandIndividuals_348 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_349
+
+:ThousandIndividuals_349 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_35
+
+:ThousandIndividuals_35 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_350
+
+:ThousandIndividuals_350 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_351
+
+:ThousandIndividuals_351 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_352
+
+:ThousandIndividuals_352 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_353
+
+:ThousandIndividuals_353 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_354
+
+:ThousandIndividuals_354 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_355
+
+:ThousandIndividuals_355 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_356
+
+:ThousandIndividuals_356 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_357
+
+:ThousandIndividuals_357 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_358
+
+:ThousandIndividuals_358 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_359
+
+:ThousandIndividuals_359 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_36
+
+:ThousandIndividuals_36 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_360
+
+:ThousandIndividuals_360 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_361
+
+:ThousandIndividuals_361 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_362
+
+:ThousandIndividuals_362 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_363
+
+:ThousandIndividuals_363 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_364
+
+:ThousandIndividuals_364 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_365
+
+:ThousandIndividuals_365 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_366
+
+:ThousandIndividuals_366 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_367
+
+:ThousandIndividuals_367 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_368
+
+:ThousandIndividuals_368 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_369
+
+:ThousandIndividuals_369 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_37
+
+:ThousandIndividuals_37 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_370
+
+:ThousandIndividuals_370 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_371
+
+:ThousandIndividuals_371 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_372
+
+:ThousandIndividuals_372 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_373
+
+:ThousandIndividuals_373 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_374
+
+:ThousandIndividuals_374 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_375
+
+:ThousandIndividuals_375 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_376
+
+:ThousandIndividuals_376 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_377
+
+:ThousandIndividuals_377 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_378
+
+:ThousandIndividuals_378 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_379
+
+:ThousandIndividuals_379 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_38
+
+:ThousandIndividuals_38 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_380
+
+:ThousandIndividuals_380 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_381
+
+:ThousandIndividuals_381 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_382
+
+:ThousandIndividuals_382 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_383
+
+:ThousandIndividuals_383 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_384
+
+:ThousandIndividuals_384 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_385
+
+:ThousandIndividuals_385 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_386
+
+:ThousandIndividuals_386 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_387
+
+:ThousandIndividuals_387 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_388
+
+:ThousandIndividuals_388 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_389
+
+:ThousandIndividuals_389 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_39
+
+:ThousandIndividuals_39 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_390
+
+:ThousandIndividuals_390 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_391
+
+:ThousandIndividuals_391 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_392
+
+:ThousandIndividuals_392 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_393
+
+:ThousandIndividuals_393 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_394
+
+:ThousandIndividuals_394 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_395
+
+:ThousandIndividuals_395 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_396
+
+:ThousandIndividuals_396 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_397
+
+:ThousandIndividuals_397 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_398
+
+:ThousandIndividuals_398 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_399
+
+:ThousandIndividuals_399 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_4
+
+:ThousandIndividuals_4 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_40
+
+:ThousandIndividuals_40 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_400
+
+:ThousandIndividuals_400 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_401
+
+:ThousandIndividuals_401 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_402
+
+:ThousandIndividuals_402 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_403
+
+:ThousandIndividuals_403 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_404
+
+:ThousandIndividuals_404 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_405
+
+:ThousandIndividuals_405 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_406
+
+:ThousandIndividuals_406 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_407
+
+:ThousandIndividuals_407 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_408
+
+:ThousandIndividuals_408 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_409
+
+:ThousandIndividuals_409 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_41
+
+:ThousandIndividuals_41 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_410
+
+:ThousandIndividuals_410 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_411
+
+:ThousandIndividuals_411 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_412
+
+:ThousandIndividuals_412 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_413
+
+:ThousandIndividuals_413 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_414
+
+:ThousandIndividuals_414 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_415
+
+:ThousandIndividuals_415 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_416
+
+:ThousandIndividuals_416 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_417
+
+:ThousandIndividuals_417 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_418
+
+:ThousandIndividuals_418 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_419
+
+:ThousandIndividuals_419 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_42
+
+:ThousandIndividuals_42 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_420
+
+:ThousandIndividuals_420 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_421
+
+:ThousandIndividuals_421 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_422
+
+:ThousandIndividuals_422 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_423
+
+:ThousandIndividuals_423 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_424
+
+:ThousandIndividuals_424 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_425
+
+:ThousandIndividuals_425 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_426
+
+:ThousandIndividuals_426 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_427
+
+:ThousandIndividuals_427 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_428
+
+:ThousandIndividuals_428 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_429
+
+:ThousandIndividuals_429 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_43
+
+:ThousandIndividuals_43 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_430
+
+:ThousandIndividuals_430 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_431
+
+:ThousandIndividuals_431 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_432
+
+:ThousandIndividuals_432 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_433
+
+:ThousandIndividuals_433 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_434
+
+:ThousandIndividuals_434 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_435
+
+:ThousandIndividuals_435 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_436
+
+:ThousandIndividuals_436 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_437
+
+:ThousandIndividuals_437 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_438
+
+:ThousandIndividuals_438 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_439
+
+:ThousandIndividuals_439 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_44
+
+:ThousandIndividuals_44 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_440
+
+:ThousandIndividuals_440 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_441
+
+:ThousandIndividuals_441 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_442
+
+:ThousandIndividuals_442 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_443
+
+:ThousandIndividuals_443 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_444
+
+:ThousandIndividuals_444 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_445
+
+:ThousandIndividuals_445 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_446
+
+:ThousandIndividuals_446 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_447
+
+:ThousandIndividuals_447 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_448
+
+:ThousandIndividuals_448 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_449
+
+:ThousandIndividuals_449 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_45
+
+:ThousandIndividuals_45 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_450
+
+:ThousandIndividuals_450 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_451
+
+:ThousandIndividuals_451 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_452
+
+:ThousandIndividuals_452 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_453
+
+:ThousandIndividuals_453 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_454
+
+:ThousandIndividuals_454 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_455
+
+:ThousandIndividuals_455 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_456
+
+:ThousandIndividuals_456 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_457
+
+:ThousandIndividuals_457 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_458
+
+:ThousandIndividuals_458 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_459
+
+:ThousandIndividuals_459 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_46
+
+:ThousandIndividuals_46 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_460
+
+:ThousandIndividuals_460 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_461
+
+:ThousandIndividuals_461 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_462
+
+:ThousandIndividuals_462 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_463
+
+:ThousandIndividuals_463 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_464
+
+:ThousandIndividuals_464 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_465
+
+:ThousandIndividuals_465 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_466
+
+:ThousandIndividuals_466 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_467
+
+:ThousandIndividuals_467 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_468
+
+:ThousandIndividuals_468 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_469
+
+:ThousandIndividuals_469 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_47
+
+:ThousandIndividuals_47 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_470
+
+:ThousandIndividuals_470 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_471
+
+:ThousandIndividuals_471 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_472
+
+:ThousandIndividuals_472 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_473
+
+:ThousandIndividuals_473 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_474
+
+:ThousandIndividuals_474 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_475
+
+:ThousandIndividuals_475 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_476
+
+:ThousandIndividuals_476 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_477
+
+:ThousandIndividuals_477 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_478
+
+:ThousandIndividuals_478 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_479
+
+:ThousandIndividuals_479 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_48
+
+:ThousandIndividuals_48 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_480
+
+:ThousandIndividuals_480 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_481
+
+:ThousandIndividuals_481 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_482
+
+:ThousandIndividuals_482 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_483
+
+:ThousandIndividuals_483 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_484
+
+:ThousandIndividuals_484 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_485
+
+:ThousandIndividuals_485 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_486
+
+:ThousandIndividuals_486 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_487
+
+:ThousandIndividuals_487 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_488
+
+:ThousandIndividuals_488 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_489
+
+:ThousandIndividuals_489 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_49
+
+:ThousandIndividuals_49 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_490
+
+:ThousandIndividuals_490 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_491
+
+:ThousandIndividuals_491 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_492
+
+:ThousandIndividuals_492 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_493
+
+:ThousandIndividuals_493 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_494
+
+:ThousandIndividuals_494 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_495
+
+:ThousandIndividuals_495 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_496
+
+:ThousandIndividuals_496 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_497
+
+:ThousandIndividuals_497 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_498
+
+:ThousandIndividuals_498 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_499
+
+:ThousandIndividuals_499 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_5
+
+:ThousandIndividuals_5 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_50
+
+:ThousandIndividuals_50 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_500
+
+:ThousandIndividuals_500 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_501
+
+:ThousandIndividuals_501 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_502
+
+:ThousandIndividuals_502 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_503
+
+:ThousandIndividuals_503 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_504
+
+:ThousandIndividuals_504 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_505
+
+:ThousandIndividuals_505 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_506
+
+:ThousandIndividuals_506 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_507
+
+:ThousandIndividuals_507 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_508
+
+:ThousandIndividuals_508 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_509
+
+:ThousandIndividuals_509 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_51
+
+:ThousandIndividuals_51 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_510
+
+:ThousandIndividuals_510 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_511
+
+:ThousandIndividuals_511 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_512
+
+:ThousandIndividuals_512 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_513
+
+:ThousandIndividuals_513 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_514
+
+:ThousandIndividuals_514 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_515
+
+:ThousandIndividuals_515 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_516
+
+:ThousandIndividuals_516 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_517
+
+:ThousandIndividuals_517 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_518
+
+:ThousandIndividuals_518 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_519
+
+:ThousandIndividuals_519 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_52
+
+:ThousandIndividuals_52 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_520
+
+:ThousandIndividuals_520 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_521
+
+:ThousandIndividuals_521 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_522
+
+:ThousandIndividuals_522 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_523
+
+:ThousandIndividuals_523 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_524
+
+:ThousandIndividuals_524 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_525
+
+:ThousandIndividuals_525 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_526
+
+:ThousandIndividuals_526 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_527
+
+:ThousandIndividuals_527 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_528
+
+:ThousandIndividuals_528 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_529
+
+:ThousandIndividuals_529 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_53
+
+:ThousandIndividuals_53 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_530
+
+:ThousandIndividuals_530 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_531
+
+:ThousandIndividuals_531 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_532
+
+:ThousandIndividuals_532 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_533
+
+:ThousandIndividuals_533 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_534
+
+:ThousandIndividuals_534 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_535
+
+:ThousandIndividuals_535 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_536
+
+:ThousandIndividuals_536 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_537
+
+:ThousandIndividuals_537 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_538
+
+:ThousandIndividuals_538 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_539
+
+:ThousandIndividuals_539 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_54
+
+:ThousandIndividuals_54 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_540
+
+:ThousandIndividuals_540 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_541
+
+:ThousandIndividuals_541 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_542
+
+:ThousandIndividuals_542 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_543
+
+:ThousandIndividuals_543 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_544
+
+:ThousandIndividuals_544 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_545
+
+:ThousandIndividuals_545 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_546
+
+:ThousandIndividuals_546 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_547
+
+:ThousandIndividuals_547 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_548
+
+:ThousandIndividuals_548 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_549
+
+:ThousandIndividuals_549 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_55
+
+:ThousandIndividuals_55 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_550
+
+:ThousandIndividuals_550 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_551
+
+:ThousandIndividuals_551 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_552
+
+:ThousandIndividuals_552 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_553
+
+:ThousandIndividuals_553 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_554
+
+:ThousandIndividuals_554 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_555
+
+:ThousandIndividuals_555 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_556
+
+:ThousandIndividuals_556 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_557
+
+:ThousandIndividuals_557 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_558
+
+:ThousandIndividuals_558 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_559
+
+:ThousandIndividuals_559 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_56
+
+:ThousandIndividuals_56 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_560
+
+:ThousandIndividuals_560 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_561
+
+:ThousandIndividuals_561 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_562
+
+:ThousandIndividuals_562 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_563
+
+:ThousandIndividuals_563 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_564
+
+:ThousandIndividuals_564 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_565
+
+:ThousandIndividuals_565 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_566
+
+:ThousandIndividuals_566 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_567
+
+:ThousandIndividuals_567 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_568
+
+:ThousandIndividuals_568 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_569
+
+:ThousandIndividuals_569 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_57
+
+:ThousandIndividuals_57 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_570
+
+:ThousandIndividuals_570 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_571
+
+:ThousandIndividuals_571 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_572
+
+:ThousandIndividuals_572 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_573
+
+:ThousandIndividuals_573 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_574
+
+:ThousandIndividuals_574 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_575
+
+:ThousandIndividuals_575 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_576
+
+:ThousandIndividuals_576 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_577
+
+:ThousandIndividuals_577 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_578
+
+:ThousandIndividuals_578 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_579
+
+:ThousandIndividuals_579 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_58
+
+:ThousandIndividuals_58 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_580
+
+:ThousandIndividuals_580 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_581
+
+:ThousandIndividuals_581 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_582
+
+:ThousandIndividuals_582 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_583
+
+:ThousandIndividuals_583 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_584
+
+:ThousandIndividuals_584 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_585
+
+:ThousandIndividuals_585 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_586
+
+:ThousandIndividuals_586 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_587
+
+:ThousandIndividuals_587 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_588
+
+:ThousandIndividuals_588 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_589
+
+:ThousandIndividuals_589 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_59
+
+:ThousandIndividuals_59 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_590
+
+:ThousandIndividuals_590 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_591
+
+:ThousandIndividuals_591 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_592
+
+:ThousandIndividuals_592 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_593
+
+:ThousandIndividuals_593 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_594
+
+:ThousandIndividuals_594 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_595
+
+:ThousandIndividuals_595 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_596
+
+:ThousandIndividuals_596 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_597
+
+:ThousandIndividuals_597 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_598
+
+:ThousandIndividuals_598 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_599
+
+:ThousandIndividuals_599 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_6
+
+:ThousandIndividuals_6 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_60
+
+:ThousandIndividuals_60 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_600
+
+:ThousandIndividuals_600 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_601
+
+:ThousandIndividuals_601 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_602
+
+:ThousandIndividuals_602 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_603
+
+:ThousandIndividuals_603 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_604
+
+:ThousandIndividuals_604 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_605
+
+:ThousandIndividuals_605 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_606
+
+:ThousandIndividuals_606 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_607
+
+:ThousandIndividuals_607 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_608
+
+:ThousandIndividuals_608 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_609
+
+:ThousandIndividuals_609 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_61
+
+:ThousandIndividuals_61 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_610
+
+:ThousandIndividuals_610 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_611
+
+:ThousandIndividuals_611 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_612
+
+:ThousandIndividuals_612 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_613
+
+:ThousandIndividuals_613 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_614
+
+:ThousandIndividuals_614 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_615
+
+:ThousandIndividuals_615 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_616
+
+:ThousandIndividuals_616 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_617
+
+:ThousandIndividuals_617 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_618
+
+:ThousandIndividuals_618 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_619
+
+:ThousandIndividuals_619 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_62
+
+:ThousandIndividuals_62 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_620
+
+:ThousandIndividuals_620 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_621
+
+:ThousandIndividuals_621 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_622
+
+:ThousandIndividuals_622 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_623
+
+:ThousandIndividuals_623 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_624
+
+:ThousandIndividuals_624 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_625
+
+:ThousandIndividuals_625 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_626
+
+:ThousandIndividuals_626 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_627
+
+:ThousandIndividuals_627 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_628
+
+:ThousandIndividuals_628 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_629
+
+:ThousandIndividuals_629 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_63
+
+:ThousandIndividuals_63 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_630
+
+:ThousandIndividuals_630 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_631
+
+:ThousandIndividuals_631 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_632
+
+:ThousandIndividuals_632 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_633
+
+:ThousandIndividuals_633 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_634
+
+:ThousandIndividuals_634 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_635
+
+:ThousandIndividuals_635 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_636
+
+:ThousandIndividuals_636 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_637
+
+:ThousandIndividuals_637 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_638
+
+:ThousandIndividuals_638 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_639
+
+:ThousandIndividuals_639 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_64
+
+:ThousandIndividuals_64 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_640
+
+:ThousandIndividuals_640 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_641
+
+:ThousandIndividuals_641 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_642
+
+:ThousandIndividuals_642 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_643
+
+:ThousandIndividuals_643 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_644
+
+:ThousandIndividuals_644 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_645
+
+:ThousandIndividuals_645 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_646
+
+:ThousandIndividuals_646 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_647
+
+:ThousandIndividuals_647 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_648
+
+:ThousandIndividuals_648 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_649
+
+:ThousandIndividuals_649 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_65
+
+:ThousandIndividuals_65 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_650
+
+:ThousandIndividuals_650 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_651
+
+:ThousandIndividuals_651 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_652
+
+:ThousandIndividuals_652 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_653
+
+:ThousandIndividuals_653 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_654
+
+:ThousandIndividuals_654 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_655
+
+:ThousandIndividuals_655 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_656
+
+:ThousandIndividuals_656 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_657
+
+:ThousandIndividuals_657 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_658
+
+:ThousandIndividuals_658 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_659
+
+:ThousandIndividuals_659 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_66
+
+:ThousandIndividuals_66 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_660
+
+:ThousandIndividuals_660 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_661
+
+:ThousandIndividuals_661 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_662
+
+:ThousandIndividuals_662 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_663
+
+:ThousandIndividuals_663 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_664
+
+:ThousandIndividuals_664 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_665
+
+:ThousandIndividuals_665 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_666
+
+:ThousandIndividuals_666 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_667
+
+:ThousandIndividuals_667 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_668
+
+:ThousandIndividuals_668 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_669
+
+:ThousandIndividuals_669 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_67
+
+:ThousandIndividuals_67 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_670
+
+:ThousandIndividuals_670 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_671
+
+:ThousandIndividuals_671 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_672
+
+:ThousandIndividuals_672 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_673
+
+:ThousandIndividuals_673 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_674
+
+:ThousandIndividuals_674 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_675
+
+:ThousandIndividuals_675 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_676
+
+:ThousandIndividuals_676 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_677
+
+:ThousandIndividuals_677 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_678
+
+:ThousandIndividuals_678 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_679
+
+:ThousandIndividuals_679 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_68
+
+:ThousandIndividuals_68 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_680
+
+:ThousandIndividuals_680 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_681
+
+:ThousandIndividuals_681 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_682
+
+:ThousandIndividuals_682 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_683
+
+:ThousandIndividuals_683 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_684
+
+:ThousandIndividuals_684 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_685
+
+:ThousandIndividuals_685 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_686
+
+:ThousandIndividuals_686 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_687
+
+:ThousandIndividuals_687 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_688
+
+:ThousandIndividuals_688 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_689
+
+:ThousandIndividuals_689 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_69
+
+:ThousandIndividuals_69 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_690
+
+:ThousandIndividuals_690 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_691
+
+:ThousandIndividuals_691 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_692
+
+:ThousandIndividuals_692 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_693
+
+:ThousandIndividuals_693 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_694
+
+:ThousandIndividuals_694 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_695
+
+:ThousandIndividuals_695 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_696
+
+:ThousandIndividuals_696 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_697
+
+:ThousandIndividuals_697 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_698
+
+:ThousandIndividuals_698 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_699
+
+:ThousandIndividuals_699 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_7
+
+:ThousandIndividuals_7 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_70
+
+:ThousandIndividuals_70 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_700
+
+:ThousandIndividuals_700 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_701
+
+:ThousandIndividuals_701 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_702
+
+:ThousandIndividuals_702 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_703
+
+:ThousandIndividuals_703 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_704
+
+:ThousandIndividuals_704 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_705
+
+:ThousandIndividuals_705 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_706
+
+:ThousandIndividuals_706 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_707
+
+:ThousandIndividuals_707 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_708
+
+:ThousandIndividuals_708 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_709
+
+:ThousandIndividuals_709 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_71
+
+:ThousandIndividuals_71 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_710
+
+:ThousandIndividuals_710 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_711
+
+:ThousandIndividuals_711 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_712
+
+:ThousandIndividuals_712 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_713
+
+:ThousandIndividuals_713 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_714
+
+:ThousandIndividuals_714 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_715
+
+:ThousandIndividuals_715 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_716
+
+:ThousandIndividuals_716 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_717
+
+:ThousandIndividuals_717 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_718
+
+:ThousandIndividuals_718 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_719
+
+:ThousandIndividuals_719 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_72
+
+:ThousandIndividuals_72 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_720
+
+:ThousandIndividuals_720 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_721
+
+:ThousandIndividuals_721 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_722
+
+:ThousandIndividuals_722 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_723
+
+:ThousandIndividuals_723 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_724
+
+:ThousandIndividuals_724 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_725
+
+:ThousandIndividuals_725 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_726
+
+:ThousandIndividuals_726 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_727
+
+:ThousandIndividuals_727 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_728
+
+:ThousandIndividuals_728 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_729
+
+:ThousandIndividuals_729 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_73
+
+:ThousandIndividuals_73 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_730
+
+:ThousandIndividuals_730 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_731
+
+:ThousandIndividuals_731 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_732
+
+:ThousandIndividuals_732 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_733
+
+:ThousandIndividuals_733 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_734
+
+:ThousandIndividuals_734 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_735
+
+:ThousandIndividuals_735 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_736
+
+:ThousandIndividuals_736 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_737
+
+:ThousandIndividuals_737 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_738
+
+:ThousandIndividuals_738 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_739
+
+:ThousandIndividuals_739 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_74
+
+:ThousandIndividuals_74 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_740
+
+:ThousandIndividuals_740 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_741
+
+:ThousandIndividuals_741 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_742
+
+:ThousandIndividuals_742 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_743
+
+:ThousandIndividuals_743 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_744
+
+:ThousandIndividuals_744 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_745
+
+:ThousandIndividuals_745 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_746
+
+:ThousandIndividuals_746 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_747
+
+:ThousandIndividuals_747 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_748
+
+:ThousandIndividuals_748 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_749
+
+:ThousandIndividuals_749 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_75
+
+:ThousandIndividuals_75 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_750
+
+:ThousandIndividuals_750 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_751
+
+:ThousandIndividuals_751 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_752
+
+:ThousandIndividuals_752 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_753
+
+:ThousandIndividuals_753 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_754
+
+:ThousandIndividuals_754 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_755
+
+:ThousandIndividuals_755 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_756
+
+:ThousandIndividuals_756 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_757
+
+:ThousandIndividuals_757 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_758
+
+:ThousandIndividuals_758 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_759
+
+:ThousandIndividuals_759 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_76
+
+:ThousandIndividuals_76 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_760
+
+:ThousandIndividuals_760 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_761
+
+:ThousandIndividuals_761 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_762
+
+:ThousandIndividuals_762 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_763
+
+:ThousandIndividuals_763 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_764
+
+:ThousandIndividuals_764 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_765
+
+:ThousandIndividuals_765 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_766
+
+:ThousandIndividuals_766 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_767
+
+:ThousandIndividuals_767 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_768
+
+:ThousandIndividuals_768 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_769
+
+:ThousandIndividuals_769 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_77
+
+:ThousandIndividuals_77 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_770
+
+:ThousandIndividuals_770 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_771
+
+:ThousandIndividuals_771 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_772
+
+:ThousandIndividuals_772 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_773
+
+:ThousandIndividuals_773 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_774
+
+:ThousandIndividuals_774 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_775
+
+:ThousandIndividuals_775 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_776
+
+:ThousandIndividuals_776 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_777
+
+:ThousandIndividuals_777 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_778
+
+:ThousandIndividuals_778 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_779
+
+:ThousandIndividuals_779 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_78
+
+:ThousandIndividuals_78 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_780
+
+:ThousandIndividuals_780 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_781
+
+:ThousandIndividuals_781 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_782
+
+:ThousandIndividuals_782 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_783
+
+:ThousandIndividuals_783 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_784
+
+:ThousandIndividuals_784 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_785
+
+:ThousandIndividuals_785 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_786
+
+:ThousandIndividuals_786 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_787
+
+:ThousandIndividuals_787 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_788
+
+:ThousandIndividuals_788 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_789
+
+:ThousandIndividuals_789 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_79
+
+:ThousandIndividuals_79 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_790
+
+:ThousandIndividuals_790 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_791
+
+:ThousandIndividuals_791 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_792
+
+:ThousandIndividuals_792 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_793
+
+:ThousandIndividuals_793 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_794
+
+:ThousandIndividuals_794 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_795
+
+:ThousandIndividuals_795 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_796
+
+:ThousandIndividuals_796 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_797
+
+:ThousandIndividuals_797 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_798
+
+:ThousandIndividuals_798 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_799
+
+:ThousandIndividuals_799 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_8
+
+:ThousandIndividuals_8 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_80
+
+:ThousandIndividuals_80 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_800
+
+:ThousandIndividuals_800 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_801
+
+:ThousandIndividuals_801 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_802
+
+:ThousandIndividuals_802 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_803
+
+:ThousandIndividuals_803 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_804
+
+:ThousandIndividuals_804 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_805
+
+:ThousandIndividuals_805 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_806
+
+:ThousandIndividuals_806 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_807
+
+:ThousandIndividuals_807 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_808
+
+:ThousandIndividuals_808 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_809
+
+:ThousandIndividuals_809 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_81
+
+:ThousandIndividuals_81 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_810
+
+:ThousandIndividuals_810 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_811
+
+:ThousandIndividuals_811 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_812
+
+:ThousandIndividuals_812 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_813
+
+:ThousandIndividuals_813 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_814
+
+:ThousandIndividuals_814 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_815
+
+:ThousandIndividuals_815 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_816
+
+:ThousandIndividuals_816 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_817
+
+:ThousandIndividuals_817 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_818
+
+:ThousandIndividuals_818 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_819
+
+:ThousandIndividuals_819 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_82
+
+:ThousandIndividuals_82 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_820
+
+:ThousandIndividuals_820 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_821
+
+:ThousandIndividuals_821 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_822
+
+:ThousandIndividuals_822 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_823
+
+:ThousandIndividuals_823 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_824
+
+:ThousandIndividuals_824 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_825
+
+:ThousandIndividuals_825 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_826
+
+:ThousandIndividuals_826 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_827
+
+:ThousandIndividuals_827 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_828
+
+:ThousandIndividuals_828 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_829
+
+:ThousandIndividuals_829 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_83
+
+:ThousandIndividuals_83 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_830
+
+:ThousandIndividuals_830 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_831
+
+:ThousandIndividuals_831 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_832
+
+:ThousandIndividuals_832 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_833
+
+:ThousandIndividuals_833 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_834
+
+:ThousandIndividuals_834 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_835
+
+:ThousandIndividuals_835 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_836
+
+:ThousandIndividuals_836 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_837
+
+:ThousandIndividuals_837 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_838
+
+:ThousandIndividuals_838 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_839
+
+:ThousandIndividuals_839 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_84
+
+:ThousandIndividuals_84 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_840
+
+:ThousandIndividuals_840 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_841
+
+:ThousandIndividuals_841 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_842
+
+:ThousandIndividuals_842 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_843
+
+:ThousandIndividuals_843 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_844
+
+:ThousandIndividuals_844 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_845
+
+:ThousandIndividuals_845 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_846
+
+:ThousandIndividuals_846 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_847
+
+:ThousandIndividuals_847 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_848
+
+:ThousandIndividuals_848 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_849
+
+:ThousandIndividuals_849 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_85
+
+:ThousandIndividuals_85 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_850
+
+:ThousandIndividuals_850 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_851
+
+:ThousandIndividuals_851 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_852
+
+:ThousandIndividuals_852 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_853
+
+:ThousandIndividuals_853 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_854
+
+:ThousandIndividuals_854 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_855
+
+:ThousandIndividuals_855 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_856
+
+:ThousandIndividuals_856 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_857
+
+:ThousandIndividuals_857 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_858
+
+:ThousandIndividuals_858 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_859
+
+:ThousandIndividuals_859 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_86
+
+:ThousandIndividuals_86 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_860
+
+:ThousandIndividuals_860 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_861
+
+:ThousandIndividuals_861 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_862
+
+:ThousandIndividuals_862 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_863
+
+:ThousandIndividuals_863 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_864
+
+:ThousandIndividuals_864 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_865
+
+:ThousandIndividuals_865 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_866
+
+:ThousandIndividuals_866 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_867
+
+:ThousandIndividuals_867 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_868
+
+:ThousandIndividuals_868 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_869
+
+:ThousandIndividuals_869 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_87
+
+:ThousandIndividuals_87 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_870
+
+:ThousandIndividuals_870 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_871
+
+:ThousandIndividuals_871 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_872
+
+:ThousandIndividuals_872 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_873
+
+:ThousandIndividuals_873 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_874
+
+:ThousandIndividuals_874 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_875
+
+:ThousandIndividuals_875 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_876
+
+:ThousandIndividuals_876 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_877
+
+:ThousandIndividuals_877 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_878
+
+:ThousandIndividuals_878 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_879
+
+:ThousandIndividuals_879 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_88
+
+:ThousandIndividuals_88 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_880
+
+:ThousandIndividuals_880 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_881
+
+:ThousandIndividuals_881 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_882
+
+:ThousandIndividuals_882 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_883
+
+:ThousandIndividuals_883 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_884
+
+:ThousandIndividuals_884 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_885
+
+:ThousandIndividuals_885 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_886
+
+:ThousandIndividuals_886 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_887
+
+:ThousandIndividuals_887 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_888
+
+:ThousandIndividuals_888 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_889
+
+:ThousandIndividuals_889 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_89
+
+:ThousandIndividuals_89 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_890
+
+:ThousandIndividuals_890 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_891
+
+:ThousandIndividuals_891 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_892
+
+:ThousandIndividuals_892 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_893
+
+:ThousandIndividuals_893 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_894
+
+:ThousandIndividuals_894 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_895
+
+:ThousandIndividuals_895 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_896
+
+:ThousandIndividuals_896 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_897
+
+:ThousandIndividuals_897 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_898
+
+:ThousandIndividuals_898 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_899
+
+:ThousandIndividuals_899 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_9
+
+:ThousandIndividuals_9 rdf:type owl:NamedIndividual ,
+                                :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_90
+
+:ThousandIndividuals_90 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_900
+
+:ThousandIndividuals_900 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_901
+
+:ThousandIndividuals_901 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_902
+
+:ThousandIndividuals_902 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_903
+
+:ThousandIndividuals_903 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_904
+
+:ThousandIndividuals_904 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_905
+
+:ThousandIndividuals_905 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_906
+
+:ThousandIndividuals_906 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_907
+
+:ThousandIndividuals_907 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_908
+
+:ThousandIndividuals_908 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_909
+
+:ThousandIndividuals_909 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_91
+
+:ThousandIndividuals_91 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_910
+
+:ThousandIndividuals_910 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_911
+
+:ThousandIndividuals_911 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_912
+
+:ThousandIndividuals_912 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_913
+
+:ThousandIndividuals_913 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_914
+
+:ThousandIndividuals_914 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_915
+
+:ThousandIndividuals_915 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_916
+
+:ThousandIndividuals_916 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_917
+
+:ThousandIndividuals_917 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_918
+
+:ThousandIndividuals_918 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_919
+
+:ThousandIndividuals_919 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_92
+
+:ThousandIndividuals_92 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_920
+
+:ThousandIndividuals_920 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_921
+
+:ThousandIndividuals_921 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_922
+
+:ThousandIndividuals_922 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_923
+
+:ThousandIndividuals_923 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_924
+
+:ThousandIndividuals_924 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_925
+
+:ThousandIndividuals_925 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_926
+
+:ThousandIndividuals_926 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_927
+
+:ThousandIndividuals_927 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_928
+
+:ThousandIndividuals_928 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_929
+
+:ThousandIndividuals_929 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_93
+
+:ThousandIndividuals_93 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_930
+
+:ThousandIndividuals_930 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_931
+
+:ThousandIndividuals_931 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_932
+
+:ThousandIndividuals_932 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_933
+
+:ThousandIndividuals_933 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_934
+
+:ThousandIndividuals_934 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_935
+
+:ThousandIndividuals_935 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_936
+
+:ThousandIndividuals_936 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_937
+
+:ThousandIndividuals_937 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_938
+
+:ThousandIndividuals_938 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_939
+
+:ThousandIndividuals_939 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_94
+
+:ThousandIndividuals_94 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_940
+
+:ThousandIndividuals_940 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_941
+
+:ThousandIndividuals_941 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_942
+
+:ThousandIndividuals_942 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_943
+
+:ThousandIndividuals_943 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_944
+
+:ThousandIndividuals_944 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_945
+
+:ThousandIndividuals_945 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_946
+
+:ThousandIndividuals_946 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_947
+
+:ThousandIndividuals_947 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_948
+
+:ThousandIndividuals_948 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_949
+
+:ThousandIndividuals_949 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_95
+
+:ThousandIndividuals_95 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_950
+
+:ThousandIndividuals_950 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_951
+
+:ThousandIndividuals_951 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_952
+
+:ThousandIndividuals_952 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_953
+
+:ThousandIndividuals_953 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_954
+
+:ThousandIndividuals_954 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_955
+
+:ThousandIndividuals_955 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_956
+
+:ThousandIndividuals_956 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_957
+
+:ThousandIndividuals_957 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_958
+
+:ThousandIndividuals_958 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_959
+
+:ThousandIndividuals_959 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_96
+
+:ThousandIndividuals_96 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_960
+
+:ThousandIndividuals_960 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_961
+
+:ThousandIndividuals_961 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_962
+
+:ThousandIndividuals_962 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_963
+
+:ThousandIndividuals_963 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_964
+
+:ThousandIndividuals_964 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_965
+
+:ThousandIndividuals_965 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_966
+
+:ThousandIndividuals_966 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_967
+
+:ThousandIndividuals_967 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_968
+
+:ThousandIndividuals_968 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_969
+
+:ThousandIndividuals_969 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_97
+
+:ThousandIndividuals_97 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_970
+
+:ThousandIndividuals_970 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_971
+
+:ThousandIndividuals_971 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_972
+
+:ThousandIndividuals_972 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_973
+
+:ThousandIndividuals_973 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_974
+
+:ThousandIndividuals_974 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_975
+
+:ThousandIndividuals_975 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_976
+
+:ThousandIndividuals_976 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_977
+
+:ThousandIndividuals_977 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_978
+
+:ThousandIndividuals_978 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_979
+
+:ThousandIndividuals_979 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_98
+
+:ThousandIndividuals_98 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_980
+
+:ThousandIndividuals_980 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_981
+
+:ThousandIndividuals_981 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_982
+
+:ThousandIndividuals_982 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_983
+
+:ThousandIndividuals_983 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_984
+
+:ThousandIndividuals_984 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_985
+
+:ThousandIndividuals_985 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_986
+
+:ThousandIndividuals_986 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_987
+
+:ThousandIndividuals_987 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_988
+
+:ThousandIndividuals_988 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_989
+
+:ThousandIndividuals_989 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_99
+
+:ThousandIndividuals_99 rdf:type owl:NamedIndividual ,
+                                 :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_990
+
+:ThousandIndividuals_990 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_991
+
+:ThousandIndividuals_991 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_992
+
+:ThousandIndividuals_992 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_993
+
+:ThousandIndividuals_993 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_994
+
+:ThousandIndividuals_994 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_995
+
+:ThousandIndividuals_995 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_996
+
+:ThousandIndividuals_996 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_997
+
+:ThousandIndividuals_997 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_998
+
+:ThousandIndividuals_998 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+###  http://webvowl.steffen-lohmann.de/ontology/1/ThousandIndividuals_999
+
+:ThousandIndividuals_999 rdf:type owl:NamedIndividual ,
+                                  :ThousandIndividuals .
+
+
+
+[ rdf:type :Class1
+] .
+
+
+#################################################################
+#
+#    General axioms
+#
+#################################################################
+
+
+[ rdf:type owl:Class ;
+  owl:unionOf ( :ObjectUnionOf_RL_Class1
+                :ObjectUnionOf_RL_Class2
+                :ObjectUnionOf_RL_Class3
+              ) ;
+  rdfs:subClassOf :ObjectUnionOf_RL
+] .
+
+
+
+[ rdf:type owl:Class ;
+  owl:oneOf ( :ObjectOneOf_RL_Individual1
+              :ObjectOneOf_RL_Individual2
+            ) ;
+  rdfs:subClassOf :ObjectOneOf_RL
+] .
+
+
+
+[ rdf:type owl:Restriction ;
+  owl:onProperty :objectSomeValuesFromProperty_RL ;
+  owl:someValuesFrom :ObjectSomeValuesFromRange_RL ;
+  rdfs:subClassOf :ObjectSomeValuesFrom_RL
+] .
+
+
+
+[ rdf:type owl:Restriction ;
+  owl:onProperty :dataSomeValuesFromProperty_RL ;
+  owl:someValuesFrom xsd:dateTime ;
+  rdfs:subClassOf :DataSomeValuesFrom_RL
+] .
+
+
+
+[ rdf:type owl:AllDisjointClasses ;
+  owl:members ( :AllDisjointClasses_Class1
+                :AllDisjointClasses_Class2
+                :AllDisjointClasses_Class3
+              )
+] .
+
+
+
+[ rdf:type owl:AllDifferent ;
+  owl:distinctMembers ( :AllDifferent_Individual1
+                        :AllDifferent_Individual2
+                        :AllDifferent_Individual3
+                        :AllDifferent_Individual4
+                      )
+] .
+
+
+
+[ rdf:type owl:AllDisjointProperties ;
+  owl:members ( :allDisjointObjectProperties_Property1
+                :allDisjointObjectProperties_Property2
+                :allDisjointObjectProperties_Property3
+              )
+] .
+
+
+
+[ rdf:type owl:AllDisjointProperties ;
+  owl:members ( :allDisjointDataProperties_Property1
+                :allDisjointDataProperties_Property2
+                :allDisjointDataProperties_Property3
+              )
+] .
+
+
+
+
+###  Generated by the OWL API (version 4.1.0) https://github.com/owlcs/owlapi
+
diff --git a/src/test/resources/inverse-anonym-test.ttl b/src/test/resources/inverse-anonym-test.ttl
new file mode 100644
index 0000000..b9afc1a
--- /dev/null
+++ b/src/test/resources/inverse-anonym-test.ttl
@@ -0,0 +1,28 @@
+#################################PREFIXES################################
+
+@prefix : <https://owl2vowl.de/> .
+@prefix this: <https://owl2vowl.de/> .
+@prefix dcterms: <http://purl.org/dc/terms/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix schema: <http://schema.org/> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+#################################ONTOLOGY#################################
+
+this:schema
+	a owl:Ontology ;
+	dcterms:title "OWL2VOWL Testing" ;
+.
+
+#################################ENTITIES##################################
+
+:propertyA
+	a owl:ObjectProperty ;
+	rdfs:domain :classA ;
+	rdfs:range :classB ;
+.
+:propertyB
+	owl:inverseOf :propertyA ;
+.
diff --git a/src/test/resources/log4j2.xml b/src/test/resources/log4j2.xml
new file mode 100644
index 0000000..51e2aaf
--- /dev/null
+++ b/src/test/resources/log4j2.xml
@@ -0,0 +1,37 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<Configuration>
+  <Properties>
+    <Property name="PID">????</Property>
+    <Property name="LOG_EXCEPTION_CONVERSION_WORD">%xwEx</Property>
+    <Property name="LOG_LEVEL_PATTERN">%5p</Property>
+    <Property name="CONSOLE_LOG_PATTERN">%clr{%d{yyyy-MM-dd HH:mm:ss.SSS}}{faint} %clr{${LOG_LEVEL_PATTERN}} %clr{${sys:PID}}{magenta} %clr{---}{faint}
+      %clr{[%15.15t]}{faint} %clr{%-40.40c{1.}}{cyan} %clr{:}{faint} %m%n${sys:LOG_EXCEPTION_CONVERSION_WORD}
+    </Property>
+    <Property name="FILE_LOG_PATTERN">%d{yyyy-MM-dd HH:mm:ss.SSS} ${LOG_LEVEL_PATTERN} ${sys:PID} --- [%t] %-40.40c{1.} :
+      %m%n${sys:LOG_EXCEPTION_CONVERSION_WORD}
+    </Property>
+  </Properties>
+  <Appenders>
+    <Console name="Console" target="SYSTEM_OUT" follow="true">
+      <PatternLayout pattern="${sys:CONSOLE_LOG_PATTERN}"/>
+    </Console>
+  </Appenders>
+  <Loggers>
+    <Logger name="org.apache.catalina.startup.DigesterFactory" level="error"/>
+    <Logger name="org.apache.catalina.util.LifecycleBase" level="error"/>
+    <Logger name="org.apache.coyote.http11.Http11NioProtocol" level="warn"/>
+    <logger name="org.apache.sshd.common.util.SecurityUtils" level="warn"/>
+    <Logger name="org.apache.tomcat.util.net.NioSelectorPool" level="warn"/>
+    <Logger name="org.crsh.plugin" level="warn"/>
+    <logger name="org.crsh.ssh" level="warn"/>
+    <Logger name="org.eclipse.jetty.util.component.AbstractLifeCycle" level="error"/>
+    <Logger name="org.hibernate.validator.internal.util.Version" level="warn"/>
+    <logger name="org.springframework.boot.actuate.autoconfigure.CrshAutoConfiguration" level="warn"/>
+    <logger name="org.springframework.boot.actuate.endpoint.jmx" level="warn"/>
+    <logger name="org.thymeleaf" level="warn"/>
+    <logger name="de.uni_stuttgart.vis.vowl.owl2vowl" level="debug"/>
+    <Root level="info">
+      <AppenderRef ref="Console"/>
+    </Root>
+  </Loggers>
+</Configuration>