diff --git a/DHFCMonoBuildTools.py b/DHFCMonoBuildTools.py
index 62256df8832533d975ee09f57e67ccc9ef1fdf1c..6ce877e3f8c566041cca87ba19e50bfcb55f22d1 100644
--- a/DHFCMonoBuildTools.py
+++ b/DHFCMonoBuildTools.py
@@ -259,7 +259,7 @@ def ontologyContent():
             }
             WHERE {
             GRAPH ?g {?s ?p ?o}
-            ?g a dhfc:OntologyGraph
+            ?g a dhfc:DomainGraph
             }
         """)
     return sparql.queryAndConvert().serialize()
@@ -466,19 +466,19 @@ def getInferedAxiomWithExplanation(turtleContent) :
     for ax in finals :
         rdf=RDFserialization(ax)
         try :   
-            exp=expGen.getEntailmentExplanations(ax)
-            explain=[]
-            for el in exp :
-                subExp=[]
-                for axiom in el :
-                    subExp.append(RDFserialization(axiom))
-                explain.append(subExp)
-            # exp=expGen.getEntailmentExplanation(ax)
+            # exp=expGen.getEntailmentExplanations(ax)
             # explain=[]
-            # subExp=[]
-            # for axiom in exp :
-            #     subExp.append(RDFserialization(axiom))
-            # explain.append(subExp)
+            # for el in exp :
+            #     subExp=[]
+            #     for axiom in el :
+            #         subExp.append(RDFserialization(axiom))
+            #     explain.append(subExp)
+            exp=expGen.getEntailmentExplanation(ax)
+            explain=[]
+            subExp=[]
+            for axiom in exp :
+                subExp.append(RDFserialization(axiom))
+            explain.append(subExp)
             explanations[rdf]=(explain)
         except :
             None  
diff --git a/DHFCShapes.shacl b/DHFCShapes.shacl
new file mode 100644
index 0000000000000000000000000000000000000000..b3835b1ee1a9a6355e4c7b88b50dc899d2b1a138
--- /dev/null
+++ b/DHFCShapes.shacl
@@ -0,0 +1,158 @@
+@prefix dhfc: <https://w3id.org/DHFC#>.
+
+dhfc:SynthesisEntityUnicity
+	a sh:NodeShape ;
+	sh:severity sh:Violation;
+	sh:targetClass dhfc:SynthesisGraph ;
+	sh:sparql [
+		a sh:SPARQLConstraint ;   # This triple is optional
+		sh:message "Entities within a synthesis graph should be found only within this synthesis graph" ;
+		sh:prefixes dhfc: ;
+		sh:select """
+			SELECT $this ?q
+			WHERE {
+				GRAPH $this {
+					?q a dhfc:Entity.
+				}
+				{?g a dhfc:SynthesisGraph} UNION {?g a dhfc:SourceGraph}
+				FILTER (?g != $this)
+				{GRAPH ?g {
+						?q ?r ?t.
+					}} UNION {GRAPH ?g {
+						?t ?r ?q.
+					}}
+			}
+			""" ;
+	] .
+
+dhfc:SourceEntityUnicity
+	a sh:NodeShape ;
+	sh:severity sh:Violation;
+	sh:targetClass dhfc:SourceGraph ;
+	sh:sparql [
+		a sh:SPARQLConstraint ;   # This triple is optional
+		sh:message "Entities referenced within a source should not be the same as the ones within a synthesis source." ;
+		sh:prefixes dhfc: ;
+		sh:select """
+			SELECT $this ?q
+			WHERE {
+				GRAPH $this {
+					?q a dhfc:Entity.
+				}
+				?g a dhfc:SynthesisGraph								FILTER (?g != $this)
+				{GRAPH ?g {
+						?q ?r ?t.
+					}} UNION {GRAPH ?g {
+						?t ?r ?q.
+					}}
+			}
+			""" ;
+	];
+	sh:sparql  [
+		a sh:SPARQLConstraint ;   # This triple is optional
+		sh:message "Entities referenced within a source should not be the same as those referenced within other sources." ;
+		sh:prefixes dhfc: ;
+		sh:select """
+			SELECT $this ?q
+			WHERE {
+				GRAPH $this {
+					?q a dhfc:Entity.
+				}
+				?source a dhfc:InformationalContent.
+				?source dhfc:asserts $this.
+				?g a dhfc:SourceGraph.									FILTER NOT EXISTS {?source dhfc:asserts ?g}
+				{GRAPH ?g {
+						?q ?r ?t.
+					}} UNION {GRAPH ?g {
+						?t ?r ?q.
+					}}
+			}
+			""" ;
+	].
+
+
+dhfc:SourceFunctional
+	a sh:NodeShape ;
+	sh:severity sh:Warning;
+	sh:targetClass dhfc:SourceGraph ;
+	sh:property [
+		sh:path dhfc:isAssertedBy ;
+		sh:class dhfc:InformationalContent ;
+		sh:maxCount 1 ;
+		sh:minCount 1
+	].
+
+
+dhfc:WellFormedSynthesis
+	a sh:NodeShape ;
+	sh:targetClass dhfc:SynthesisGraph ;
+	sh:severity sh:Warning;
+	sh:sparql [
+		a sh:SPARQLConstraint ;   # This triple is optional
+		sh:message "All statements within a synthesis graph should be the result of a support relation." ;
+		sh:prefixes dhfc: ;
+		sh:select """
+			SELECT $this ?q
+			WHERE {
+				{?statement dhfc:inGraph $this.} UNION {GRAPH $this {?statement a dhfc:Statement}}.
+				FILTER NOT EXISTS {
+					?statement (dhfc:hasSuperStatement*) ?statement2.
+					?d dhfc:supports ?statement2.
+				}
+			}
+			""" ;
+	] ;
+	sh:sparql [
+		a sh:SPARQLConstraint ;   # This triple is optional
+		sh:message "All entities within a synthesis graph should be the result of an identification" ;
+		sh:prefixes dhfc: ;
+		sh:select """
+			SELECT $this ?q
+			WHERE {
+				GRAPH $this {
+					?q a dhfc:Entity.
+				}
+				FILTER NOT EXISTS {
+					?i dhfc:identifiesAs ?q 
+				} 
+			}
+			""" ;
+	] .
+
+dhfc:WellInferenceGraph
+	a sh:NodeShape ;
+	sh:targetClass dhfc:InferenceGraph ;
+	sh:severity sh:Violation;
+	sh:sparql [
+		a sh:SPARQLConstraint ;   # This triple is optional
+		sh:message "All statements within an inference graph should be the result of a support relation." ;
+		sh:prefixes dhfc: ;
+		sh:select """
+			SELECT $this ?q
+			WHERE {
+				{?statement dhfc:inGraph $this.} UNION {GRAPH $this {?statement a dhfc:Statement}}.
+				FILTER NOT EXISTS {
+					?statement (dhfc:hasSuperStatement*) ?statement2.
+					?d dhfc:supports ?statement2.
+				}
+				}
+			}
+			""" ;
+	] ;
+	sh:sparql [
+		a sh:SPARQLConstraint ;   # This triple is optional
+		sh:message "All statements within an inference graph should be supported by a statement within the interpretation universe." ;
+		sh:prefixes dhfc: ;
+		sh:select """
+			SELECT $this ?d 
+			WHERE {
+				?u dhfc:entails $this.
+				{?statement dhfc:inGraph $this.} UNION {GRAPH $this {?statement a dhfc:Statement}.
+				?d dhfc:supports ?statement.
+				{?d dhfc:inGraph ?g} UNION {GRAPH ?g {?d a dhfc:Statement}}
+				FILTER NOT EXISTS {?u dhfc:hasAssertion ?g }
+				}
+			}
+			""" ;
+	] .
+
diff --git a/DHFCTestSimple.py b/DHFCTestSimple.py
index dec21ed2694bccc2a2f2ce38680297627d48bb32..9d93617985764cf58505c63f14110cb0d6cce004 100644
--- a/DHFCTestSimple.py
+++ b/DHFCTestSimple.py
@@ -5,19 +5,19 @@ import json
 import time
 from random import randint
 
-def clearAndAddOntologyGraph(graph) :
+def clearAndAddDomainGraph(graph) :
     query= """CLEAR ALL"""
     dhfc.updateSPARQL(dhfc.sparqlUpdate, query)
-    query= """ INSERT DATA {<https://example.org/ontologyGraph>
-        a       <http://dhfc/OntologyGraph> .
-        GRAPH <https://example.org/ontologyGraph> {"""+graph+"""
+    query= """ INSERT DATA {<https://example.org/DomainGraph>
+        a       <http://dhfc/DomainGraph> .
+        GRAPH <https://example.org/DomainGraph> {"""+graph+"""
 }
     }
 """
     dhfc.updateSPARQL(dhfc.sparqlUpdate, query)
 
 def reset() :
-    clearAndAddOntologyGraph("""<http://www.semanticweb.org/wcharles/ontologies/2024/9/untitled-ontology-80>
+    clearAndAddDomainGraph("""<http://www.semanticweb.org/wcharles/ontologies/2024/9/untitled-ontology-80>
         a       <http://www.w3.org/2002/07/owl#Ontology> .
 
 <http://www.semanticweb.org/wcharles/ontologies/2024/9/untitled-ontology-80#frereDe>
@@ -84,7 +84,7 @@ def bigTest(historians, nTriples, nEntities) :
     dic["num_entities"]=nEntities
     timeTable=[]
     t=time.time()
-    clearAndAddOntologyGraph(simpleTurtle("output\\template\\schema.rdf"))
+    clearAndAddDomainGraph(simpleTurtle("output\\template\\schema.rdf"))
     if historians==2 :
         for e in range(historians) :
             content=simpleTurtle("TestData\\test_"+str(nEntities)+"_"+str(n)+"_"+str(1+e))
diff --git a/DHFCTestSimpleNumberTriples.py b/DHFCTestSimpleNumberTriples.py
index 2191e2aa9869ff1a261501514f2bf85dd1d3cf01..3891d6be0de17b945af0b36cc73b7b50b04111c4 100644
--- a/DHFCTestSimpleNumberTriples.py
+++ b/DHFCTestSimpleNumberTriples.py
@@ -4,19 +4,19 @@ from rdflib import Graph
 import json
 import time
 
-def clearAndAddOntologyGraph(graph) :
+def clearAndAddDomainGraph(graph) :
     query= """CLEAR ALL"""
     dhfc.updateSPARQL(dhfc.sparqlUpdate, query)
-    query= """ INSERT DATA {<https://example.org/ontologyGraph>
-        a       <http://dhfc/OntologyGraph> .
-        GRAPH <https://example.org/ontologyGraph> {"""+graph+"""
+    query= """ INSERT DATA {<https://example.org/DomainGraph>
+        a       <http://dhfc/DomainGraph> .
+        GRAPH <https://example.org/DomainGraph> {"""+graph+"""
 }
     }
 """
     dhfc.updateSPARQL(dhfc.sparqlUpdate, query)
 
 def reset() :
-    clearAndAddOntologyGraph("""<http://www.semanticweb.org/wcharles/ontologies/2024/9/untitled-ontology-80>
+    clearAndAddDomainGraph("""<http://www.semanticweb.org/wcharles/ontologies/2024/9/untitled-ontology-80>
         a       <http://www.w3.org/2002/07/owl#Ontology> .
 
 <http://www.semanticweb.org/wcharles/ontologies/2024/9/untitled-ontology-80#frereDe>
@@ -82,7 +82,7 @@ def bigTest(historians, nTriples, nEntities) :
     file.close()
     dic["num_entities"]=nEntities
     t=time.time()
-    clearAndAddOntologyGraph(simpleTurtle("output\\template\\schema.rdf"))
+    clearAndAddDomainGraph(simpleTurtle("output\\template\\schema.rdf"))
     for e in range(historians) :
         content=simpleTurtle("TestData\\test_"+str(nEntities)+"_"+str(n)+"_"+str(1+e))
         dhfc.newAssertionSet("source1", "Historien"+str(e),content)
diff --git a/GenerateDatasets.py b/GenerateDatasets.py
index b75d24a7782cd53fad559bfc80d24ecfbcff99f6..3d1e87d2867c576d8d8b352452ee43b90faacc07 100644
--- a/GenerateDatasets.py
+++ b/GenerateDatasets.py
@@ -4,19 +4,19 @@ from rdflib import Graph
 import json
 import time
 
-def clearAndAddOntologyGraph(graph) :
+def clearAndAddDomainGraph(graph) :
     query= """CLEAR ALL"""
     dhfc.updateSPARQL(dhfc.sparqlUpdate, query)
-    query= """ INSERT DATA {<https://example.org/ontologyGraph>
-        a       <http://dhfc/OntologyGraph> .
-        GRAPH <https://example.org/ontologyGraph> {"""+graph+"""
+    query= """ INSERT DATA {<https://example.org/DomainGraph>
+        a       <http://dhfc/DomainGraph> .
+        GRAPH <https://example.org/DomainGraph> {"""+graph+"""
 }
     }
 """
     dhfc.updateSPARQL(dhfc.sparqlUpdate, query)
 
 def reset() :
-    clearAndAddOntologyGraph("""<http://www.semanticweb.org/wcharles/ontologies/2024/9/untitled-ontology-80>
+    clearAndAddDomainGraph("""<http://www.semanticweb.org/wcharles/ontologies/2024/9/untitled-ontology-80>
         a       <http://www.w3.org/2002/07/owl#Ontology> .
 
 <http://www.semanticweb.org/wcharles/ontologies/2024/9/untitled-ontology-80#frereDe>
diff --git a/examples/DHFC_synthesis_Example.nq b/examples/DHFC_synthesis_Example.nq
index f7097d8369e7f7ebba0c7b018730d3cbde9126a2..8ba73626bd4611fef5966aa8b54c755fe81e2f4b 100644
--- a/examples/DHFC_synthesis_Example.nq
+++ b/examples/DHFC_synthesis_Example.nq
@@ -1,4 +1,4 @@
-<https://example.org/ontologyGraph> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/DHFC#OntologyGraph> .
+<https://example.org/DomainGraph> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/DHFC#DomainGraph> .
 <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/DHFC#Source> .
 <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres> <https://w3id.org/DHFC#hasInterpretation> <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation0> .
 <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres> <https://w3id.org/DHFC#hasInterpretation> <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation1> .
@@ -26336,549 +26336,549 @@ _:B7de56a08475e352739990ac3b85171e4 <https://w3id.org/DHFC#derivesNewEntity> <ht
 _:B39f99296f97b273f959d13843e2c542f <https://w3id.org/DHFC#derivesNewEntity> <https://example.com/synthesisDioc�se_de_Rieux> .
 _:B998f4c1a3cc42fc9ea69b73661eba77b <https://w3id.org/DHFC#derivesNewEntity> <https://example.com/synthesisRivi�re> .
 _:Bbaee13cf8b341a80e0d03742dc2fe92b <https://w3id.org/DHFC#derivesNewEntity> <https://example.com/synthesisCouserans> .
-<https://w3id.org/HHT#LevelVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#LevelVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Version> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#LevelVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:B3dca560dX2D159eX2D4ec1X2Db1cfX2D624cc2760e1b <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ElementaryLevelVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ElementaryLevelVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#LevelVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ElementaryLevelVersion> <http://www.w3.org/2000/01/rdf-schema#label> "ElementaryLevelVersion" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ElementaryLevelVersion> <http://www.w3.org/2000/01/rdf-schema#comment> "This subclass of level version allows to define which level(s) will be considered to determine the building blocks of the geometry."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SubElementaryLevelVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SubElementaryLevelVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#LevelVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SubElementaryLevelVersion> <http://www.w3.org/2000/01/rdf-schema#label> "SubElementaryLevelVersion"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SubElementaryLevelVersion> <http://www.w3.org/2000/01/rdf-schema#comment> "A SubLevel subclass used for levels below the Elementary levels."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SubElementaryLevelVersion> <http://www.w3.org/2002/07/owl#equivalentClass> _:B0163bfecX2D5bbeX2D4975X2D8a86X2D9a3b6d3a4ee5 <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Unit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Unit> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Territory> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Unit> <http://www.w3.org/2002/07/owl#equivalentClass> _:Bcf89c6efX2D8d01X2D4ec7X2Da65dX2D8696ee61c828 <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasVersion> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#Version> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasVersion> <http://www.w3.org/2000/01/rdf-schema#label> "hasVersion" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasVersion> <http://www.w3.org/2000/01/rdf-schema#comment> "Links any versionable object to its versions. Classes of the object and its version should be coherent (ex : Unit and UnitVersion)"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#UnitVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#UnitVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#UnitVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:B4ecfd3c8X2D7e7aX2D4d9bX2D80ceX2D3861db87df30 <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#UnitVersion> <http://www.w3.org/2002/07/owl#equivalentClass> _:B926320b1X2D770eX2D49c8X2D83e9X2D4db66574b54a <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isMemberOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isMemberOf> <http://www.w3.org/2000/01/rdf-schema#label> "isMemberOf" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isMemberOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the level of an UnitVersion."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#validityPeriod> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#validityPeriod> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Version> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#validityPeriod> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TemporalPrimitive> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#validityPeriod> <http://www.w3.org/2000/01/rdf-schema#label> "validityPeriod" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#validityPeriod> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the time interval where the state described by a version is valid."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#properContains> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#properContains> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#contains> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#properContains> <http://www.w3.org/2000/01/rdf-schema#label> "properContains"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#properContains> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes a version geometrically strictly included inside another unit version. In most cases, it is equivalent to the contains property, except when a sub territory is coextensive to the subject territory of a triple involving this property, in which case properContains does not apply."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#unionOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#unionOf> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#AreaUnion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#unionOf> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#unionOf> <http://www.w3.org/2000/01/rdf-schema#label> "unionOf"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#unionOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the areas which are taking part into an AreaUnion."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#NonVoidArea> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#NonVoidArea> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#NonVoidArea> <http://www.w3.org/2002/07/owl#disjointWith> <https://w3id.org/HHT#VoidArea> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#NonVoidArea> <http://www.w3.org/2000/01/rdf-schema#label> "NonVoidArea"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#NonVoidArea> <http://www.w3.org/2000/01/rdf-schema#comment> "Any Area with an actual extent."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#NonVoidArea> <http://www.w3.org/2002/07/owl#equivalentClass> _:Bc5c20980X2Dcb90X2D4cb4X2D94e7X2D283f5279953c <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#complementaryTo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#complementaryTo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#complementaryTo> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#AreaComplementary> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#complementaryTo> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#complementaryTo> <http://www.w3.org/2000/01/rdf-schema#label> "complementaryTo"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#complementaryTo> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the area to which a AreaComplementary is the complementary."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#complementaryWithRegardOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#complementaryWithRegardOf> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#AreaComplementary> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#complementaryWithRegardOf> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#complementaryWithRegardOf> <http://www.w3.org/2000/01/rdf-schema#label> "complementaryWithRegardOf"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#complementaryWithRegardOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the area regarding which the AreaComplementary is supposed to denote."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#operatorCardinality> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#operatorCardinality> <http://www.w3.org/2000/01/rdf-schema#domain> _:Bc222b816X2D96edX2D4b70X2Da33aX2D44433e03eecf <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#operatorCardinality> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#operatorCardinality> <http://www.w3.org/2000/01/rdf-schema#label> "operatorCardinality"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#operatorCardinality> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the expected number of areas taking part into the operatively created area."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#operativeContent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#operativeContent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#operativeContent> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2002/07/owl#topObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#operativeContent> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#operativeContent> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#operativeContent> <http://www.w3.org/2000/01/rdf-schema#label> "operativeContent"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#operativeContent> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes a contains property that points to an Area resulting from a set Operation."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#contains> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#contains> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#contains> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#InverseFunctionalProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#contains> <http://www.w3.org/2002/07/owl#propertyChainAxiom> _:Beac1447cX2De41eX2D40cfX2D9446X2D949ec88d962a <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#contains> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#contains> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#contains> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#isLocatedIn> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#contains> <http://www.w3.org/2000/01/rdf-schema#label> "contains" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#contains> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes a version geometrically included inside another unit version."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasComponent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasComponent> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#BlockGeometry> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasComponent> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#stableBlockArea> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasComponent> <http://www.w3.org/2000/01/rdf-schema#label> "hasComponent"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasComponent> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the parts of a BlockGeometry."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2002/07/owl#topObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#BlockGeometry> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/2000/01/rdf-schema#label> "hasSetGeometry"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the geometry as a set of stableBlockAreas with a declared cardinality."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasGeometry> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasGeometry> <http://www.w3.org/2000/01/rdf-schema#domain> _:Bb3562298X2D9eadX2D4186X2DaebdX2Db8223598b5ed <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasGeometry> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#stableBlockArea> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasGeometry> <http://www.w3.org/2000/01/rdf-schema#label> "hasGeometry"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasGeometry> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the StableBlockAreas used to describe the geometry."@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#originalOrganization> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#resultingOrganization> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.cidoc-crm.org/cidoc-crm/E74_Group> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/2000/01/rdf-schema#label> "joined with"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/2000/01/rdf-schema#label> "verband mit"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/2000/01/rdf-schema#label> "加入"@zh <https://example.org/ontologyGraph> .
-<http://www.w3.org/ns/org#originalOrganization> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<http://www.w3.org/ns/org#resultingOrganization> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "Group"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "Groupe"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "Grupo"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "Menschliche Gruppe"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "Ομάδα"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "Группа"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "团体"@zh <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#originalOrganization> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#resultingOrganization> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.cidoc-crm.org/cidoc-crm/E74_Group> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/2000/01/rdf-schema#label> "entließ von"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/2000/01/rdf-schema#label> "separated from"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/2000/01/rdf-schema#label> "脱离"@zh <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P151_was_formed_from> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P151_was_formed_from> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#originalOrganization> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P151_was_formed_from> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#resultingOrganization> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P151_was_formed_from> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.cidoc-crm.org/cidoc-crm/E74_Group> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P151_was_formed_from> <http://www.w3.org/2000/01/rdf-schema#label> "was formed from"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P151_was_formed_from> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates an instance of E66 Formation with an instance of E74 Group from which the new group was formed preserving a sense of continuity such as in mission, membership or tradition."@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#resultingOrganization> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.cidoc-crm.org/cidoc-crm/E74_Group> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "a fondé"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "formou"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "has formed"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "hat gebildet"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "σχημάτισε"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "сформировал"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "已经组成"@zh <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates the instance of E66 Formation with the instance of E74 Group that it founded."@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#originalOrganization> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.cidoc-crm.org/cidoc-crm/E74_Group> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "a dissous"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "dissolved"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "dissolveu"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "löste auf"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "διέλυσε"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "распустил"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "解散了"@zh <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates the instance of E68 Dissolution with the instance of E74 Group that it disbanded."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#attachedTo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#attachedTo> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#attachedTo> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#attachedTo> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#hasActor> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#attachedTo> <http://www.w3.org/2000/01/rdf-schema#label> "attachedTo" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#attachedTo> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes an interaction with a territory."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasActor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasActor> <http://www.w3.org/2000/01/rdf-schema#label> "hasActor" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasActor> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes an Actor impacting a territory." <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "Actor"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "Agent"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "Agente"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "Akteur"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "Δράστης"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "Агент"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "参与者"@zh <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#comment> "This class comprises people, either individually or in groups, who have the potential to perform intentional actions of kinds for which someone may be held responsible."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#TerritoryVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#TerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Version> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#TerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#TimeStableArea> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#TerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#label> "TerritoryVersion" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#TerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#comment> "Geographical area, which is defined by any human division."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaComplementary> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaComplementary> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaComplementary> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Bacd8253bX2D5e71X2D4c25X2DbacfX2D9ae866a0c0f2 <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaComplementary> <http://www.w3.org/2000/01/rdf-schema#label> "AreaComplementary"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaComplementary> <http://www.w3.org/2000/01/rdf-schema#comment> "An area defined as the geometrical complementary of a defined area with regard to another area."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isLocatedIn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isLocatedIn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isLocatedIn> <http://www.w3.org/2000/01/rdf-schema#label> "isLocatedIn" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isLocatedIn> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the location of a unit version inside another one."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#defines> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#defines> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#attachedTo> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#defines> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#UnitVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#defines> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#isDefinedBy> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#defines> <http://www.w3.org/2000/01/rdf-schema#label> "defines" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#defines> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the units an actor has normalized."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isDefinedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isDefinedBy> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasActor> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isDefinedBy> <http://www.w3.org/2000/01/rdf-schema#label> "isDefinedBy" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isDefinedBy> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the actor who normalizes the Unit and integrates it in a territorial division."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#BlockGeometry> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#BlockGeometry> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#TimeStableArea> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#BlockGeometry> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Ba449f485X2D0cc1X2D4fb4X2Db8f5X2D22bacd9e68ac <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#BlockGeometry> <http://www.w3.org/2000/01/rdf-schema#label> "BlockGeometry"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#BlockGeometry> <http://www.w3.org/2000/01/rdf-schema#comment> "A set of stableBlockArea that represents a geometry."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#stableBlockArea> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#stableBlockArea> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#TimeStableArea> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#stableBlockArea> <http://www.w3.org/2000/01/rdf-schema#label> "stable block area"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#stableBlockArea> <http://www.w3.org/2000/01/rdf-schema#comment> "A block supposed to exist at all times, that is characterized only by its geometrical extent and has not necessarily any particular meaning other than that."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasEquivalentLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasEquivalentLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasEquivalentLevel> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#LevelVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasEquivalentLevel> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#LevelVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasEquivalentLevel> <http://www.w3.org/2000/01/rdf-schema#label> "hasEquivalentLevel" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasEquivalentLevel> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the equivalence of levels regarding their rank in the hierarchy they take part in."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasID> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasID> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Unit> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasID> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#outerID> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasID> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#isIDOf> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasID> <http://www.w3.org/2000/01/rdf-schema#label> "hasID" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasID> <http://www.w3.org/2000/01/rdf-schema#comment> "Links a Unit to the outerID object representing its ID in another database."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isIDOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isIDOf> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#outerID> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isIDOf> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#Unit> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isIDOf> <http://www.w3.org/2000/01/rdf-schema#label> "isIDOf" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isIDOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the Unit which is attributed an ID from another database."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#outerID> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#outerID> <http://www.w3.org/2000/01/rdf-schema#label> "outerID" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#outerID> <http://www.w3.org/2000/01/rdf-schema#comment> "This class is a reification of an ID data field that differs from intern indexation. It is attached to an IDSource which describes the origin of said ID, and an idValue which corresponds to the actual ID."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasLevel> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#HierarchicalCriterion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasLevel> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#LevelVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasLevel> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#isLevelOf> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasLevel> <http://www.w3.org/2000/01/rdf-schema#label> "hasLevel" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasLevel> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes that a hierarchy based on Hierarchical Criterion uses a Level version."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isLevelOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isLevelOf> <http://www.w3.org/2000/01/rdf-schema#label> "isLevelOf" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isLevelOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the hierarchical Criterion a level version is related to."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#HierarchicalCriterion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#HierarchicalCriterion> <http://www.w3.org/2000/01/rdf-schema#label> "HierarchicalCriterion" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#HierarchicalCriterion> <http://www.w3.org/2000/01/rdf-schema#comment> "Concept, principle or nomenclature inducing a hierarchical division of territories."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasLevelVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasLevelVersion> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasLevelVersion> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Level> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasLevelVersion> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#ElementaryLevelVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasLevelVersion> <http://www.w3.org/2000/01/rdf-schema#label> "hasLevelVersion" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Level> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Level> <http://www.w3.org/2002/07/owl#equivalentClass> _:B59631cb3X2D2d68X2D487eX2D902dX2D2913e3869b76 <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasManagedUnitVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasUnitVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#ManagedUnit> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#ManagedUnitVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#label> "hasManagedUnitVersion" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUnitVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUnitVersion> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasTerritoryVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUnitVersion> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Unit> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUnitVersion> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#UnitVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUnitVersion> <http://www.w3.org/2000/01/rdf-schema#label> "hasUnitVersion" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ManagedUnit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ManagedUnit> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Unit> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ManagedUnit> <http://www.w3.org/2000/01/rdf-schema#label> "ManagedUnit" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ManagedUnit> <http://www.w3.org/2000/01/rdf-schema#comment> "A subclass of Unit to describe Units directly managed by an actor, which often is an institution."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ManagedUnit> <http://www.w3.org/2002/07/owl#equivalentClass> _:Bcacdf7ecX2D2807X2D40e9X2Dad10X2D2f3307d2a54a <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ManagedUnitVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#UnitVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#label> "ManagedUnitVersion" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#comment> "Subtype of UnitVersion that adds the notion of the influence of the actors over it."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ManagedUnitVersion> <http://www.w3.org/2002/07/owl#equivalentClass> _:B1fbf6d67X2D0138X2D4593X2Dac9bX2Dae9be9fa6bdd <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasMember> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasMember> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#LevelVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasMember> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#UnitVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasMember> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#isMemberOf> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasMember> <http://www.w3.org/2000/01/rdf-schema#label> "hasMember" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasMember> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes that a Level Version is the level of a Unit Version."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasResident> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasResident> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasActor> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasResident> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#residesIn> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasResident> <http://www.w3.org/2000/01/rdf-schema#label> "hasResident" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasResident> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes a Person living in a territory."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#residesIn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#residesIn> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#attachedTo> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#residesIn> <http://www.w3.org/2000/01/rdf-schema#label> "residesIn" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#residesIn> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the residence of an actor. It may be its main or secundary residence."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/2002/07/owl#propertyChainAxiom> _:Bd4c666e3X2D8809X2D4a6cX2Da4c4X2Ded4c47fe3f83 <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#LevelVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#LevelVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#hasUpperLevel> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/2000/01/rdf-schema#label> "hasSubLevel" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes hierarchical superiority of a level version to another."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUpperLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUpperLevel> <http://www.w3.org/2002/07/owl#propertyChainAxiom> _:B0ebfdd11X2D9224X2D4150X2Da823X2D04d3ca2f0526 <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUpperLevel> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#LevelVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUpperLevel> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#LevelVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUpperLevel> <http://www.w3.org/2000/01/rdf-schema#label> "hasUpperLevel" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUpperLevel> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes hierarchical inferiority of a level version to another."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#contains> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#UnitVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#UnitVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#hasUpperUnit> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/2000/01/rdf-schema#label> "hasSubUnit" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the hierarchical direct lower territory."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUpperUnit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUpperUnit> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#isLocatedIn> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUpperUnit> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#UnitVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUpperUnit> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#UnitVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUpperUnit> <http://www.w3.org/2000/01/rdf-schema#label> "hasUpperUnit" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasUpperUnit> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the hierarchical direct upper territory."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasTerritoryVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasTerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasTerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Territory> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasTerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#hasTerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#label> "hasTerritoryVersion" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Territory> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Territory> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.opengis.net/ont/geosparql#Feature> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Territory> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Area> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Territory> <http://www.w3.org/2000/01/rdf-schema#label> "Territory" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Version> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Version> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:B0cc03a11X2Df080X2D4ec1X2Db385X2D80ffad908b1a <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Version> <http://www.w3.org/2000/01/rdf-schema#label> "Version" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Version> <http://www.w3.org/2000/01/rdf-schema#comment> "Time slice representing a temporary state of an object. It is attached to said object, which bears the identity."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#intersectionOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#intersectionOf> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#AreaIntersection> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#intersectionOf> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#intersectionOf> <http://www.w3.org/2000/01/rdf-schema#label> "intersectionOf"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#intersectionOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the areas which are taking part into an AreaIntersection."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaIntersection> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaIntersection> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaIntersection> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:B7e872d41X2Db906X2D442dX2D9dbaX2Dff78eec32534 <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaIntersection> <http://www.w3.org/2000/01/rdf-schema#label> "AreaIntersection"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaIntersection> <http://www.w3.org/2000/01/rdf-schema#comment> "An area resulting from the geometrical intersection of two areas."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isFrom> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isFrom> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#outerID> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isFrom> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#IDSource> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isFrom> <http://www.w3.org/2000/01/rdf-schema#label> "isFrom" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isFrom> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the source of an outer ID."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#IDSource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#IDSource> <http://www.w3.org/2000/01/rdf-schema#label> "IDSource" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#IDSource> <http://www.w3.org/2000/01/rdf-schema#comment> "This class describes abstractly historical databases from which IDs can be collected, in order to improve reusability of data."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isManagedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isManagedBy> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasActor> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isManagedBy> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#manages> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isManagedBy> <http://www.w3.org/2000/01/rdf-schema#label> "isManagedBy" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isManagedBy> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the actor managing a ManagedUnit."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#manages> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#manages> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#attachedTo> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#manages> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#ManagedUnitVersion> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#manages> <http://www.w3.org/2000/01/rdf-schema#label> "manages" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#manages> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the ManagedUnits which an actor manages."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SetAreaConstruction> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SetAreaConstruction> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#TimeStableArea> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SetAreaConstruction> <http://www.w3.org/2000/01/rdf-schema#label> "SetAreaConstruction"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SetAreaConstruction> <http://www.w3.org/2000/01/rdf-schema#comment> "A superclass for all areas that result from a classical set operation."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SetAreaConstruction> <http://www.w3.org/2002/07/owl#disjointUnionOf> _:Bf63232c2X2D80c3X2D4266X2D8c89X2D6624bf1aa7f6 <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaUnion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaUnion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaUnion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:B3748bf11X2D3627X2D4da5X2D8635X2D5c9aecd62086 <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaUnion> <http://www.w3.org/2000/01/rdf-schema#label> "AreaUnion"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#AreaUnion> <http://www.w3.org/2000/01/rdf-schema#comment> "Area resulting from the geometrical union of several areas."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#TemporalPrimitive> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#TemporalPrimitive> <http://www.w3.org/2000/01/rdf-schema#label> "Temporal Primitive"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#TemporalPrimitive> <http://www.w3.org/2000/01/rdf-schema#comment> "Any marker that could be used as temporal primitive for HHT."@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P168_place_is_defined_by> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P168_place_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P168_place_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#label> "place is defined by"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P168_place_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates an instance of E53 Place with an instance of E94 Space Primitive that defines it. Syntactic variants or use of different scripts may result in multiple instances of E94 Space Primitive defining exactly the same place. Transformations between different reference systems always result in new definitions of places approximating each other and not in alternative definitions."@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P169i_spacetime_volume_is_defined_by> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P169i_spacetime_volume_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P169i_spacetime_volume_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#label> "spacetime volume is defined by"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P169i_spacetime_volume_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#comment> "Scope note for 'P169': This property associates an instance of E95 Spacetime Primitive with the instance of E92 Spacetime Volume it defines."@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P170i_time_is_defined_by> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P170i_time_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P170i_time_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#label> "time is defined by"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P171_at_some_place_within> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P171_at_some_place_within> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P171_at_some_place_within> <http://www.w3.org/2000/01/rdf-schema#label> "at some place within"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P172_contains> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P172_contains> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P172_contains> <http://www.w3.org/2000/01/rdf-schema#label> "contains"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P190_has_symbolic_content> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P190_has_symbolic_content> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P190_has_symbolic_content> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P190_has_symbolic_content> <http://www.w3.org/2000/01/rdf-schema#label> "has symbolic content"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "a pour note"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "has note"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "hat Anmerkung"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "tem nota"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "έχει επεξήγηση"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "имеет примечание"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "有注释"@zh <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "a pour nombre de parties"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "has number of parts"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "hat Anzahl Teile"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "tem número de partes"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "έχει αριθμό μερών"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "имеет число частей"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "有组成部分数"@zh <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "beginning is qualified by"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "début est qualifié par"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "hat Anfangsbegründung"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "início é qualificado por"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "αρχή προσδιορίζεται από"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "начало ограничено"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "起始限定"@zh <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates an instance of E52 Time-Span with a note detailing the scholarly or scientific opinions and justifications about the certainty, precision, sources etc. of its beginning. Such notes may also be used to elaborate arguments about constraints or to give explanations of alternatives."@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "end is qualified by"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "fin est qualifiée par"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "final é qualificado por"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "hat Begründung des Endes"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "τέλος προσδιορίζεται από"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "конец ограничен"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "结束限定"@zh <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates an instance of E52 Time-Span with a note detailing the scholarly or scientific opinions and justifications about the end of this time-span concerning certainty, precision, sources etc. This property may also be used to describe arguments constraining possible dates and to distinguish reasons for alternative dates."@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "abrange no mínimo"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "andauernd während"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "couvre au moins"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "ongoing throughout"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "καθόλη τη διάρκεια του/της"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "длится в течение"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "最短范围是"@zh <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates an instance of E52 Time-Span with an instance of E61 Time Primitive specifying a minimum period of time covered by it. Since Time-Spans may not have precisely known temporal extents, the CIDOC CRM supports statements about the minimum and maximum temporal extents of Time-Spans. This property allows a Time-Span’s minimum temporal extent (i.e., its inner boundary) to be assigned an E61 Time Primitive value. Time Primitives are treated by the CIDOC CRM as application or system specific date intervals, and are not further analysed. If different sources of evidence justify different minimum extents without contradicting each other, the smallest interval including all these extents will be the best estimate. This should be taken into account for information integration."@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "Ende des Anfangs"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "end of the begin"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "fim do início"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "fin du début"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "τέλος της αρχής"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "конец начала"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "Anfang vom Ende"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "begin of the end"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "começar do fim"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "début de la fin"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "αρχή του τέλους"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "начать в конце"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "abrange no máximo"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "at some time within"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "couvre au plus"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "irgendwann innerhalb von"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "κάποτε εντός"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "некоторое время в течение"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "最长范围是"@zh <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#comment> "This property describes the maximum period of time within which an E52 Time-Span falls. Since Time-Spans may not have precisely known temporal extents, the CIDOC CRM supports statements about the minimum and maximum temporal extents of Time-Spans. This property allows a Time-Span’s maximum temporal extent (i.e., its outer boundary) to be assigned an E61 Time Primitive value. Time Primitives are treated by the CIDOC CRM as application or system specific date intervals, and are not further analysed. If different sources of evidence justify different maximum extents without contradicting each other, the resulting intersection of all these extents will be the best estimate. This should be taken into account for information integration."@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "Anfang des Anfangs"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "begin of the begin"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "começar do início"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "début du début"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "αρχή της αρχής"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "начать с начала"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "Ende vom Ende"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "end of the end"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "fim do fim"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "fin de la fin"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "τέλος του τέλους"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "конец конец"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "a la valeur"@fr <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "has value"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "hat Wert"@de <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "tem valor"@pt <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "έχει τιμή"@el <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "имеет значение"@ru <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "有数值"@zh <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#comment> "This property allows an instance of E54 Dimension to be approximated by an instance of E60 Number primitive."@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90a_has_lower_value_limit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90a_has_lower_value_limit> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90a_has_lower_value_limit> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90a_has_lower_value_limit> <http://www.w3.org/2000/01/rdf-schema#label> "has lower value limit"@en <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90b_has_upper_value_limit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90b_has_upper_value_limit> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90b_has_upper_value_limit> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/ontologyGraph> .
-<http://www.cidoc-crm.org/cidoc-crm/P90b_has_upper_value_limit> <http://www.w3.org/2000/01/rdf-schema#label> "has upper value limit"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#idObardi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#idObardi> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Unit> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#idObardi> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#idObardi> <http://www.w3.org/2000/01/rdf-schema#label> "idObardi" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#idObardi> <http://www.w3.org/2000/01/rdf-schema#comment> "An unique ID used inside the ObARDI project to identify objects."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#idValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#idValue> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#outerID> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#idValue> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#idValue> <http://www.w3.org/2000/01/rdf-schema#label> "idValue" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#idValue> <http://www.w3.org/2000/01/rdf-schema#comment> "The value of an ID."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isDeprecated> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isDeprecated> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Version> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isDeprecated> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#boolean> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isDeprecated> <http://www.w3.org/2000/01/rdf-schema#label> "is deprecated"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#isDeprecated> <http://www.w3.org/2000/01/rdf-schema#comment> "A boolean, indicating whether a version is deprecated or not. Without any property regarding deprecation, a version is considered as non-deprecated."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#setCardinality> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#setCardinality> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#BlockGeometry> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#setCardinality> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#setCardinality> <http://www.w3.org/2000/01/rdf-schema#label> "setCardinality"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#setCardinality> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the number of elements of the geometry set described in a BlockGeometry."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#t1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#Variable> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#t2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#Variable> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#t3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#Variable> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#l> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#Variable> <https://example.org/ontologyGraph> .
-<http://www.opengis.net/ont/geosparql#Feature> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<http://www.w3.org/2006/time#Interval> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<http://www.w3.org/2006/time#Interval> <http://www.w3.org/2000/01/rdf-schema#label> "Interval" <https://example.org/ontologyGraph> .
-<http://www.w3.org/2006/time#TemporalPosition> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<http://www.w3.org/2006/time#TemporalPosition> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#TemporalPrimitive> <https://example.org/ontologyGraph> .
-<http://www.w3.org/ns/org#Organization> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<http://www.w3.org/ns/org#Organization> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.cidoc-crm.org/cidoc-crm/E74_Group> <https://example.org/ontologyGraph> .
-<http://xmlns.com/foaf/0.1/Person> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Area> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Area> <http://www.w3.org/2000/01/rdf-schema#label> "Area"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#Area> <http://www.w3.org/2000/01/rdf-schema#comment> "Any object characterised by a geospatial extent."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#TimeStableArea> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#TimeStableArea> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Area> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#TimeStableArea> <http://www.w3.org/2000/01/rdf-schema#label> "TimeStableArea"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#TimeStableArea> <http://www.w3.org/2000/01/rdf-schema#comment> "An area which is considered to be stable during its whole existence which can be bounded or not. Typically, as they remain stable, their geometry does not depend on time."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ElementaryLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ElementaryLevel> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Level> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ElementaryLevel> <http://www.w3.org/2002/07/owl#disjointWith> <https://w3id.org/HHT#SubElementaryLevel> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ElementaryLevel> <http://www.w3.org/2000/01/rdf-schema#label> "ElementaryLevel" <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ElementaryLevel> <http://www.w3.org/2000/01/rdf-schema#comment> "This subclass of level allows to define which level(s) will be considered to determine the building blocks of the geometry."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#ElementaryLevel> <http://www.w3.org/2002/07/owl#equivalentClass> _:Befb6624eX2Da68fX2D41cdX2D9481X2D216990cf00c2 <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SubElementaryLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SubElementaryLevel> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Level> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SubElementaryLevel> <http://www.w3.org/2000/01/rdf-schema#label> "SubElementaryLevel"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SubElementaryLevel> <http://www.w3.org/2000/01/rdf-schema#comment> "A Level that is under an ElementaryLevel. Think typically of Buildings if a city is an ElementaryLevel."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#SubElementaryLevel> <http://www.w3.org/2002/07/owl#equivalentClass> _:B64a2c689X2D0428X2D4168X2D98d5X2D2b0f73944add <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#VoidArea> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#VoidArea> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#VoidArea> <http://www.w3.org/2000/01/rdf-schema#label> "VoidArea"@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#VoidArea> <http://www.w3.org/2000/01/rdf-schema#comment> "An area whose with no extent, meaning its geometrical extent is null."@en <https://example.org/ontologyGraph> .
-<https://w3id.org/HHT#VoidArea> <http://www.w3.org/2002/07/owl#equivalentClass> _:B767a88e1X2D4964X2D4a22X2D9c5dX2D8e83fcf320a2 <https://example.org/ontologyGraph> .
+<https://w3id.org/HHT#LevelVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#LevelVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Version> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#LevelVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:B3dca560dX2D159eX2D4ec1X2Db1cfX2D624cc2760e1b <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ElementaryLevelVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ElementaryLevelVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#LevelVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ElementaryLevelVersion> <http://www.w3.org/2000/01/rdf-schema#label> "ElementaryLevelVersion" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ElementaryLevelVersion> <http://www.w3.org/2000/01/rdf-schema#comment> "This subclass of level version allows to define which level(s) will be considered to determine the building blocks of the geometry."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SubElementaryLevelVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SubElementaryLevelVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#LevelVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SubElementaryLevelVersion> <http://www.w3.org/2000/01/rdf-schema#label> "SubElementaryLevelVersion"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SubElementaryLevelVersion> <http://www.w3.org/2000/01/rdf-schema#comment> "A SubLevel subclass used for levels below the Elementary levels."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SubElementaryLevelVersion> <http://www.w3.org/2002/07/owl#equivalentClass> _:B0163bfecX2D5bbeX2D4975X2D8a86X2D9a3b6d3a4ee5 <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Unit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Unit> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Territory> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Unit> <http://www.w3.org/2002/07/owl#equivalentClass> _:Bcf89c6efX2D8d01X2D4ec7X2Da65dX2D8696ee61c828 <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasVersion> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#Version> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasVersion> <http://www.w3.org/2000/01/rdf-schema#label> "hasVersion" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasVersion> <http://www.w3.org/2000/01/rdf-schema#comment> "Links any versionable object to its versions. Classes of the object and its version should be coherent (ex : Unit and UnitVersion)"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#UnitVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#UnitVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#UnitVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:B4ecfd3c8X2D7e7aX2D4d9bX2D80ceX2D3861db87df30 <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#UnitVersion> <http://www.w3.org/2002/07/owl#equivalentClass> _:B926320b1X2D770eX2D49c8X2D83e9X2D4db66574b54a <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isMemberOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isMemberOf> <http://www.w3.org/2000/01/rdf-schema#label> "isMemberOf" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isMemberOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the level of an UnitVersion."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#validityPeriod> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#validityPeriod> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Version> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#validityPeriod> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TemporalPrimitive> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#validityPeriod> <http://www.w3.org/2000/01/rdf-schema#label> "validityPeriod" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#validityPeriod> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the time interval where the state described by a version is valid."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#properContains> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#properContains> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#contains> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#properContains> <http://www.w3.org/2000/01/rdf-schema#label> "properContains"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#properContains> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes a version geometrically strictly included inside another unit version. In most cases, it is equivalent to the contains property, except when a sub territory is coextensive to the subject territory of a triple involving this property, in which case properContains does not apply."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#unionOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#unionOf> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#AreaUnion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#unionOf> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#unionOf> <http://www.w3.org/2000/01/rdf-schema#label> "unionOf"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#unionOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the areas which are taking part into an AreaUnion."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#NonVoidArea> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#NonVoidArea> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#NonVoidArea> <http://www.w3.org/2002/07/owl#disjointWith> <https://w3id.org/HHT#VoidArea> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#NonVoidArea> <http://www.w3.org/2000/01/rdf-schema#label> "NonVoidArea"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#NonVoidArea> <http://www.w3.org/2000/01/rdf-schema#comment> "Any Area with an actual extent."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#NonVoidArea> <http://www.w3.org/2002/07/owl#equivalentClass> _:Bc5c20980X2Dcb90X2D4cb4X2D94e7X2D283f5279953c <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#complementaryTo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#complementaryTo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#complementaryTo> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#AreaComplementary> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#complementaryTo> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#complementaryTo> <http://www.w3.org/2000/01/rdf-schema#label> "complementaryTo"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#complementaryTo> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the area to which a AreaComplementary is the complementary."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#complementaryWithRegardOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#complementaryWithRegardOf> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#AreaComplementary> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#complementaryWithRegardOf> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#complementaryWithRegardOf> <http://www.w3.org/2000/01/rdf-schema#label> "complementaryWithRegardOf"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#complementaryWithRegardOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the area regarding which the AreaComplementary is supposed to denote."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#operatorCardinality> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#operatorCardinality> <http://www.w3.org/2000/01/rdf-schema#domain> _:Bc222b816X2D96edX2D4b70X2Da33aX2D44433e03eecf <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#operatorCardinality> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#operatorCardinality> <http://www.w3.org/2000/01/rdf-schema#label> "operatorCardinality"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#operatorCardinality> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the expected number of areas taking part into the operatively created area."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#operativeContent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#operativeContent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#operativeContent> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2002/07/owl#topObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#operativeContent> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#operativeContent> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#operativeContent> <http://www.w3.org/2000/01/rdf-schema#label> "operativeContent"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#operativeContent> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes a contains property that points to an Area resulting from a set Operation."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#contains> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#contains> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#contains> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#InverseFunctionalProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#contains> <http://www.w3.org/2002/07/owl#propertyChainAxiom> _:Beac1447cX2De41eX2D40cfX2D9446X2D949ec88d962a <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#contains> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#contains> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#contains> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#isLocatedIn> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#contains> <http://www.w3.org/2000/01/rdf-schema#label> "contains" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#contains> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes a version geometrically included inside another unit version."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasComponent> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasComponent> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#BlockGeometry> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasComponent> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#stableBlockArea> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasComponent> <http://www.w3.org/2000/01/rdf-schema#label> "hasComponent"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasComponent> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the parts of a BlockGeometry."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#FunctionalProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/2002/07/owl#topObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#BlockGeometry> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/2000/01/rdf-schema#label> "hasSetGeometry"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSetGeometry> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the geometry as a set of stableBlockAreas with a declared cardinality."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasGeometry> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasGeometry> <http://www.w3.org/2000/01/rdf-schema#domain> _:Bb3562298X2D9eadX2D4186X2DaebdX2Db8223598b5ed <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasGeometry> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#stableBlockArea> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasGeometry> <http://www.w3.org/2000/01/rdf-schema#label> "hasGeometry"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasGeometry> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the StableBlockAreas used to describe the geometry."@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#originalOrganization> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#resultingOrganization> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.cidoc-crm.org/cidoc-crm/E74_Group> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/2000/01/rdf-schema#label> "joined with"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/2000/01/rdf-schema#label> "verband mit"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P144_joined_with> <http://www.w3.org/2000/01/rdf-schema#label> "加入"@zh <https://example.org/DomainGraph> .
+<http://www.w3.org/ns/org#originalOrganization> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<http://www.w3.org/ns/org#resultingOrganization> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "Group"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "Groupe"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "Grupo"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "Menschliche Gruppe"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "Ομάδα"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "Группа"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E74_Group> <http://www.w3.org/2000/01/rdf-schema#label> "团体"@zh <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#originalOrganization> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#resultingOrganization> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.cidoc-crm.org/cidoc-crm/E74_Group> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/2000/01/rdf-schema#label> "entließ von"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/2000/01/rdf-schema#label> "separated from"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P146_separated_from> <http://www.w3.org/2000/01/rdf-schema#label> "脱离"@zh <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P151_was_formed_from> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P151_was_formed_from> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#originalOrganization> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P151_was_formed_from> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#resultingOrganization> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P151_was_formed_from> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.cidoc-crm.org/cidoc-crm/E74_Group> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P151_was_formed_from> <http://www.w3.org/2000/01/rdf-schema#label> "was formed from"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P151_was_formed_from> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates an instance of E66 Formation with an instance of E74 Group from which the new group was formed preserving a sense of continuity such as in mission, membership or tradition."@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#resultingOrganization> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.cidoc-crm.org/cidoc-crm/E74_Group> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "a fondé"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "formou"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "has formed"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "hat gebildet"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "σχημάτισε"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "сформировал"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#label> "已经组成"@zh <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P95_has_formed> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates the instance of E66 Formation with the instance of E74 Group that it founded."@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.w3.org/ns/org#originalOrganization> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.cidoc-crm.org/cidoc-crm/E74_Group> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "a dissous"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "dissolved"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "dissolveu"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "löste auf"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "διέλυσε"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "распустил"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#label> "解散了"@zh <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P99_dissolved> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates the instance of E68 Dissolution with the instance of E74 Group that it disbanded."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#attachedTo> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#attachedTo> <http://www.w3.org/2000/01/rdf-schema#domain> <http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#attachedTo> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#attachedTo> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#hasActor> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#attachedTo> <http://www.w3.org/2000/01/rdf-schema#label> "attachedTo" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#attachedTo> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes an interaction with a territory."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasActor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasActor> <http://www.w3.org/2000/01/rdf-schema#label> "hasActor" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasActor> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes an Actor impacting a territory." <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "Actor"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "Agent"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "Agente"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "Akteur"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "Δράστης"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "Агент"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#label> "参与者"@zh <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <http://www.w3.org/2000/01/rdf-schema#comment> "This class comprises people, either individually or in groups, who have the potential to perform intentional actions of kinds for which someone may be held responsible."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#TerritoryVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#TerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Version> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#TerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#TimeStableArea> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#TerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#label> "TerritoryVersion" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#TerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#comment> "Geographical area, which is defined by any human division."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaComplementary> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaComplementary> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaComplementary> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Bacd8253bX2D5e71X2D4c25X2DbacfX2D9ae866a0c0f2 <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaComplementary> <http://www.w3.org/2000/01/rdf-schema#label> "AreaComplementary"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaComplementary> <http://www.w3.org/2000/01/rdf-schema#comment> "An area defined as the geometrical complementary of a defined area with regard to another area."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isLocatedIn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isLocatedIn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isLocatedIn> <http://www.w3.org/2000/01/rdf-schema#label> "isLocatedIn" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isLocatedIn> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the location of a unit version inside another one."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#defines> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#defines> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#attachedTo> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#defines> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#UnitVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#defines> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#isDefinedBy> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#defines> <http://www.w3.org/2000/01/rdf-schema#label> "defines" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#defines> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the units an actor has normalized."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isDefinedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isDefinedBy> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasActor> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isDefinedBy> <http://www.w3.org/2000/01/rdf-schema#label> "isDefinedBy" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isDefinedBy> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the actor who normalizes the Unit and integrates it in a territorial division."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#BlockGeometry> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#BlockGeometry> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#TimeStableArea> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#BlockGeometry> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:Ba449f485X2D0cc1X2D4fb4X2Db8f5X2D22bacd9e68ac <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#BlockGeometry> <http://www.w3.org/2000/01/rdf-schema#label> "BlockGeometry"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#BlockGeometry> <http://www.w3.org/2000/01/rdf-schema#comment> "A set of stableBlockArea that represents a geometry."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#stableBlockArea> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#stableBlockArea> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#TimeStableArea> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#stableBlockArea> <http://www.w3.org/2000/01/rdf-schema#label> "stable block area"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#stableBlockArea> <http://www.w3.org/2000/01/rdf-schema#comment> "A block supposed to exist at all times, that is characterized only by its geometrical extent and has not necessarily any particular meaning other than that."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasEquivalentLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasEquivalentLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#TransitiveProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasEquivalentLevel> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#LevelVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasEquivalentLevel> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#LevelVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasEquivalentLevel> <http://www.w3.org/2000/01/rdf-schema#label> "hasEquivalentLevel" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasEquivalentLevel> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the equivalence of levels regarding their rank in the hierarchy they take part in."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasID> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasID> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Unit> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasID> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#outerID> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasID> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#isIDOf> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasID> <http://www.w3.org/2000/01/rdf-schema#label> "hasID" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasID> <http://www.w3.org/2000/01/rdf-schema#comment> "Links a Unit to the outerID object representing its ID in another database."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isIDOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isIDOf> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#outerID> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isIDOf> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#Unit> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isIDOf> <http://www.w3.org/2000/01/rdf-schema#label> "isIDOf" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isIDOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the Unit which is attributed an ID from another database."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#outerID> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#outerID> <http://www.w3.org/2000/01/rdf-schema#label> "outerID" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#outerID> <http://www.w3.org/2000/01/rdf-schema#comment> "This class is a reification of an ID data field that differs from intern indexation. It is attached to an IDSource which describes the origin of said ID, and an idValue which corresponds to the actual ID."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasLevel> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#HierarchicalCriterion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasLevel> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#LevelVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasLevel> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#isLevelOf> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasLevel> <http://www.w3.org/2000/01/rdf-schema#label> "hasLevel" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasLevel> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes that a hierarchy based on Hierarchical Criterion uses a Level version."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isLevelOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isLevelOf> <http://www.w3.org/2000/01/rdf-schema#label> "isLevelOf" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isLevelOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the hierarchical Criterion a level version is related to."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#HierarchicalCriterion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#HierarchicalCriterion> <http://www.w3.org/2000/01/rdf-schema#label> "HierarchicalCriterion" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#HierarchicalCriterion> <http://www.w3.org/2000/01/rdf-schema#comment> "Concept, principle or nomenclature inducing a hierarchical division of territories."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasLevelVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasLevelVersion> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasLevelVersion> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Level> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasLevelVersion> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#ElementaryLevelVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasLevelVersion> <http://www.w3.org/2000/01/rdf-schema#label> "hasLevelVersion" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Level> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Level> <http://www.w3.org/2002/07/owl#equivalentClass> _:B59631cb3X2D2d68X2D487eX2D902dX2D2913e3869b76 <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasManagedUnitVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasUnitVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#ManagedUnit> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#ManagedUnitVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#label> "hasManagedUnitVersion" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUnitVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUnitVersion> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasTerritoryVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUnitVersion> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Unit> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUnitVersion> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#UnitVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUnitVersion> <http://www.w3.org/2000/01/rdf-schema#label> "hasUnitVersion" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ManagedUnit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ManagedUnit> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Unit> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ManagedUnit> <http://www.w3.org/2000/01/rdf-schema#label> "ManagedUnit" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ManagedUnit> <http://www.w3.org/2000/01/rdf-schema#comment> "A subclass of Unit to describe Units directly managed by an actor, which often is an institution."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ManagedUnit> <http://www.w3.org/2002/07/owl#equivalentClass> _:Bcacdf7ecX2D2807X2D40e9X2Dad10X2D2f3307d2a54a <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ManagedUnitVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#UnitVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#label> "ManagedUnitVersion" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ManagedUnitVersion> <http://www.w3.org/2000/01/rdf-schema#comment> "Subtype of UnitVersion that adds the notion of the influence of the actors over it."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ManagedUnitVersion> <http://www.w3.org/2002/07/owl#equivalentClass> _:B1fbf6d67X2D0138X2D4593X2Dac9bX2Dae9be9fa6bdd <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasMember> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasMember> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#LevelVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasMember> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#UnitVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasMember> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#isMemberOf> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasMember> <http://www.w3.org/2000/01/rdf-schema#label> "hasMember" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasMember> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes that a Level Version is the level of a Unit Version."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasResident> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasResident> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasActor> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasResident> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#residesIn> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasResident> <http://www.w3.org/2000/01/rdf-schema#label> "hasResident" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasResident> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes a Person living in a territory."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#residesIn> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#residesIn> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#attachedTo> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#residesIn> <http://www.w3.org/2000/01/rdf-schema#label> "residesIn" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#residesIn> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the residence of an actor. It may be its main or secundary residence."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/2002/07/owl#propertyChainAxiom> _:Bd4c666e3X2D8809X2D4a6cX2Da4c4X2Ded4c47fe3f83 <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#LevelVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#LevelVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#hasUpperLevel> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/2000/01/rdf-schema#label> "hasSubLevel" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubLevel> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes hierarchical superiority of a level version to another."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUpperLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUpperLevel> <http://www.w3.org/2002/07/owl#propertyChainAxiom> _:B0ebfdd11X2D9224X2D4150X2Da823X2D04d3ca2f0526 <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUpperLevel> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#LevelVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUpperLevel> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#LevelVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUpperLevel> <http://www.w3.org/2000/01/rdf-schema#label> "hasUpperLevel" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUpperLevel> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes hierarchical inferiority of a level version to another."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#contains> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#UnitVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#UnitVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#hasUpperUnit> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/2000/01/rdf-schema#label> "hasSubUnit" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasSubUnit> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the hierarchical direct lower territory."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUpperUnit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUpperUnit> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#isLocatedIn> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUpperUnit> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#UnitVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUpperUnit> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#UnitVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUpperUnit> <http://www.w3.org/2000/01/rdf-schema#label> "hasUpperUnit" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasUpperUnit> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the hierarchical direct upper territory."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasTerritoryVersion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasTerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasTerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Territory> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasTerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#hasTerritoryVersion> <http://www.w3.org/2000/01/rdf-schema#label> "hasTerritoryVersion" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Territory> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Territory> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.opengis.net/ont/geosparql#Feature> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Territory> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Area> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Territory> <http://www.w3.org/2000/01/rdf-schema#label> "Territory" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Version> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Version> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:B0cc03a11X2Df080X2D4ec1X2Db385X2D80ffad908b1a <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Version> <http://www.w3.org/2000/01/rdf-schema#label> "Version" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Version> <http://www.w3.org/2000/01/rdf-schema#comment> "Time slice representing a temporary state of an object. It is attached to said object, which bears the identity."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#intersectionOf> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#intersectionOf> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#AreaIntersection> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#intersectionOf> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#intersectionOf> <http://www.w3.org/2000/01/rdf-schema#label> "intersectionOf"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#intersectionOf> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the areas which are taking part into an AreaIntersection."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaIntersection> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaIntersection> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaIntersection> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:B7e872d41X2Db906X2D442dX2D9dbaX2Dff78eec32534 <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaIntersection> <http://www.w3.org/2000/01/rdf-schema#label> "AreaIntersection"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaIntersection> <http://www.w3.org/2000/01/rdf-schema#comment> "An area resulting from the geometrical intersection of two areas."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isFrom> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isFrom> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#outerID> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isFrom> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#IDSource> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isFrom> <http://www.w3.org/2000/01/rdf-schema#label> "isFrom" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isFrom> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the source of an outer ID."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#IDSource> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#IDSource> <http://www.w3.org/2000/01/rdf-schema#label> "IDSource" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#IDSource> <http://www.w3.org/2000/01/rdf-schema#comment> "This class describes abstractly historical databases from which IDs can be collected, in order to improve reusability of data."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isManagedBy> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isManagedBy> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#hasActor> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isManagedBy> <http://www.w3.org/2002/07/owl#inverseOf> <https://w3id.org/HHT#manages> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isManagedBy> <http://www.w3.org/2000/01/rdf-schema#label> "isManagedBy" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isManagedBy> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the actor managing a ManagedUnit."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#manages> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#ObjectProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#manages> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <https://w3id.org/HHT#attachedTo> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#manages> <http://www.w3.org/2000/01/rdf-schema#range> <https://w3id.org/HHT#ManagedUnitVersion> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#manages> <http://www.w3.org/2000/01/rdf-schema#label> "manages" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#manages> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the ManagedUnits which an actor manages."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SetAreaConstruction> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SetAreaConstruction> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#TimeStableArea> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SetAreaConstruction> <http://www.w3.org/2000/01/rdf-schema#label> "SetAreaConstruction"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SetAreaConstruction> <http://www.w3.org/2000/01/rdf-schema#comment> "A superclass for all areas that result from a classical set operation."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SetAreaConstruction> <http://www.w3.org/2002/07/owl#disjointUnionOf> _:Bf63232c2X2D80c3X2D4266X2D8c89X2D6624bf1aa7f6 <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaUnion> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaUnion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaUnion> <http://www.w3.org/2000/01/rdf-schema#subClassOf> _:B3748bf11X2D3627X2D4da5X2D8635X2D5c9aecd62086 <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaUnion> <http://www.w3.org/2000/01/rdf-schema#label> "AreaUnion"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#AreaUnion> <http://www.w3.org/2000/01/rdf-schema#comment> "Area resulting from the geometrical union of several areas."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#TemporalPrimitive> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#TemporalPrimitive> <http://www.w3.org/2000/01/rdf-schema#label> "Temporal Primitive"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#TemporalPrimitive> <http://www.w3.org/2000/01/rdf-schema#comment> "Any marker that could be used as temporal primitive for HHT."@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P168_place_is_defined_by> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P168_place_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P168_place_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#label> "place is defined by"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P168_place_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates an instance of E53 Place with an instance of E94 Space Primitive that defines it. Syntactic variants or use of different scripts may result in multiple instances of E94 Space Primitive defining exactly the same place. Transformations between different reference systems always result in new definitions of places approximating each other and not in alternative definitions."@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P169i_spacetime_volume_is_defined_by> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P169i_spacetime_volume_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P169i_spacetime_volume_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#label> "spacetime volume is defined by"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P169i_spacetime_volume_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#comment> "Scope note for 'P169': This property associates an instance of E95 Spacetime Primitive with the instance of E92 Spacetime Volume it defines."@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P170i_time_is_defined_by> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P170i_time_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P170i_time_is_defined_by> <http://www.w3.org/2000/01/rdf-schema#label> "time is defined by"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P171_at_some_place_within> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P171_at_some_place_within> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P171_at_some_place_within> <http://www.w3.org/2000/01/rdf-schema#label> "at some place within"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P172_contains> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P172_contains> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P172_contains> <http://www.w3.org/2000/01/rdf-schema#label> "contains"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P190_has_symbolic_content> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P190_has_symbolic_content> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P190_has_symbolic_content> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P190_has_symbolic_content> <http://www.w3.org/2000/01/rdf-schema#label> "has symbolic content"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "a pour note"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "has note"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "hat Anmerkung"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "tem nota"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "έχει επεξήγηση"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "имеет примечание"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <http://www.w3.org/2000/01/rdf-schema#label> "有注释"@zh <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "a pour nombre de parties"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "has number of parts"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "hat Anzahl Teile"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "tem número de partes"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "έχει αριθμό μερών"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "имеет число частей"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P57_has_number_of_parts> <http://www.w3.org/2000/01/rdf-schema#label> "有组成部分数"@zh <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "beginning is qualified by"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "début est qualifié par"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "hat Anfangsbegründung"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "início é qualificado por"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "αρχή προσδιορίζεται από"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "начало ограничено"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "起始限定"@zh <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P79_beginning_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates an instance of E52 Time-Span with a note detailing the scholarly or scientific opinions and justifications about the certainty, precision, sources etc. of its beginning. Such notes may also be used to elaborate arguments about constraints or to give explanations of alternatives."@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P3_has_note> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "end is qualified by"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "fin est qualifiée par"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "final é qualificado por"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "hat Begründung des Endes"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "τέλος προσδιορίζεται από"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "конец ограничен"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#label> "结束限定"@zh <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P80_end_is_qualified_by> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates an instance of E52 Time-Span with a note detailing the scholarly or scientific opinions and justifications about the end of this time-span concerning certainty, precision, sources etc. This property may also be used to describe arguments constraining possible dates and to distinguish reasons for alternative dates."@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "abrange no mínimo"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "andauernd während"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "couvre au moins"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "ongoing throughout"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "καθόλη τη διάρκεια του/της"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "длится в течение"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#label> "最短范围是"@zh <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <http://www.w3.org/2000/01/rdf-schema#comment> "This property associates an instance of E52 Time-Span with an instance of E61 Time Primitive specifying a minimum period of time covered by it. Since Time-Spans may not have precisely known temporal extents, the CIDOC CRM supports statements about the minimum and maximum temporal extents of Time-Spans. This property allows a Time-Span’s minimum temporal extent (i.e., its inner boundary) to be assigned an E61 Time Primitive value. Time Primitives are treated by the CIDOC CRM as application or system specific date intervals, and are not further analysed. If different sources of evidence justify different minimum extents without contradicting each other, the smallest interval including all these extents will be the best estimate. This should be taken into account for information integration."@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "Ende des Anfangs"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "end of the begin"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "fim do início"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "fin du début"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "τέλος της αρχής"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81a_end_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "конец начала"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P81_ongoing_throughout> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "Anfang vom Ende"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "begin of the end"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "começar do fim"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "début de la fin"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "αρχή του τέλους"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P81b_begin_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "начать в конце"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "abrange no máximo"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "at some time within"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "couvre au plus"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "irgendwann innerhalb von"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "κάποτε εντός"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "некоторое время в течение"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#label> "最长范围是"@zh <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <http://www.w3.org/2000/01/rdf-schema#comment> "This property describes the maximum period of time within which an E52 Time-Span falls. Since Time-Spans may not have precisely known temporal extents, the CIDOC CRM supports statements about the minimum and maximum temporal extents of Time-Spans. This property allows a Time-Span’s maximum temporal extent (i.e., its outer boundary) to be assigned an E61 Time Primitive value. Time Primitives are treated by the CIDOC CRM as application or system specific date intervals, and are not further analysed. If different sources of evidence justify different maximum extents without contradicting each other, the resulting intersection of all these extents will be the best estimate. This should be taken into account for information integration."@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "Anfang des Anfangs"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "begin of the begin"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "começar do início"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "début du début"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "αρχή της αρχής"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82a_begin_of_the_begin> <http://www.w3.org/2000/01/rdf-schema#label> "начать с начала"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P82_at_some_time_within> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "Ende vom Ende"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "end of the end"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "fim do fim"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "fin de la fin"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "τέλος του τέλους"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P82b_end_of_the_end> <http://www.w3.org/2000/01/rdf-schema#label> "конец конец"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "a la valeur"@fr <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "has value"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "hat Wert"@de <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "tem valor"@pt <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "έχει τιμή"@el <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "имеет значение"@ru <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#label> "有数值"@zh <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <http://www.w3.org/2000/01/rdf-schema#comment> "This property allows an instance of E54 Dimension to be approximated by an instance of E60 Number primitive."@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90a_has_lower_value_limit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90a_has_lower_value_limit> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90a_has_lower_value_limit> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90a_has_lower_value_limit> <http://www.w3.org/2000/01/rdf-schema#label> "has lower value limit"@en <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90b_has_upper_value_limit> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90b_has_upper_value_limit> <http://www.w3.org/2000/01/rdf-schema#subPropertyOf> <http://www.cidoc-crm.org/cidoc-crm/P90_has_value> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90b_has_upper_value_limit> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2000/01/rdf-schema#Literal> <https://example.org/DomainGraph> .
+<http://www.cidoc-crm.org/cidoc-crm/P90b_has_upper_value_limit> <http://www.w3.org/2000/01/rdf-schema#label> "has upper value limit"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#idObardi> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#idObardi> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Unit> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#idObardi> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#idObardi> <http://www.w3.org/2000/01/rdf-schema#label> "idObardi" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#idObardi> <http://www.w3.org/2000/01/rdf-schema#comment> "An unique ID used inside the ObARDI project to identify objects."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#idValue> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#idValue> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#outerID> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#idValue> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#string> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#idValue> <http://www.w3.org/2000/01/rdf-schema#label> "idValue" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#idValue> <http://www.w3.org/2000/01/rdf-schema#comment> "The value of an ID."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isDeprecated> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isDeprecated> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#Version> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isDeprecated> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#boolean> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isDeprecated> <http://www.w3.org/2000/01/rdf-schema#label> "is deprecated"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#isDeprecated> <http://www.w3.org/2000/01/rdf-schema#comment> "A boolean, indicating whether a version is deprecated or not. Without any property regarding deprecation, a version is considered as non-deprecated."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#setCardinality> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#DatatypeProperty> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#setCardinality> <http://www.w3.org/2000/01/rdf-schema#domain> <https://w3id.org/HHT#BlockGeometry> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#setCardinality> <http://www.w3.org/2000/01/rdf-schema#range> <http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#setCardinality> <http://www.w3.org/2000/01/rdf-schema#label> "setCardinality"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#setCardinality> <http://www.w3.org/2000/01/rdf-schema#comment> "Denotes the number of elements of the geometry set described in a BlockGeometry."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#t1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#Variable> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#t2> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#Variable> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#t3> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#Variable> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#l> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#Variable> <https://example.org/DomainGraph> .
+<http://www.opengis.net/ont/geosparql#Feature> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<http://www.w3.org/2006/time#Interval> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<http://www.w3.org/2006/time#Interval> <http://www.w3.org/2000/01/rdf-schema#label> "Interval" <https://example.org/DomainGraph> .
+<http://www.w3.org/2006/time#TemporalPosition> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<http://www.w3.org/2006/time#TemporalPosition> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#TemporalPrimitive> <https://example.org/DomainGraph> .
+<http://www.w3.org/ns/org#Organization> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<http://www.w3.org/ns/org#Organization> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <http://www.cidoc-crm.org/cidoc-crm/E74_Group> <https://example.org/DomainGraph> .
+<http://xmlns.com/foaf/0.1/Person> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Area> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Area> <http://www.w3.org/2000/01/rdf-schema#label> "Area"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#Area> <http://www.w3.org/2000/01/rdf-schema#comment> "Any object characterised by a geospatial extent."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#TimeStableArea> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#TimeStableArea> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Area> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#TimeStableArea> <http://www.w3.org/2000/01/rdf-schema#label> "TimeStableArea"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#TimeStableArea> <http://www.w3.org/2000/01/rdf-schema#comment> "An area which is considered to be stable during its whole existence which can be bounded or not. Typically, as they remain stable, their geometry does not depend on time."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ElementaryLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ElementaryLevel> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Level> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ElementaryLevel> <http://www.w3.org/2002/07/owl#disjointWith> <https://w3id.org/HHT#SubElementaryLevel> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ElementaryLevel> <http://www.w3.org/2000/01/rdf-schema#label> "ElementaryLevel" <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ElementaryLevel> <http://www.w3.org/2000/01/rdf-schema#comment> "This subclass of level allows to define which level(s) will be considered to determine the building blocks of the geometry."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#ElementaryLevel> <http://www.w3.org/2002/07/owl#equivalentClass> _:Befb6624eX2Da68fX2D41cdX2D9481X2D216990cf00c2 <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SubElementaryLevel> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SubElementaryLevel> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#Level> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SubElementaryLevel> <http://www.w3.org/2000/01/rdf-schema#label> "SubElementaryLevel"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SubElementaryLevel> <http://www.w3.org/2000/01/rdf-schema#comment> "A Level that is under an ElementaryLevel. Think typically of Buildings if a city is an ElementaryLevel."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#SubElementaryLevel> <http://www.w3.org/2002/07/owl#equivalentClass> _:B64a2c689X2D0428X2D4168X2D98d5X2D2b0f73944add <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#VoidArea> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#VoidArea> <http://www.w3.org/2000/01/rdf-schema#subClassOf> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#VoidArea> <http://www.w3.org/2000/01/rdf-schema#label> "VoidArea"@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#VoidArea> <http://www.w3.org/2000/01/rdf-schema#comment> "An area whose with no extent, meaning its geometrical extent is null."@en <https://example.org/DomainGraph> .
+<https://w3id.org/HHT#VoidArea> <http://www.w3.org/2002/07/owl#equivalentClass> _:B767a88e1X2D4964X2D4a22X2D9c5dX2D8e83fcf320a2 <https://example.org/DomainGraph> .
 <https://example.com/entityDoc1ArmagnacV1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/HHT#UnitVersion> <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation0___inferences> .
 <https://example.com/entityDoc1ArmagnacV1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/HHT#UnitVersion> <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation1___inferences> .
 <https://example.com/entityDoc1ArmagnacV1> <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <https://w3id.org/HHT#UnitVersion> <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation2___inferences> .
@@ -30013,263 +30013,263 @@ _:Bbaee13cf8b341a80e0d03742dc2fe92b <https://w3id.org/DHFC#derivesNewEntity> <ht
 <https://example.com/entityDoc1Pays> <https://w3id.org/HHT#hasMember> <https://example.com/entityDoc1BigorreV1> <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation1___inferences> .
 <https://example.com/entityDoc1Pays> <https://w3id.org/HHT#hasMember> <https://example.com/entityDoc1BigorreV1> <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation2___inferences> .
 <https://example.com/entityDoc1Pays> <https://w3id.org/HHT#hasMember> <https://example.com/entityDoc1BigorreV1> <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation3___inferences> .
-_:Beac1447cX2De41eX2D40cfX2D9446X2D949ec88d962a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#operativeContent> <https://example.org/ontologyGraph> .
-_:Beac1447cX2De41eX2D40cfX2D9446X2D949ec88d962a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B69f2fe07X2D88f7X2D4d35X2Db8e2X2D8f482735222a <https://example.org/ontologyGraph> .
-_:B69f2fe07X2D88f7X2D4d35X2Db8e2X2D8f482735222a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#unionOf> <https://example.org/ontologyGraph> .
-_:B69f2fe07X2D88f7X2D4d35X2Db8e2X2D8f482735222a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:Bb3562298X2D9eadX2D4186X2DaebdX2Db8223598b5ed <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:Bb3562298X2D9eadX2D4186X2DaebdX2Db8223598b5ed <http://www.w3.org/2002/07/owl#unionOf> _:Bf8167390X2D2038X2D4fa9X2D8887X2D9573baeab091 <https://example.org/ontologyGraph> .
-_:Bf8167390X2D2038X2D4fa9X2D8887X2D9573baeab091 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#AreaComplementary> <https://example.org/ontologyGraph> .
-_:Bf8167390X2D2038X2D4fa9X2D8887X2D9573baeab091 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B92ef4b26X2D9f7fX2D4aecX2D8a93X2Dcc3801ef6ba5 <https://example.org/ontologyGraph> .
-_:B92ef4b26X2D9f7fX2D4aecX2D8a93X2Dcc3801ef6ba5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-_:B92ef4b26X2D9f7fX2D4aecX2D8a93X2Dcc3801ef6ba5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:Bd4c666e3X2D8809X2D4a6cX2Da4c4X2Ded4c47fe3f83 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#hasMember> <https://example.org/ontologyGraph> .
-_:Bd4c666e3X2D8809X2D4a6cX2Da4c4X2Ded4c47fe3f83 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bb14ac95bX2Db6a0X2D4b5fX2Da7b2X2D3c32c10fdce9 <https://example.org/ontologyGraph> .
-_:Bb14ac95bX2Db6a0X2D4b5fX2Da7b2X2D3c32c10fdce9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#hasSubUnit> <https://example.org/ontologyGraph> .
-_:Bb14ac95bX2Db6a0X2D4b5fX2Da7b2X2D3c32c10fdce9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B34728f2eX2Da423X2D4278X2D9b1dX2Da16ab058ebe9 <https://example.org/ontologyGraph> .
-_:B34728f2eX2Da423X2D4278X2D9b1dX2Da16ab058ebe9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#isMemberOf> <https://example.org/ontologyGraph> .
-_:B34728f2eX2Da423X2D4278X2D9b1dX2Da16ab058ebe9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B0ebfdd11X2D9224X2D4150X2Da823X2D04d3ca2f0526 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#hasMember> <https://example.org/ontologyGraph> .
-_:B0ebfdd11X2D9224X2D4150X2Da823X2D04d3ca2f0526 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bbbc77488X2D5b8aX2D43dcX2Da621X2Df7e38cee32dd <https://example.org/ontologyGraph> .
-_:Bbbc77488X2D5b8aX2D43dcX2Da621X2Df7e38cee32dd <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#hasUpperUnit> <https://example.org/ontologyGraph> .
-_:Bbbc77488X2D5b8aX2D43dcX2Da621X2Df7e38cee32dd <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Ba9a775a2X2D965cX2D4e88X2D8a6eX2Ddc36bad7213f <https://example.org/ontologyGraph> .
-_:Ba9a775a2X2D965cX2D4e88X2D8a6eX2Ddc36bad7213f <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#isMemberOf> <https://example.org/ontologyGraph> .
-_:Ba9a775a2X2D965cX2D4e88X2D8a6eX2Ddc36bad7213f <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:Bc222b816X2D96edX2D4b70X2Da33aX2D44433e03eecf <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:Bc222b816X2D96edX2D4b70X2Da33aX2D44433e03eecf <http://www.w3.org/2002/07/owl#unionOf> _:Bb26b8351X2D1b03X2D460aX2D85c6X2D36d3e1dcfef7 <https://example.org/ontologyGraph> .
-_:Bb26b8351X2D1b03X2D460aX2D85c6X2D36d3e1dcfef7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#AreaIntersection> <https://example.org/ontologyGraph> .
-_:Bb26b8351X2D1b03X2D460aX2D85c6X2D36d3e1dcfef7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Be76003afX2D89b3X2D4148X2Db54dX2D52ed07193b8c <https://example.org/ontologyGraph> .
-_:Be76003afX2D89b3X2D4148X2Db54dX2D52ed07193b8c <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#AreaUnion> <https://example.org/ontologyGraph> .
-_:Be76003afX2D89b3X2D4148X2Db54dX2D52ed07193b8c <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:Bacd8253bX2D5e71X2D4c25X2DbacfX2D9ae866a0c0f2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:Bacd8253bX2D5e71X2D4c25X2DbacfX2D9ae866a0c0f2 <http://www.w3.org/2002/07/owl#intersectionOf> _:B747070ddX2Dfe75X2D4403X2Da12fX2D7c7475f55aab <https://example.org/ontologyGraph> .
-_:B747070ddX2Dfe75X2D4403X2Da12fX2D7c7475f55aab <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/ontologyGraph> .
-_:B747070ddX2Dfe75X2D4403X2Da12fX2D7c7475f55aab <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bb9ca3a83X2DeaffX2D4f31X2Da718X2D3ac213bba379 <https://example.org/ontologyGraph> .
-_:Bb9ca3a83X2DeaffX2D4f31X2Da718X2D3ac213bba379 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B72bbf328X2Dcbf4X2D42beX2Db1f9X2D802686484e17 <https://example.org/ontologyGraph> .
-_:Bb9ca3a83X2DeaffX2D4f31X2Da718X2D3ac213bba379 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B8395f9a8X2D2cc9X2D4921X2D864cX2D1b1a484de6ec <https://example.org/ontologyGraph> .
-_:B72bbf328X2Dcbf4X2D42beX2Db1f9X2D802686484e17 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B72bbf328X2Dcbf4X2D42beX2Db1f9X2D802686484e17 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#complementaryTo> <https://example.org/ontologyGraph> .
-_:B72bbf328X2Dcbf4X2D42beX2Db1f9X2D802686484e17 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-_:B8395f9a8X2D2cc9X2D4921X2D864cX2D1b1a484de6ec <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B50742c11X2Df7a7X2D4074X2D9e59X2Dec68671fc2ed <https://example.org/ontologyGraph> .
-_:B8395f9a8X2D2cc9X2D4921X2D864cX2D1b1a484de6ec <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B50742c11X2Df7a7X2D4074X2D9e59X2Dec68671fc2ed <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B50742c11X2Df7a7X2D4074X2D9e59X2Dec68671fc2ed <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#complementaryWithRegardOf> <https://example.org/ontologyGraph> .
-_:B50742c11X2Df7a7X2D4074X2D9e59X2Dec68671fc2ed <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-_:B7e872d41X2Db906X2D442dX2D9dbaX2Dff78eec32534 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:B7e872d41X2Db906X2D442dX2D9dbaX2Dff78eec32534 <http://www.w3.org/2002/07/owl#intersectionOf> _:Bb70d82d0X2Da447X2D4f99X2D92c3X2D7a61caac92c0 <https://example.org/ontologyGraph> .
-_:Bb70d82d0X2Da447X2D4f99X2D92c3X2D7a61caac92c0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B0f61dfd9X2D7361X2D41a1X2D87a4X2Dee0037cb28d9 <https://example.org/ontologyGraph> .
-_:Bb70d82d0X2Da447X2D4f99X2D92c3X2D7a61caac92c0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B4c508da7X2D5285X2D4df0X2D8525X2D743c84717f25 <https://example.org/ontologyGraph> .
-_:B0f61dfd9X2D7361X2D41a1X2D87a4X2Dee0037cb28d9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B0f61dfd9X2D7361X2D41a1X2D87a4X2Dee0037cb28d9 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#intersectionOf> <https://example.org/ontologyGraph> .
-_:B0f61dfd9X2D7361X2D41a1X2D87a4X2Dee0037cb28d9 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-_:B4c508da7X2D5285X2D4df0X2D8525X2D743c84717f25 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B143ff9f7X2D9f6fX2D443aX2Da73fX2D57a8d445ad14 <https://example.org/ontologyGraph> .
-_:B4c508da7X2D5285X2D4df0X2D8525X2D743c84717f25 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B143ff9f7X2D9f6fX2D443aX2Da73fX2D57a8d445ad14 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B143ff9f7X2D9f6fX2D443aX2Da73fX2D57a8d445ad14 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#operatorCardinality> <https://example.org/ontologyGraph> .
-_:B143ff9f7X2D9f6fX2D443aX2Da73fX2D57a8d445ad14 <http://www.w3.org/2002/07/owl#someValuesFrom> _:B28c05541X2D8bc3X2D4a1fX2D9e4eX2De91f206237c2 <https://example.org/ontologyGraph> .
-_:B28c05541X2D8bc3X2D4a1fX2D9e4eX2De91f206237c2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> <https://example.org/ontologyGraph> .
-_:B28c05541X2D8bc3X2D4a1fX2D9e4eX2De91f206237c2 <http://www.w3.org/2002/07/owl#onDatatype> <http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/ontologyGraph> .
-_:B28c05541X2D8bc3X2D4a1fX2D9e4eX2De91f206237c2 <http://www.w3.org/2002/07/owl#withRestrictions> _:B5862568fX2D15ceX2D44f5X2Dbd4fX2D2a65e466d3e9 <https://example.org/ontologyGraph> .
-_:B5862568fX2D15ceX2D44f5X2Dbd4fX2D2a65e466d3e9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bb4c15c45X2D5742X2D4019X2Db7a7X2D38faeb58ab53 <https://example.org/ontologyGraph> .
-_:B5862568fX2D15ceX2D44f5X2Dbd4fX2D2a65e466d3e9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:Bb4c15c45X2D5742X2D4019X2Db7a7X2D38faeb58ab53 <http://www.w3.org/2001/XMLSchema#minInclusive> "1"^^<http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/ontologyGraph> .
-_:B3748bf11X2D3627X2D4da5X2D8635X2D5c9aecd62086 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:B3748bf11X2D3627X2D4da5X2D8635X2D5c9aecd62086 <http://www.w3.org/2002/07/owl#intersectionOf> _:B008e345aX2D67c6X2D4eaeX2D9641X2D2e8d7bc6e797 <https://example.org/ontologyGraph> .
-_:B008e345aX2D67c6X2D4eaeX2D9641X2D2e8d7bc6e797 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Baddb1653X2D6b13X2D4122X2Dad27X2D6915e15ce13c <https://example.org/ontologyGraph> .
-_:B008e345aX2D67c6X2D4eaeX2D9641X2D2e8d7bc6e797 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B9dacf7f7X2D9a7fX2D4e50X2D81a9X2D6a2e9c68657c <https://example.org/ontologyGraph> .
-_:Baddb1653X2D6b13X2D4122X2Dad27X2D6915e15ce13c <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:Baddb1653X2D6b13X2D4122X2Dad27X2D6915e15ce13c <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#unionOf> <https://example.org/ontologyGraph> .
-_:Baddb1653X2D6b13X2D4122X2Dad27X2D6915e15ce13c <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-_:B9dacf7f7X2D9a7fX2D4e50X2D81a9X2D6a2e9c68657c <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B4850ad00X2Dcb13X2D4c6aX2Db065X2D04406ffeed50 <https://example.org/ontologyGraph> .
-_:B9dacf7f7X2D9a7fX2D4e50X2D81a9X2D6a2e9c68657c <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B4850ad00X2Dcb13X2D4c6aX2Db065X2D04406ffeed50 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B4850ad00X2Dcb13X2D4c6aX2Db065X2D04406ffeed50 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#operatorCardinality> <https://example.org/ontologyGraph> .
-_:B4850ad00X2Dcb13X2D4c6aX2Db065X2D04406ffeed50 <http://www.w3.org/2002/07/owl#someValuesFrom> _:B71ba0a7bX2Ddc2aX2D4c96X2D86b1X2Dbfbbf4f146db <https://example.org/ontologyGraph> .
-_:B71ba0a7bX2Ddc2aX2D4c96X2D86b1X2Dbfbbf4f146db <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> <https://example.org/ontologyGraph> .
-_:B71ba0a7bX2Ddc2aX2D4c96X2D86b1X2Dbfbbf4f146db <http://www.w3.org/2002/07/owl#onDatatype> <http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/ontologyGraph> .
-_:B71ba0a7bX2Ddc2aX2D4c96X2D86b1X2Dbfbbf4f146db <http://www.w3.org/2002/07/owl#withRestrictions> _:B7fd3db0cX2D593bX2D45d6X2D8777X2D9a795b00f5fe <https://example.org/ontologyGraph> .
-_:B7fd3db0cX2D593bX2D45d6X2D8777X2D9a795b00f5fe <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B5b4636f2X2D5ac0X2D4f87X2Db1e3X2Dd5471053be84 <https://example.org/ontologyGraph> .
-_:B7fd3db0cX2D593bX2D45d6X2D8777X2D9a795b00f5fe <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B5b4636f2X2D5ac0X2D4f87X2Db1e3X2Dd5471053be84 <http://www.w3.org/2001/XMLSchema#minInclusive> "1"^^<http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/ontologyGraph> .
-_:Ba449f485X2D0cc1X2D4fb4X2Db8f5X2D22bacd9e68ac <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:Ba449f485X2D0cc1X2D4fb4X2Db8f5X2D22bacd9e68ac <http://www.w3.org/2002/07/owl#intersectionOf> _:B5c667a42X2D67f4X2D408bX2D90ffX2D6dc1f17a069b <https://example.org/ontologyGraph> .
-_:B5c667a42X2D67f4X2D408bX2D90ffX2D6dc1f17a069b <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bd964b66eX2D659cX2D480aX2D8dcaX2D026109321988 <https://example.org/ontologyGraph> .
-_:B5c667a42X2D67f4X2D408bX2D90ffX2D6dc1f17a069b <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B4f2472a3X2D0b32X2D4207X2Da51fX2D3aff77994889 <https://example.org/ontologyGraph> .
-_:Bd964b66eX2D659cX2D480aX2D8dcaX2D026109321988 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:Bd964b66eX2D659cX2D480aX2D8dcaX2D026109321988 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasComponent> <https://example.org/ontologyGraph> .
-_:Bd964b66eX2D659cX2D480aX2D8dcaX2D026109321988 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#stableBlockArea> <https://example.org/ontologyGraph> .
-_:B4f2472a3X2D0b32X2D4207X2Da51fX2D3aff77994889 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B5fec2ac6X2Dac74X2D4cfaX2D92b9X2Dc6e60c949a52 <https://example.org/ontologyGraph> .
-_:B4f2472a3X2D0b32X2D4207X2Da51fX2D3aff77994889 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B5fec2ac6X2Dac74X2D4cfaX2D92b9X2Dc6e60c949a52 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B5fec2ac6X2Dac74X2D4cfaX2D92b9X2Dc6e60c949a52 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#setCardinality> <https://example.org/ontologyGraph> .
-_:B5fec2ac6X2Dac74X2D4cfaX2D92b9X2Dc6e60c949a52 <http://www.w3.org/2002/07/owl#someValuesFrom> _:B04b66a6aX2D5606X2D4cf0X2D8164X2D4b4bfc070a02 <https://example.org/ontologyGraph> .
-_:B04b66a6aX2D5606X2D4cf0X2D8164X2D4b4bfc070a02 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> <https://example.org/ontologyGraph> .
-_:B04b66a6aX2D5606X2D4cf0X2D8164X2D4b4bfc070a02 <http://www.w3.org/2002/07/owl#onDatatype> <http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/ontologyGraph> .
-_:B04b66a6aX2D5606X2D4cf0X2D8164X2D4b4bfc070a02 <http://www.w3.org/2002/07/owl#withRestrictions> _:Be210d9bcX2D7ef0X2D4758X2D8458X2D9de1957dab88 <https://example.org/ontologyGraph> .
-_:Be210d9bcX2D7ef0X2D4758X2D8458X2D9de1957dab88 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B5a477a43X2Db2e5X2D4e63X2D9e3fX2Da03c93d8d70b <https://example.org/ontologyGraph> .
-_:Be210d9bcX2D7ef0X2D4758X2D8458X2D9de1957dab88 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B5a477a43X2Db2e5X2D4e63X2D9e3fX2Da03c93d8d70b <http://www.w3.org/2001/XMLSchema#minInclusive> "1"^^<http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/ontologyGraph> .
-_:Befb6624eX2Da68fX2D41cdX2D9481X2D216990cf00c2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:Befb6624eX2Da68fX2D41cdX2D9481X2D216990cf00c2 <http://www.w3.org/2002/07/owl#intersectionOf> _:B57fb0c8cX2D0a59X2D4d54X2D848aX2Dc6e24448d847 <https://example.org/ontologyGraph> .
-_:B57fb0c8cX2D0a59X2D4d54X2D848aX2Dc6e24448d847 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#Level> <https://example.org/ontologyGraph> .
-_:B57fb0c8cX2D0a59X2D4d54X2D848aX2Dc6e24448d847 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B7ed5dba4X2Df587X2D4442X2D949aX2Dc9c563cb0ca7 <https://example.org/ontologyGraph> .
-_:B7ed5dba4X2Df587X2D4442X2D949aX2Dc9c563cb0ca7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B046048ceX2D4085X2D45fcX2Dae99X2Da86db5ec6073 <https://example.org/ontologyGraph> .
-_:B7ed5dba4X2Df587X2D4442X2D949aX2Dc9c563cb0ca7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B046048ceX2D4085X2D45fcX2Dae99X2Da86db5ec6073 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B046048ceX2D4085X2D45fcX2Dae99X2Da86db5ec6073 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasVersion> <https://example.org/ontologyGraph> .
-_:B046048ceX2D4085X2D45fcX2Dae99X2Da86db5ec6073 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#ElementaryLevelVersion> <https://example.org/ontologyGraph> .
-_:B59631cb3X2D2d68X2D487eX2D902dX2D2913e3869b76 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B59631cb3X2D2d68X2D487eX2D902dX2D2913e3869b76 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasVersion> <https://example.org/ontologyGraph> .
-_:B59631cb3X2D2d68X2D487eX2D902dX2D2913e3869b76 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#LevelVersion> <https://example.org/ontologyGraph> .
-_:B3dca560dX2D159eX2D4ec1X2Db1cfX2D624cc2760e1b <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B3dca560dX2D159eX2D4ec1X2Db1cfX2D624cc2760e1b <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#isLevelOf> <https://example.org/ontologyGraph> .
-_:B3dca560dX2D159eX2D4ec1X2Db1cfX2D624cc2760e1b <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#HierarchicalCriterion> <https://example.org/ontologyGraph> .
-_:Bcacdf7ecX2D2807X2D40e9X2Dad10X2D2f3307d2a54a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:Bcacdf7ecX2D2807X2D40e9X2Dad10X2D2f3307d2a54a <http://www.w3.org/2002/07/owl#intersectionOf> _:Bb6964a83X2D2b16X2D4b9eX2D862bX2D69b1ff4e3c5b <https://example.org/ontologyGraph> .
-_:Bb6964a83X2D2b16X2D4b9eX2D862bX2D69b1ff4e3c5b <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#Unit> <https://example.org/ontologyGraph> .
-_:Bb6964a83X2D2b16X2D4b9eX2D862bX2D69b1ff4e3c5b <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B996e48e7X2D1000X2D4566X2D91eaX2D9c9b8a13caa9 <https://example.org/ontologyGraph> .
-_:B996e48e7X2D1000X2D4566X2D91eaX2D9c9b8a13caa9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bd9c494dcX2Da5a5X2D4a06X2D91eaX2D9397d5f09922 <https://example.org/ontologyGraph> .
-_:B996e48e7X2D1000X2D4566X2D91eaX2D9c9b8a13caa9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:Bd9c494dcX2Da5a5X2D4a06X2D91eaX2D9397d5f09922 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:Bd9c494dcX2Da5a5X2D4a06X2D91eaX2D9397d5f09922 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasVersion> <https://example.org/ontologyGraph> .
-_:Bd9c494dcX2Da5a5X2D4a06X2D91eaX2D9397d5f09922 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#ManagedUnitVersion> <https://example.org/ontologyGraph> .
-_:B1fbf6d67X2D0138X2D4593X2Dac9bX2Dae9be9fa6bdd <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:B1fbf6d67X2D0138X2D4593X2Dac9bX2Dae9be9fa6bdd <http://www.w3.org/2002/07/owl#intersectionOf> _:B2bf57f57X2D6a8eX2D43b7X2D8708X2Df3c214ce941d <https://example.org/ontologyGraph> .
-_:B2bf57f57X2D6a8eX2D43b7X2D8708X2Df3c214ce941d <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#UnitVersion> <https://example.org/ontologyGraph> .
-_:B2bf57f57X2D6a8eX2D43b7X2D8708X2Df3c214ce941d <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bb8c98ae8X2Dd627X2D475eX2D91dcX2Dce4d8c0174fe <https://example.org/ontologyGraph> .
-_:Bb8c98ae8X2Dd627X2D475eX2D91dcX2Dce4d8c0174fe <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B4b72b15eX2D4a73X2D4387X2Db6f0X2D5ef155bda12e <https://example.org/ontologyGraph> .
-_:Bb8c98ae8X2Dd627X2D475eX2D91dcX2Dce4d8c0174fe <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B4b72b15eX2D4a73X2D4387X2Db6f0X2D5ef155bda12e <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B4b72b15eX2D4a73X2D4387X2Db6f0X2D5ef155bda12e <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#isManagedBy> <https://example.org/ontologyGraph> .
-_:B4b72b15eX2D4a73X2D4387X2Db6f0X2D5ef155bda12e <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <https://example.org/ontologyGraph> .
-_:Bc5c20980X2Dcb90X2D4cb4X2D94e7X2D283f5279953c <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:Bc5c20980X2Dcb90X2D4cb4X2D94e7X2D283f5279953c <http://www.w3.org/2002/07/owl#intersectionOf> _:B6987981dX2D4f93X2D4293X2D96c1X2Dd3f9012b41fc <https://example.org/ontologyGraph> .
-_:B6987981dX2D4f93X2D4293X2D96c1X2Dd3f9012b41fc <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/ontologyGraph> .
-_:B6987981dX2D4f93X2D4293X2D96c1X2Dd3f9012b41fc <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B656a8417X2Dcf87X2D4cf0X2D9e8fX2D03ed59232124 <https://example.org/ontologyGraph> .
-_:B656a8417X2Dcf87X2D4cf0X2D9e8fX2D03ed59232124 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bacb895d6X2D2f42X2D4a95X2Dac45X2D68b4c59a46fb <https://example.org/ontologyGraph> .
-_:B656a8417X2Dcf87X2D4cf0X2D9e8fX2D03ed59232124 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:Bacb895d6X2D2f42X2D4a95X2Dac45X2D68b4c59a46fb <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:Bacb895d6X2D2f42X2D4a95X2Dac45X2D68b4c59a46fb <http://www.w3.org/2002/07/owl#unionOf> _:Bd4416765X2De3a5X2D46a0X2Db283X2De06af9b5fbc4 <https://example.org/ontologyGraph> .
-_:Bd4416765X2De3a5X2D46a0X2Db283X2De06af9b5fbc4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B4cb9ad11X2D8d46X2D4d0eX2D9eddX2Df1cdc493f36b <https://example.org/ontologyGraph> .
-_:Bd4416765X2De3a5X2D46a0X2Db283X2De06af9b5fbc4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B026b9c4fX2DccffX2D4866X2D8545X2D9b712adf4294 <https://example.org/ontologyGraph> .
-_:B4cb9ad11X2D8d46X2D4d0eX2D9eddX2Df1cdc493f36b <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B4cb9ad11X2D8d46X2D4d0eX2D9eddX2Df1cdc493f36b <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasComponent> <https://example.org/ontologyGraph> .
-_:B4cb9ad11X2D8d46X2D4d0eX2D9eddX2Df1cdc493f36b <http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger> <https://example.org/ontologyGraph> .
-_:B026b9c4fX2DccffX2D4866X2D8545X2D9b712adf4294 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B9a54b185X2D14d1X2D4a72X2Da200X2Dd3608eeacfe9 <https://example.org/ontologyGraph> .
-_:B026b9c4fX2DccffX2D4866X2D8545X2D9b712adf4294 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B9a54b185X2D14d1X2D4a72X2Da200X2Dd3608eeacfe9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B9a54b185X2D14d1X2D4a72X2Da200X2Dd3608eeacfe9 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasGeometry> <https://example.org/ontologyGraph> .
-_:B9a54b185X2D14d1X2D4a72X2Da200X2Dd3608eeacfe9 <http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger> <https://example.org/ontologyGraph> .
-_:Bf63232c2X2D80c3X2D4266X2D8c89X2D6624bf1aa7f6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#NonVoidArea> <https://example.org/ontologyGraph> .
-_:Bf63232c2X2D80c3X2D4266X2D8c89X2D6624bf1aa7f6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bad76f4ecX2D6552X2D4ac5X2D8a12X2D227cfb1f0eae <https://example.org/ontologyGraph> .
-_:Bad76f4ecX2D6552X2D4ac5X2D8a12X2D227cfb1f0eae <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#VoidArea> <https://example.org/ontologyGraph> .
-_:Bad76f4ecX2D6552X2D4ac5X2D8a12X2D227cfb1f0eae <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B64a2c689X2D0428X2D4168X2D98d5X2D2b0f73944add <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:B64a2c689X2D0428X2D4168X2D98d5X2D2b0f73944add <http://www.w3.org/2002/07/owl#intersectionOf> _:B32a63927X2Db7b1X2D4214X2Dbfa0X2D84a24daa5cc3 <https://example.org/ontologyGraph> .
-_:B32a63927X2Db7b1X2D4214X2Dbfa0X2D84a24daa5cc3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#Level> <https://example.org/ontologyGraph> .
-_:B32a63927X2Db7b1X2D4214X2Dbfa0X2D84a24daa5cc3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bb2ddb38cX2D00daX2D4073X2D8613X2D858f931bf2da <https://example.org/ontologyGraph> .
-_:Bb2ddb38cX2D00daX2D4073X2D8613X2D858f931bf2da <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bae39b98bX2DedadX2D4077X2D855cX2D89029df25423 <https://example.org/ontologyGraph> .
-_:Bb2ddb38cX2D00daX2D4073X2D8613X2D858f931bf2da <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:Bae39b98bX2DedadX2D4077X2D855cX2D89029df25423 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:Bae39b98bX2DedadX2D4077X2D855cX2D89029df25423 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasVersion> <https://example.org/ontologyGraph> .
-_:Bae39b98bX2DedadX2D4077X2D855cX2D89029df25423 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#SubElementaryLevelVersion> <https://example.org/ontologyGraph> .
-_:B0163bfecX2D5bbeX2D4975X2D8a86X2D9a3b6d3a4ee5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:B0163bfecX2D5bbeX2D4975X2D8a86X2D9a3b6d3a4ee5 <http://www.w3.org/2002/07/owl#intersectionOf> _:Bd45eb390X2Df1d8X2D4f12X2Da9aaX2Dbf164ca86398 <https://example.org/ontologyGraph> .
-_:Bd45eb390X2Df1d8X2D4f12X2Da9aaX2Dbf164ca86398 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#LevelVersion> <https://example.org/ontologyGraph> .
-_:Bd45eb390X2Df1d8X2D4f12X2Da9aaX2Dbf164ca86398 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bf8b06784X2D57d9X2D4109X2Db220X2D1481c7fab64d <https://example.org/ontologyGraph> .
-_:Bf8b06784X2D57d9X2D4109X2Db220X2D1481c7fab64d <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B0d52284dX2Dea10X2D4403X2Da1a3X2D5a1bafd8951f <https://example.org/ontologyGraph> .
-_:Bf8b06784X2D57d9X2D4109X2Db220X2D1481c7fab64d <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B0d52284dX2Dea10X2D4403X2Da1a3X2D5a1bafd8951f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:B0d52284dX2Dea10X2D4403X2Da1a3X2D5a1bafd8951f <http://www.w3.org/2002/07/owl#unionOf> _:B0554286eX2D4f18X2D4be7X2D9bfaX2Dcdb69fd979a4 <https://example.org/ontologyGraph> .
-_:B0554286eX2D4f18X2D4be7X2D9bfaX2Dcdb69fd979a4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B90fa32cfX2D853bX2D4c0eX2D9618X2D2f3cbc993953 <https://example.org/ontologyGraph> .
-_:B0554286eX2D4f18X2D4be7X2D9bfaX2Dcdb69fd979a4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B6fedebf4X2Db741X2D4204X2Db622X2D380e239c9190 <https://example.org/ontologyGraph> .
-_:B90fa32cfX2D853bX2D4c0eX2D9618X2D2f3cbc993953 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B90fa32cfX2D853bX2D4c0eX2D9618X2D2f3cbc993953 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasUpperLevel> <https://example.org/ontologyGraph> .
-_:B90fa32cfX2D853bX2D4c0eX2D9618X2D2f3cbc993953 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#ElementaryLevelVersion> <https://example.org/ontologyGraph> .
-_:B6fedebf4X2Db741X2D4204X2Db622X2D380e239c9190 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B49b996dcX2D16acX2D4b37X2D83dfX2D0f96bddf540f <https://example.org/ontologyGraph> .
-_:B6fedebf4X2Db741X2D4204X2Db622X2D380e239c9190 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B49b996dcX2D16acX2D4b37X2D83dfX2D0f96bddf540f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B49b996dcX2D16acX2D4b37X2D83dfX2D0f96bddf540f <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasUpperLevel> <https://example.org/ontologyGraph> .
-_:B49b996dcX2D16acX2D4b37X2D83dfX2D0f96bddf540f <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#SubElementaryLevelVersion> <https://example.org/ontologyGraph> .
-_:Bcf89c6efX2D8d01X2D4ec7X2Da65dX2D8696ee61c828 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:Bcf89c6efX2D8d01X2D4ec7X2Da65dX2D8696ee61c828 <http://www.w3.org/2002/07/owl#intersectionOf> _:Bb5d5adddX2D0c28X2D46aeX2D901fX2D6de6607390c9 <https://example.org/ontologyGraph> .
-_:Bb5d5adddX2D0c28X2D46aeX2D901fX2D6de6607390c9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#Territory> <https://example.org/ontologyGraph> .
-_:Bb5d5adddX2D0c28X2D46aeX2D901fX2D6de6607390c9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Ba06ee471X2D9084X2D4aefX2Da6efX2D1253f443bed3 <https://example.org/ontologyGraph> .
-_:Ba06ee471X2D9084X2D4aefX2Da6efX2D1253f443bed3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bedeb3510X2De706X2D4948X2Db204X2D3e8bc376ef83 <https://example.org/ontologyGraph> .
-_:Ba06ee471X2D9084X2D4aefX2Da6efX2D1253f443bed3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:Bedeb3510X2De706X2D4948X2Db204X2D3e8bc376ef83 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:Bedeb3510X2De706X2D4948X2Db204X2D3e8bc376ef83 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasVersion> <https://example.org/ontologyGraph> .
-_:Bedeb3510X2De706X2D4948X2Db204X2D3e8bc376ef83 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#UnitVersion> <https://example.org/ontologyGraph> .
-_:B926320b1X2D770eX2D49c8X2D83e9X2D4db66574b54a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:B926320b1X2D770eX2D49c8X2D83e9X2D4db66574b54a <http://www.w3.org/2002/07/owl#intersectionOf> _:Bf24f1c65X2Dc2bbX2D4a21X2D9e7fX2Dad8b702dd66a <https://example.org/ontologyGraph> .
-_:Bf24f1c65X2Dc2bbX2D4a21X2D9e7fX2Dad8b702dd66a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/ontologyGraph> .
-_:Bf24f1c65X2Dc2bbX2D4a21X2D9e7fX2Dad8b702dd66a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bda8fc4f8X2D17f0X2D40eeX2D8703X2Db7ddd5fc8501 <https://example.org/ontologyGraph> .
-_:Bda8fc4f8X2D17f0X2D40eeX2D8703X2Db7ddd5fc8501 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B4bf84d47X2Da6ecX2D48a1X2Da384X2D9262a7f6dbc8 <https://example.org/ontologyGraph> .
-_:Bda8fc4f8X2D17f0X2D40eeX2D8703X2Db7ddd5fc8501 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B4bf84d47X2Da6ecX2D48a1X2Da384X2D9262a7f6dbc8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B4bf84d47X2Da6ecX2D48a1X2Da384X2D9262a7f6dbc8 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#isDefinedBy> <https://example.org/ontologyGraph> .
-_:B4bf84d47X2Da6ecX2D48a1X2Da384X2D9262a7f6dbc8 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <https://example.org/ontologyGraph> .
-_:B4ecfd3c8X2D7e7aX2D4d9bX2D80ceX2D3861db87df30 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B4ecfd3c8X2D7e7aX2D4d9bX2D80ceX2D3861db87df30 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#isMemberOf> <https://example.org/ontologyGraph> .
-_:B4ecfd3c8X2D7e7aX2D4d9bX2D80ceX2D3861db87df30 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#LevelVersion> <https://example.org/ontologyGraph> .
-_:B0cc03a11X2Df080X2D4ec1X2Db385X2D80ffad908b1a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B0cc03a11X2Df080X2D4ec1X2Db385X2D80ffad908b1a <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#validityPeriod> <https://example.org/ontologyGraph> .
-_:B0cc03a11X2Df080X2D4ec1X2Db385X2D80ffad908b1a <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#TemporalPrimitive> <https://example.org/ontologyGraph> .
-_:B767a88e1X2D4964X2D4a22X2D9c5dX2D8e83fcf320a2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/ontologyGraph> .
-_:B767a88e1X2D4964X2D4a22X2D9c5dX2D8e83fcf320a2 <http://www.w3.org/2002/07/owl#intersectionOf> _:Ba55ed4d5X2Db816X2D4f1aX2Da735X2Dbf0c69e3701d <https://example.org/ontologyGraph> .
-_:Ba55ed4d5X2Db816X2D4f1aX2Da735X2Dbf0c69e3701d <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/ontologyGraph> .
-_:Ba55ed4d5X2Db816X2D4f1aX2Da735X2Dbf0c69e3701d <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bfe4fbcd1X2D7a26X2D4c4cX2Dbca0X2De005271d8565 <https://example.org/ontologyGraph> .
-_:Bfe4fbcd1X2D7a26X2D4c4cX2Dbca0X2De005271d8565 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B01ead0a2X2D4f9eX2D4513X2D888dX2D2e31317a1c4f <https://example.org/ontologyGraph> .
-_:Bfe4fbcd1X2D7a26X2D4c4cX2Dbca0X2De005271d8565 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B15363f24X2D9d08X2D4f59X2D9f22X2D81a1f810eab8 <https://example.org/ontologyGraph> .
-_:B01ead0a2X2D4f9eX2D4513X2D888dX2D2e31317a1c4f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B01ead0a2X2D4f9eX2D4513X2D888dX2D2e31317a1c4f <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasComponent> <https://example.org/ontologyGraph> .
-_:B01ead0a2X2D4f9eX2D4513X2D888dX2D2e31317a1c4f <http://www.w3.org/2002/07/owl#maxCardinality> "0"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger> <https://example.org/ontologyGraph> .
-_:B15363f24X2D9d08X2D4f59X2D9f22X2D81a1f810eab8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B8866faa4X2Db6f1X2D4417X2Da198X2D141d32981c1f <https://example.org/ontologyGraph> .
-_:B15363f24X2D9d08X2D4f59X2D9f22X2D81a1f810eab8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B8866faa4X2Db6f1X2D4417X2Da198X2D141d32981c1f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/ontologyGraph> .
-_:B8866faa4X2Db6f1X2D4417X2Da198X2D141d32981c1f <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasGeometry> <https://example.org/ontologyGraph> .
-_:B8866faa4X2Db6f1X2D4417X2Da198X2D141d32981c1f <http://www.w3.org/2002/07/owl#maxCardinality> "0"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger> <https://example.org/ontologyGraph> .
-_:B9db504f2X2Db293X2D48e3X2Db4a4X2Dabc5bba7c14c <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#Imp> <https://example.org/ontologyGraph> .
-_:B9db504f2X2Db293X2D48e3X2Db4a4X2Dabc5bba7c14c <http://www.w3.org/2000/01/rdf-schema#label> "S1" <https://example.org/ontologyGraph> .
-_:B9db504f2X2Db293X2D48e3X2Db4a4X2Dabc5bba7c14c <http://www.w3.org/2000/01/rdf-schema#comment> "" <https://example.org/ontologyGraph> .
-_:B9db504f2X2Db293X2D48e3X2Db4a4X2Dabc5bba7c14c <http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> <https://example.org/ontologyGraph> .
-_:B9db504f2X2Db293X2D48e3X2Db4a4X2Dabc5bba7c14c <http://www.w3.org/2003/11/swrl#body> _:Bc2889bbeX2De2a0X2D40e7X2Dbea8X2Dd0776fc363d1 <https://example.org/ontologyGraph> .
-_:B9db504f2X2Db293X2D48e3X2Db4a4X2Dabc5bba7c14c <http://www.w3.org/2003/11/swrl#head> _:Bdf530b6fX2Ded29X2D4523X2Dbe45X2D891a453562fd <https://example.org/ontologyGraph> .
-_:Bc2889bbeX2De2a0X2D40e7X2Dbea8X2Dd0776fc363d1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#AtomList> <https://example.org/ontologyGraph> .
-_:Bc2889bbeX2De2a0X2D40e7X2Dbea8X2Dd0776fc363d1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bdfb00295X2D7cb0X2D4c5bX2Db066X2Dbab59d640d52 <https://example.org/ontologyGraph> .
-_:Bc2889bbeX2De2a0X2D40e7X2Dbea8X2Dd0776fc363d1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B9519af37X2Dd136X2D41c8X2D930aX2Da2b9c1b2168f <https://example.org/ontologyGraph> .
-_:Bdfb00295X2D7cb0X2D4c5bX2Db066X2Dbab59d640d52 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> <https://example.org/ontologyGraph> .
-_:Bdfb00295X2D7cb0X2D4c5bX2Db066X2Dbab59d640d52 <http://www.w3.org/2003/11/swrl#propertyPredicate> <https://w3id.org/HHT#contains> <https://example.org/ontologyGraph> .
-_:Bdfb00295X2D7cb0X2D4c5bX2Db066X2Dbab59d640d52 <http://www.w3.org/2003/11/swrl#argument1> <https://w3id.org/HHT#t1> <https://example.org/ontologyGraph> .
-_:Bdfb00295X2D7cb0X2D4c5bX2Db066X2Dbab59d640d52 <http://www.w3.org/2003/11/swrl#argument2> <https://w3id.org/HHT#t2> <https://example.org/ontologyGraph> .
-_:B9519af37X2Dd136X2D41c8X2D930aX2Da2b9c1b2168f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#AtomList> <https://example.org/ontologyGraph> .
-_:B9519af37X2Dd136X2D41c8X2D930aX2Da2b9c1b2168f <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B0a0a6064X2Dca26X2D419bX2Db313X2D64bd5e1ad5f2 <https://example.org/ontologyGraph> .
-_:B9519af37X2Dd136X2D41c8X2D930aX2Da2b9c1b2168f <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B213487dcX2D29deX2D427dX2D9cc8X2D89fc32881ea3 <https://example.org/ontologyGraph> .
-_:B0a0a6064X2Dca26X2D419bX2Db313X2D64bd5e1ad5f2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> <https://example.org/ontologyGraph> .
-_:B0a0a6064X2Dca26X2D419bX2Db313X2D64bd5e1ad5f2 <http://www.w3.org/2003/11/swrl#propertyPredicate> <https://w3id.org/HHT#contains> <https://example.org/ontologyGraph> .
-_:B0a0a6064X2Dca26X2D419bX2Db313X2D64bd5e1ad5f2 <http://www.w3.org/2003/11/swrl#argument1> <https://w3id.org/HHT#t3> <https://example.org/ontologyGraph> .
-_:B0a0a6064X2Dca26X2D419bX2Db313X2D64bd5e1ad5f2 <http://www.w3.org/2003/11/swrl#argument2> <https://w3id.org/HHT#t2> <https://example.org/ontologyGraph> .
-_:B213487dcX2D29deX2D427dX2D9cc8X2D89fc32881ea3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#AtomList> <https://example.org/ontologyGraph> .
-_:B213487dcX2D29deX2D427dX2D9cc8X2D89fc32881ea3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B0b1676a7X2Dbd73X2D435eX2Dbc16X2De646dce0990f <https://example.org/ontologyGraph> .
-_:B213487dcX2D29deX2D427dX2D9cc8X2D89fc32881ea3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B74b6e3afX2D379bX2D4513X2Da17dX2D91e8a72b474a <https://example.org/ontologyGraph> .
-_:B0b1676a7X2Dbd73X2D435eX2Dbc16X2De646dce0990f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> <https://example.org/ontologyGraph> .
-_:B0b1676a7X2Dbd73X2D435eX2Dbc16X2De646dce0990f <http://www.w3.org/2003/11/swrl#propertyPredicate> <https://w3id.org/HHT#isMemberOf> <https://example.org/ontologyGraph> .
-_:B0b1676a7X2Dbd73X2D435eX2Dbc16X2De646dce0990f <http://www.w3.org/2003/11/swrl#argument1> <https://w3id.org/HHT#t1> <https://example.org/ontologyGraph> .
-_:B0b1676a7X2Dbd73X2D435eX2Dbc16X2De646dce0990f <http://www.w3.org/2003/11/swrl#argument2> <https://w3id.org/HHT#l> <https://example.org/ontologyGraph> .
-_:B74b6e3afX2D379bX2D4513X2Da17dX2D91e8a72b474a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#AtomList> <https://example.org/ontologyGraph> .
-_:B74b6e3afX2D379bX2D4513X2Da17dX2D91e8a72b474a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B4e311e38X2Df053X2D4351X2Db3d0X2D12fb01d1acc7 <https://example.org/ontologyGraph> .
-_:B74b6e3afX2D379bX2D4513X2Da17dX2D91e8a72b474a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:B4e311e38X2Df053X2D4351X2Db3d0X2D12fb01d1acc7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> <https://example.org/ontologyGraph> .
-_:B4e311e38X2Df053X2D4351X2Db3d0X2D12fb01d1acc7 <http://www.w3.org/2003/11/swrl#propertyPredicate> <https://w3id.org/HHT#isMemberOf> <https://example.org/ontologyGraph> .
-_:B4e311e38X2Df053X2D4351X2Db3d0X2D12fb01d1acc7 <http://www.w3.org/2003/11/swrl#argument1> <https://w3id.org/HHT#t3> <https://example.org/ontologyGraph> .
-_:B4e311e38X2Df053X2D4351X2Db3d0X2D12fb01d1acc7 <http://www.w3.org/2003/11/swrl#argument2> <https://w3id.org/HHT#l> <https://example.org/ontologyGraph> .
-_:Bdf530b6fX2Ded29X2D4523X2Dbe45X2D891a453562fd <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#AtomList> <https://example.org/ontologyGraph> .
-_:Bdf530b6fX2Ded29X2D4523X2Dbe45X2D891a453562fd <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Ba70d1c2aX2D9cdaX2D4877X2D96c0X2Df2e9ccc06442 <https://example.org/ontologyGraph> .
-_:Bdf530b6fX2Ded29X2D4523X2Dbe45X2D891a453562fd <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/ontologyGraph> .
-_:Ba70d1c2aX2D9cdaX2D4877X2D96c0X2Df2e9ccc06442 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> <https://example.org/ontologyGraph> .
-_:Ba70d1c2aX2D9cdaX2D4877X2D96c0X2Df2e9ccc06442 <http://www.w3.org/2003/11/swrl#propertyPredicate> <http://www.w3.org/2002/07/owl#sameAs> <https://example.org/ontologyGraph> .
-_:Ba70d1c2aX2D9cdaX2D4877X2D96c0X2Df2e9ccc06442 <http://www.w3.org/2003/11/swrl#argument1> <https://w3id.org/HHT#t1> <https://example.org/ontologyGraph> .
-_:Ba70d1c2aX2D9cdaX2D4877X2D96c0X2Df2e9ccc06442 <http://www.w3.org/2003/11/swrl#argument2> <https://w3id.org/HHT#t3> <https://example.org/ontologyGraph> .
+_:Beac1447cX2De41eX2D40cfX2D9446X2D949ec88d962a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#operativeContent> <https://example.org/DomainGraph> .
+_:Beac1447cX2De41eX2D40cfX2D9446X2D949ec88d962a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B69f2fe07X2D88f7X2D4d35X2Db8e2X2D8f482735222a <https://example.org/DomainGraph> .
+_:B69f2fe07X2D88f7X2D4d35X2Db8e2X2D8f482735222a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#unionOf> <https://example.org/DomainGraph> .
+_:B69f2fe07X2D88f7X2D4d35X2Db8e2X2D8f482735222a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:Bb3562298X2D9eadX2D4186X2DaebdX2Db8223598b5ed <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:Bb3562298X2D9eadX2D4186X2DaebdX2Db8223598b5ed <http://www.w3.org/2002/07/owl#unionOf> _:Bf8167390X2D2038X2D4fa9X2D8887X2D9573baeab091 <https://example.org/DomainGraph> .
+_:Bf8167390X2D2038X2D4fa9X2D8887X2D9573baeab091 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#AreaComplementary> <https://example.org/DomainGraph> .
+_:Bf8167390X2D2038X2D4fa9X2D8887X2D9573baeab091 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B92ef4b26X2D9f7fX2D4aecX2D8a93X2Dcc3801ef6ba5 <https://example.org/DomainGraph> .
+_:B92ef4b26X2D9f7fX2D4aecX2D8a93X2Dcc3801ef6ba5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+_:B92ef4b26X2D9f7fX2D4aecX2D8a93X2Dcc3801ef6ba5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:Bd4c666e3X2D8809X2D4a6cX2Da4c4X2Ded4c47fe3f83 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#hasMember> <https://example.org/DomainGraph> .
+_:Bd4c666e3X2D8809X2D4a6cX2Da4c4X2Ded4c47fe3f83 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bb14ac95bX2Db6a0X2D4b5fX2Da7b2X2D3c32c10fdce9 <https://example.org/DomainGraph> .
+_:Bb14ac95bX2Db6a0X2D4b5fX2Da7b2X2D3c32c10fdce9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#hasSubUnit> <https://example.org/DomainGraph> .
+_:Bb14ac95bX2Db6a0X2D4b5fX2Da7b2X2D3c32c10fdce9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B34728f2eX2Da423X2D4278X2D9b1dX2Da16ab058ebe9 <https://example.org/DomainGraph> .
+_:B34728f2eX2Da423X2D4278X2D9b1dX2Da16ab058ebe9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#isMemberOf> <https://example.org/DomainGraph> .
+_:B34728f2eX2Da423X2D4278X2D9b1dX2Da16ab058ebe9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B0ebfdd11X2D9224X2D4150X2Da823X2D04d3ca2f0526 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#hasMember> <https://example.org/DomainGraph> .
+_:B0ebfdd11X2D9224X2D4150X2Da823X2D04d3ca2f0526 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bbbc77488X2D5b8aX2D43dcX2Da621X2Df7e38cee32dd <https://example.org/DomainGraph> .
+_:Bbbc77488X2D5b8aX2D43dcX2Da621X2Df7e38cee32dd <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#hasUpperUnit> <https://example.org/DomainGraph> .
+_:Bbbc77488X2D5b8aX2D43dcX2Da621X2Df7e38cee32dd <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Ba9a775a2X2D965cX2D4e88X2D8a6eX2Ddc36bad7213f <https://example.org/DomainGraph> .
+_:Ba9a775a2X2D965cX2D4e88X2D8a6eX2Ddc36bad7213f <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#isMemberOf> <https://example.org/DomainGraph> .
+_:Ba9a775a2X2D965cX2D4e88X2D8a6eX2Ddc36bad7213f <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:Bc222b816X2D96edX2D4b70X2Da33aX2D44433e03eecf <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:Bc222b816X2D96edX2D4b70X2Da33aX2D44433e03eecf <http://www.w3.org/2002/07/owl#unionOf> _:Bb26b8351X2D1b03X2D460aX2D85c6X2D36d3e1dcfef7 <https://example.org/DomainGraph> .
+_:Bb26b8351X2D1b03X2D460aX2D85c6X2D36d3e1dcfef7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#AreaIntersection> <https://example.org/DomainGraph> .
+_:Bb26b8351X2D1b03X2D460aX2D85c6X2D36d3e1dcfef7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Be76003afX2D89b3X2D4148X2Db54dX2D52ed07193b8c <https://example.org/DomainGraph> .
+_:Be76003afX2D89b3X2D4148X2Db54dX2D52ed07193b8c <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#AreaUnion> <https://example.org/DomainGraph> .
+_:Be76003afX2D89b3X2D4148X2Db54dX2D52ed07193b8c <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:Bacd8253bX2D5e71X2D4c25X2DbacfX2D9ae866a0c0f2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:Bacd8253bX2D5e71X2D4c25X2DbacfX2D9ae866a0c0f2 <http://www.w3.org/2002/07/owl#intersectionOf> _:B747070ddX2Dfe75X2D4403X2Da12fX2D7c7475f55aab <https://example.org/DomainGraph> .
+_:B747070ddX2Dfe75X2D4403X2Da12fX2D7c7475f55aab <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/DomainGraph> .
+_:B747070ddX2Dfe75X2D4403X2Da12fX2D7c7475f55aab <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bb9ca3a83X2DeaffX2D4f31X2Da718X2D3ac213bba379 <https://example.org/DomainGraph> .
+_:Bb9ca3a83X2DeaffX2D4f31X2Da718X2D3ac213bba379 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B72bbf328X2Dcbf4X2D42beX2Db1f9X2D802686484e17 <https://example.org/DomainGraph> .
+_:Bb9ca3a83X2DeaffX2D4f31X2Da718X2D3ac213bba379 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B8395f9a8X2D2cc9X2D4921X2D864cX2D1b1a484de6ec <https://example.org/DomainGraph> .
+_:B72bbf328X2Dcbf4X2D42beX2Db1f9X2D802686484e17 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B72bbf328X2Dcbf4X2D42beX2Db1f9X2D802686484e17 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#complementaryTo> <https://example.org/DomainGraph> .
+_:B72bbf328X2Dcbf4X2D42beX2Db1f9X2D802686484e17 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+_:B8395f9a8X2D2cc9X2D4921X2D864cX2D1b1a484de6ec <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B50742c11X2Df7a7X2D4074X2D9e59X2Dec68671fc2ed <https://example.org/DomainGraph> .
+_:B8395f9a8X2D2cc9X2D4921X2D864cX2D1b1a484de6ec <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B50742c11X2Df7a7X2D4074X2D9e59X2Dec68671fc2ed <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B50742c11X2Df7a7X2D4074X2D9e59X2Dec68671fc2ed <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#complementaryWithRegardOf> <https://example.org/DomainGraph> .
+_:B50742c11X2Df7a7X2D4074X2D9e59X2Dec68671fc2ed <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+_:B7e872d41X2Db906X2D442dX2D9dbaX2Dff78eec32534 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:B7e872d41X2Db906X2D442dX2D9dbaX2Dff78eec32534 <http://www.w3.org/2002/07/owl#intersectionOf> _:Bb70d82d0X2Da447X2D4f99X2D92c3X2D7a61caac92c0 <https://example.org/DomainGraph> .
+_:Bb70d82d0X2Da447X2D4f99X2D92c3X2D7a61caac92c0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B0f61dfd9X2D7361X2D41a1X2D87a4X2Dee0037cb28d9 <https://example.org/DomainGraph> .
+_:Bb70d82d0X2Da447X2D4f99X2D92c3X2D7a61caac92c0 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B4c508da7X2D5285X2D4df0X2D8525X2D743c84717f25 <https://example.org/DomainGraph> .
+_:B0f61dfd9X2D7361X2D41a1X2D87a4X2Dee0037cb28d9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B0f61dfd9X2D7361X2D41a1X2D87a4X2Dee0037cb28d9 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#intersectionOf> <https://example.org/DomainGraph> .
+_:B0f61dfd9X2D7361X2D41a1X2D87a4X2Dee0037cb28d9 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+_:B4c508da7X2D5285X2D4df0X2D8525X2D743c84717f25 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B143ff9f7X2D9f6fX2D443aX2Da73fX2D57a8d445ad14 <https://example.org/DomainGraph> .
+_:B4c508da7X2D5285X2D4df0X2D8525X2D743c84717f25 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B143ff9f7X2D9f6fX2D443aX2Da73fX2D57a8d445ad14 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B143ff9f7X2D9f6fX2D443aX2Da73fX2D57a8d445ad14 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#operatorCardinality> <https://example.org/DomainGraph> .
+_:B143ff9f7X2D9f6fX2D443aX2Da73fX2D57a8d445ad14 <http://www.w3.org/2002/07/owl#someValuesFrom> _:B28c05541X2D8bc3X2D4a1fX2D9e4eX2De91f206237c2 <https://example.org/DomainGraph> .
+_:B28c05541X2D8bc3X2D4a1fX2D9e4eX2De91f206237c2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> <https://example.org/DomainGraph> .
+_:B28c05541X2D8bc3X2D4a1fX2D9e4eX2De91f206237c2 <http://www.w3.org/2002/07/owl#onDatatype> <http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/DomainGraph> .
+_:B28c05541X2D8bc3X2D4a1fX2D9e4eX2De91f206237c2 <http://www.w3.org/2002/07/owl#withRestrictions> _:B5862568fX2D15ceX2D44f5X2Dbd4fX2D2a65e466d3e9 <https://example.org/DomainGraph> .
+_:B5862568fX2D15ceX2D44f5X2Dbd4fX2D2a65e466d3e9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bb4c15c45X2D5742X2D4019X2Db7a7X2D38faeb58ab53 <https://example.org/DomainGraph> .
+_:B5862568fX2D15ceX2D44f5X2Dbd4fX2D2a65e466d3e9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:Bb4c15c45X2D5742X2D4019X2Db7a7X2D38faeb58ab53 <http://www.w3.org/2001/XMLSchema#minInclusive> "1"^^<http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/DomainGraph> .
+_:B3748bf11X2D3627X2D4da5X2D8635X2D5c9aecd62086 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:B3748bf11X2D3627X2D4da5X2D8635X2D5c9aecd62086 <http://www.w3.org/2002/07/owl#intersectionOf> _:B008e345aX2D67c6X2D4eaeX2D9641X2D2e8d7bc6e797 <https://example.org/DomainGraph> .
+_:B008e345aX2D67c6X2D4eaeX2D9641X2D2e8d7bc6e797 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Baddb1653X2D6b13X2D4122X2Dad27X2D6915e15ce13c <https://example.org/DomainGraph> .
+_:B008e345aX2D67c6X2D4eaeX2D9641X2D2e8d7bc6e797 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B9dacf7f7X2D9a7fX2D4e50X2D81a9X2D6a2e9c68657c <https://example.org/DomainGraph> .
+_:Baddb1653X2D6b13X2D4122X2Dad27X2D6915e15ce13c <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:Baddb1653X2D6b13X2D4122X2Dad27X2D6915e15ce13c <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#unionOf> <https://example.org/DomainGraph> .
+_:Baddb1653X2D6b13X2D4122X2Dad27X2D6915e15ce13c <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+_:B9dacf7f7X2D9a7fX2D4e50X2D81a9X2D6a2e9c68657c <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B4850ad00X2Dcb13X2D4c6aX2Db065X2D04406ffeed50 <https://example.org/DomainGraph> .
+_:B9dacf7f7X2D9a7fX2D4e50X2D81a9X2D6a2e9c68657c <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B4850ad00X2Dcb13X2D4c6aX2Db065X2D04406ffeed50 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B4850ad00X2Dcb13X2D4c6aX2Db065X2D04406ffeed50 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#operatorCardinality> <https://example.org/DomainGraph> .
+_:B4850ad00X2Dcb13X2D4c6aX2Db065X2D04406ffeed50 <http://www.w3.org/2002/07/owl#someValuesFrom> _:B71ba0a7bX2Ddc2aX2D4c96X2D86b1X2Dbfbbf4f146db <https://example.org/DomainGraph> .
+_:B71ba0a7bX2Ddc2aX2D4c96X2D86b1X2Dbfbbf4f146db <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> <https://example.org/DomainGraph> .
+_:B71ba0a7bX2Ddc2aX2D4c96X2D86b1X2Dbfbbf4f146db <http://www.w3.org/2002/07/owl#onDatatype> <http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/DomainGraph> .
+_:B71ba0a7bX2Ddc2aX2D4c96X2D86b1X2Dbfbbf4f146db <http://www.w3.org/2002/07/owl#withRestrictions> _:B7fd3db0cX2D593bX2D45d6X2D8777X2D9a795b00f5fe <https://example.org/DomainGraph> .
+_:B7fd3db0cX2D593bX2D45d6X2D8777X2D9a795b00f5fe <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B5b4636f2X2D5ac0X2D4f87X2Db1e3X2Dd5471053be84 <https://example.org/DomainGraph> .
+_:B7fd3db0cX2D593bX2D45d6X2D8777X2D9a795b00f5fe <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B5b4636f2X2D5ac0X2D4f87X2Db1e3X2Dd5471053be84 <http://www.w3.org/2001/XMLSchema#minInclusive> "1"^^<http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/DomainGraph> .
+_:Ba449f485X2D0cc1X2D4fb4X2Db8f5X2D22bacd9e68ac <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:Ba449f485X2D0cc1X2D4fb4X2Db8f5X2D22bacd9e68ac <http://www.w3.org/2002/07/owl#intersectionOf> _:B5c667a42X2D67f4X2D408bX2D90ffX2D6dc1f17a069b <https://example.org/DomainGraph> .
+_:B5c667a42X2D67f4X2D408bX2D90ffX2D6dc1f17a069b <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bd964b66eX2D659cX2D480aX2D8dcaX2D026109321988 <https://example.org/DomainGraph> .
+_:B5c667a42X2D67f4X2D408bX2D90ffX2D6dc1f17a069b <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B4f2472a3X2D0b32X2D4207X2Da51fX2D3aff77994889 <https://example.org/DomainGraph> .
+_:Bd964b66eX2D659cX2D480aX2D8dcaX2D026109321988 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:Bd964b66eX2D659cX2D480aX2D8dcaX2D026109321988 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasComponent> <https://example.org/DomainGraph> .
+_:Bd964b66eX2D659cX2D480aX2D8dcaX2D026109321988 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#stableBlockArea> <https://example.org/DomainGraph> .
+_:B4f2472a3X2D0b32X2D4207X2Da51fX2D3aff77994889 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B5fec2ac6X2Dac74X2D4cfaX2D92b9X2Dc6e60c949a52 <https://example.org/DomainGraph> .
+_:B4f2472a3X2D0b32X2D4207X2Da51fX2D3aff77994889 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B5fec2ac6X2Dac74X2D4cfaX2D92b9X2Dc6e60c949a52 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B5fec2ac6X2Dac74X2D4cfaX2D92b9X2Dc6e60c949a52 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#setCardinality> <https://example.org/DomainGraph> .
+_:B5fec2ac6X2Dac74X2D4cfaX2D92b9X2Dc6e60c949a52 <http://www.w3.org/2002/07/owl#someValuesFrom> _:B04b66a6aX2D5606X2D4cf0X2D8164X2D4b4bfc070a02 <https://example.org/DomainGraph> .
+_:B04b66a6aX2D5606X2D4cf0X2D8164X2D4b4bfc070a02 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2000/01/rdf-schema#Datatype> <https://example.org/DomainGraph> .
+_:B04b66a6aX2D5606X2D4cf0X2D8164X2D4b4bfc070a02 <http://www.w3.org/2002/07/owl#onDatatype> <http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/DomainGraph> .
+_:B04b66a6aX2D5606X2D4cf0X2D8164X2D4b4bfc070a02 <http://www.w3.org/2002/07/owl#withRestrictions> _:Be210d9bcX2D7ef0X2D4758X2D8458X2D9de1957dab88 <https://example.org/DomainGraph> .
+_:Be210d9bcX2D7ef0X2D4758X2D8458X2D9de1957dab88 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B5a477a43X2Db2e5X2D4e63X2D9e3fX2Da03c93d8d70b <https://example.org/DomainGraph> .
+_:Be210d9bcX2D7ef0X2D4758X2D8458X2D9de1957dab88 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B5a477a43X2Db2e5X2D4e63X2D9e3fX2Da03c93d8d70b <http://www.w3.org/2001/XMLSchema#minInclusive> "1"^^<http://www.w3.org/2001/XMLSchema#positiveInteger> <https://example.org/DomainGraph> .
+_:Befb6624eX2Da68fX2D41cdX2D9481X2D216990cf00c2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:Befb6624eX2Da68fX2D41cdX2D9481X2D216990cf00c2 <http://www.w3.org/2002/07/owl#intersectionOf> _:B57fb0c8cX2D0a59X2D4d54X2D848aX2Dc6e24448d847 <https://example.org/DomainGraph> .
+_:B57fb0c8cX2D0a59X2D4d54X2D848aX2Dc6e24448d847 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#Level> <https://example.org/DomainGraph> .
+_:B57fb0c8cX2D0a59X2D4d54X2D848aX2Dc6e24448d847 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B7ed5dba4X2Df587X2D4442X2D949aX2Dc9c563cb0ca7 <https://example.org/DomainGraph> .
+_:B7ed5dba4X2Df587X2D4442X2D949aX2Dc9c563cb0ca7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B046048ceX2D4085X2D45fcX2Dae99X2Da86db5ec6073 <https://example.org/DomainGraph> .
+_:B7ed5dba4X2Df587X2D4442X2D949aX2Dc9c563cb0ca7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B046048ceX2D4085X2D45fcX2Dae99X2Da86db5ec6073 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B046048ceX2D4085X2D45fcX2Dae99X2Da86db5ec6073 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasVersion> <https://example.org/DomainGraph> .
+_:B046048ceX2D4085X2D45fcX2Dae99X2Da86db5ec6073 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#ElementaryLevelVersion> <https://example.org/DomainGraph> .
+_:B59631cb3X2D2d68X2D487eX2D902dX2D2913e3869b76 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B59631cb3X2D2d68X2D487eX2D902dX2D2913e3869b76 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasVersion> <https://example.org/DomainGraph> .
+_:B59631cb3X2D2d68X2D487eX2D902dX2D2913e3869b76 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#LevelVersion> <https://example.org/DomainGraph> .
+_:B3dca560dX2D159eX2D4ec1X2Db1cfX2D624cc2760e1b <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B3dca560dX2D159eX2D4ec1X2Db1cfX2D624cc2760e1b <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#isLevelOf> <https://example.org/DomainGraph> .
+_:B3dca560dX2D159eX2D4ec1X2Db1cfX2D624cc2760e1b <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#HierarchicalCriterion> <https://example.org/DomainGraph> .
+_:Bcacdf7ecX2D2807X2D40e9X2Dad10X2D2f3307d2a54a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:Bcacdf7ecX2D2807X2D40e9X2Dad10X2D2f3307d2a54a <http://www.w3.org/2002/07/owl#intersectionOf> _:Bb6964a83X2D2b16X2D4b9eX2D862bX2D69b1ff4e3c5b <https://example.org/DomainGraph> .
+_:Bb6964a83X2D2b16X2D4b9eX2D862bX2D69b1ff4e3c5b <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#Unit> <https://example.org/DomainGraph> .
+_:Bb6964a83X2D2b16X2D4b9eX2D862bX2D69b1ff4e3c5b <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B996e48e7X2D1000X2D4566X2D91eaX2D9c9b8a13caa9 <https://example.org/DomainGraph> .
+_:B996e48e7X2D1000X2D4566X2D91eaX2D9c9b8a13caa9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bd9c494dcX2Da5a5X2D4a06X2D91eaX2D9397d5f09922 <https://example.org/DomainGraph> .
+_:B996e48e7X2D1000X2D4566X2D91eaX2D9c9b8a13caa9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:Bd9c494dcX2Da5a5X2D4a06X2D91eaX2D9397d5f09922 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:Bd9c494dcX2Da5a5X2D4a06X2D91eaX2D9397d5f09922 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasVersion> <https://example.org/DomainGraph> .
+_:Bd9c494dcX2Da5a5X2D4a06X2D91eaX2D9397d5f09922 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#ManagedUnitVersion> <https://example.org/DomainGraph> .
+_:B1fbf6d67X2D0138X2D4593X2Dac9bX2Dae9be9fa6bdd <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:B1fbf6d67X2D0138X2D4593X2Dac9bX2Dae9be9fa6bdd <http://www.w3.org/2002/07/owl#intersectionOf> _:B2bf57f57X2D6a8eX2D43b7X2D8708X2Df3c214ce941d <https://example.org/DomainGraph> .
+_:B2bf57f57X2D6a8eX2D43b7X2D8708X2Df3c214ce941d <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#UnitVersion> <https://example.org/DomainGraph> .
+_:B2bf57f57X2D6a8eX2D43b7X2D8708X2Df3c214ce941d <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bb8c98ae8X2Dd627X2D475eX2D91dcX2Dce4d8c0174fe <https://example.org/DomainGraph> .
+_:Bb8c98ae8X2Dd627X2D475eX2D91dcX2Dce4d8c0174fe <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B4b72b15eX2D4a73X2D4387X2Db6f0X2D5ef155bda12e <https://example.org/DomainGraph> .
+_:Bb8c98ae8X2Dd627X2D475eX2D91dcX2Dce4d8c0174fe <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B4b72b15eX2D4a73X2D4387X2Db6f0X2D5ef155bda12e <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B4b72b15eX2D4a73X2D4387X2Db6f0X2D5ef155bda12e <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#isManagedBy> <https://example.org/DomainGraph> .
+_:B4b72b15eX2D4a73X2D4387X2Db6f0X2D5ef155bda12e <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <https://example.org/DomainGraph> .
+_:Bc5c20980X2Dcb90X2D4cb4X2D94e7X2D283f5279953c <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:Bc5c20980X2Dcb90X2D4cb4X2D94e7X2D283f5279953c <http://www.w3.org/2002/07/owl#intersectionOf> _:B6987981dX2D4f93X2D4293X2D96c1X2Dd3f9012b41fc <https://example.org/DomainGraph> .
+_:B6987981dX2D4f93X2D4293X2D96c1X2Dd3f9012b41fc <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/DomainGraph> .
+_:B6987981dX2D4f93X2D4293X2D96c1X2Dd3f9012b41fc <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B656a8417X2Dcf87X2D4cf0X2D9e8fX2D03ed59232124 <https://example.org/DomainGraph> .
+_:B656a8417X2Dcf87X2D4cf0X2D9e8fX2D03ed59232124 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bacb895d6X2D2f42X2D4a95X2Dac45X2D68b4c59a46fb <https://example.org/DomainGraph> .
+_:B656a8417X2Dcf87X2D4cf0X2D9e8fX2D03ed59232124 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:Bacb895d6X2D2f42X2D4a95X2Dac45X2D68b4c59a46fb <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:Bacb895d6X2D2f42X2D4a95X2Dac45X2D68b4c59a46fb <http://www.w3.org/2002/07/owl#unionOf> _:Bd4416765X2De3a5X2D46a0X2Db283X2De06af9b5fbc4 <https://example.org/DomainGraph> .
+_:Bd4416765X2De3a5X2D46a0X2Db283X2De06af9b5fbc4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B4cb9ad11X2D8d46X2D4d0eX2D9eddX2Df1cdc493f36b <https://example.org/DomainGraph> .
+_:Bd4416765X2De3a5X2D46a0X2Db283X2De06af9b5fbc4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B026b9c4fX2DccffX2D4866X2D8545X2D9b712adf4294 <https://example.org/DomainGraph> .
+_:B4cb9ad11X2D8d46X2D4d0eX2D9eddX2Df1cdc493f36b <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B4cb9ad11X2D8d46X2D4d0eX2D9eddX2Df1cdc493f36b <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasComponent> <https://example.org/DomainGraph> .
+_:B4cb9ad11X2D8d46X2D4d0eX2D9eddX2Df1cdc493f36b <http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger> <https://example.org/DomainGraph> .
+_:B026b9c4fX2DccffX2D4866X2D8545X2D9b712adf4294 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B9a54b185X2D14d1X2D4a72X2Da200X2Dd3608eeacfe9 <https://example.org/DomainGraph> .
+_:B026b9c4fX2DccffX2D4866X2D8545X2D9b712adf4294 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B9a54b185X2D14d1X2D4a72X2Da200X2Dd3608eeacfe9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B9a54b185X2D14d1X2D4a72X2Da200X2Dd3608eeacfe9 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasGeometry> <https://example.org/DomainGraph> .
+_:B9a54b185X2D14d1X2D4a72X2Da200X2Dd3608eeacfe9 <http://www.w3.org/2002/07/owl#minCardinality> "1"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger> <https://example.org/DomainGraph> .
+_:Bf63232c2X2D80c3X2D4266X2D8c89X2D6624bf1aa7f6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#NonVoidArea> <https://example.org/DomainGraph> .
+_:Bf63232c2X2D80c3X2D4266X2D8c89X2D6624bf1aa7f6 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bad76f4ecX2D6552X2D4ac5X2D8a12X2D227cfb1f0eae <https://example.org/DomainGraph> .
+_:Bad76f4ecX2D6552X2D4ac5X2D8a12X2D227cfb1f0eae <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#VoidArea> <https://example.org/DomainGraph> .
+_:Bad76f4ecX2D6552X2D4ac5X2D8a12X2D227cfb1f0eae <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B64a2c689X2D0428X2D4168X2D98d5X2D2b0f73944add <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:B64a2c689X2D0428X2D4168X2D98d5X2D2b0f73944add <http://www.w3.org/2002/07/owl#intersectionOf> _:B32a63927X2Db7b1X2D4214X2Dbfa0X2D84a24daa5cc3 <https://example.org/DomainGraph> .
+_:B32a63927X2Db7b1X2D4214X2Dbfa0X2D84a24daa5cc3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#Level> <https://example.org/DomainGraph> .
+_:B32a63927X2Db7b1X2D4214X2Dbfa0X2D84a24daa5cc3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bb2ddb38cX2D00daX2D4073X2D8613X2D858f931bf2da <https://example.org/DomainGraph> .
+_:Bb2ddb38cX2D00daX2D4073X2D8613X2D858f931bf2da <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bae39b98bX2DedadX2D4077X2D855cX2D89029df25423 <https://example.org/DomainGraph> .
+_:Bb2ddb38cX2D00daX2D4073X2D8613X2D858f931bf2da <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:Bae39b98bX2DedadX2D4077X2D855cX2D89029df25423 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:Bae39b98bX2DedadX2D4077X2D855cX2D89029df25423 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasVersion> <https://example.org/DomainGraph> .
+_:Bae39b98bX2DedadX2D4077X2D855cX2D89029df25423 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#SubElementaryLevelVersion> <https://example.org/DomainGraph> .
+_:B0163bfecX2D5bbeX2D4975X2D8a86X2D9a3b6d3a4ee5 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:B0163bfecX2D5bbeX2D4975X2D8a86X2D9a3b6d3a4ee5 <http://www.w3.org/2002/07/owl#intersectionOf> _:Bd45eb390X2Df1d8X2D4f12X2Da9aaX2Dbf164ca86398 <https://example.org/DomainGraph> .
+_:Bd45eb390X2Df1d8X2D4f12X2Da9aaX2Dbf164ca86398 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#LevelVersion> <https://example.org/DomainGraph> .
+_:Bd45eb390X2Df1d8X2D4f12X2Da9aaX2Dbf164ca86398 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bf8b06784X2D57d9X2D4109X2Db220X2D1481c7fab64d <https://example.org/DomainGraph> .
+_:Bf8b06784X2D57d9X2D4109X2Db220X2D1481c7fab64d <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B0d52284dX2Dea10X2D4403X2Da1a3X2D5a1bafd8951f <https://example.org/DomainGraph> .
+_:Bf8b06784X2D57d9X2D4109X2Db220X2D1481c7fab64d <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B0d52284dX2Dea10X2D4403X2Da1a3X2D5a1bafd8951f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:B0d52284dX2Dea10X2D4403X2Da1a3X2D5a1bafd8951f <http://www.w3.org/2002/07/owl#unionOf> _:B0554286eX2D4f18X2D4be7X2D9bfaX2Dcdb69fd979a4 <https://example.org/DomainGraph> .
+_:B0554286eX2D4f18X2D4be7X2D9bfaX2Dcdb69fd979a4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B90fa32cfX2D853bX2D4c0eX2D9618X2D2f3cbc993953 <https://example.org/DomainGraph> .
+_:B0554286eX2D4f18X2D4be7X2D9bfaX2Dcdb69fd979a4 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B6fedebf4X2Db741X2D4204X2Db622X2D380e239c9190 <https://example.org/DomainGraph> .
+_:B90fa32cfX2D853bX2D4c0eX2D9618X2D2f3cbc993953 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B90fa32cfX2D853bX2D4c0eX2D9618X2D2f3cbc993953 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasUpperLevel> <https://example.org/DomainGraph> .
+_:B90fa32cfX2D853bX2D4c0eX2D9618X2D2f3cbc993953 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#ElementaryLevelVersion> <https://example.org/DomainGraph> .
+_:B6fedebf4X2Db741X2D4204X2Db622X2D380e239c9190 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B49b996dcX2D16acX2D4b37X2D83dfX2D0f96bddf540f <https://example.org/DomainGraph> .
+_:B6fedebf4X2Db741X2D4204X2Db622X2D380e239c9190 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B49b996dcX2D16acX2D4b37X2D83dfX2D0f96bddf540f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B49b996dcX2D16acX2D4b37X2D83dfX2D0f96bddf540f <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasUpperLevel> <https://example.org/DomainGraph> .
+_:B49b996dcX2D16acX2D4b37X2D83dfX2D0f96bddf540f <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#SubElementaryLevelVersion> <https://example.org/DomainGraph> .
+_:Bcf89c6efX2D8d01X2D4ec7X2Da65dX2D8696ee61c828 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:Bcf89c6efX2D8d01X2D4ec7X2Da65dX2D8696ee61c828 <http://www.w3.org/2002/07/owl#intersectionOf> _:Bb5d5adddX2D0c28X2D46aeX2D901fX2D6de6607390c9 <https://example.org/DomainGraph> .
+_:Bb5d5adddX2D0c28X2D46aeX2D901fX2D6de6607390c9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#Territory> <https://example.org/DomainGraph> .
+_:Bb5d5adddX2D0c28X2D46aeX2D901fX2D6de6607390c9 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Ba06ee471X2D9084X2D4aefX2Da6efX2D1253f443bed3 <https://example.org/DomainGraph> .
+_:Ba06ee471X2D9084X2D4aefX2Da6efX2D1253f443bed3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bedeb3510X2De706X2D4948X2Db204X2D3e8bc376ef83 <https://example.org/DomainGraph> .
+_:Ba06ee471X2D9084X2D4aefX2Da6efX2D1253f443bed3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:Bedeb3510X2De706X2D4948X2Db204X2D3e8bc376ef83 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:Bedeb3510X2De706X2D4948X2Db204X2D3e8bc376ef83 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasVersion> <https://example.org/DomainGraph> .
+_:Bedeb3510X2De706X2D4948X2Db204X2D3e8bc376ef83 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#UnitVersion> <https://example.org/DomainGraph> .
+_:B926320b1X2D770eX2D49c8X2D83e9X2D4db66574b54a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:B926320b1X2D770eX2D49c8X2D83e9X2D4db66574b54a <http://www.w3.org/2002/07/owl#intersectionOf> _:Bf24f1c65X2Dc2bbX2D4a21X2D9e7fX2Dad8b702dd66a <https://example.org/DomainGraph> .
+_:Bf24f1c65X2Dc2bbX2D4a21X2D9e7fX2Dad8b702dd66a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#TerritoryVersion> <https://example.org/DomainGraph> .
+_:Bf24f1c65X2Dc2bbX2D4a21X2D9e7fX2Dad8b702dd66a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bda8fc4f8X2D17f0X2D40eeX2D8703X2Db7ddd5fc8501 <https://example.org/DomainGraph> .
+_:Bda8fc4f8X2D17f0X2D40eeX2D8703X2Db7ddd5fc8501 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B4bf84d47X2Da6ecX2D48a1X2Da384X2D9262a7f6dbc8 <https://example.org/DomainGraph> .
+_:Bda8fc4f8X2D17f0X2D40eeX2D8703X2Db7ddd5fc8501 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B4bf84d47X2Da6ecX2D48a1X2Da384X2D9262a7f6dbc8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B4bf84d47X2Da6ecX2D48a1X2Da384X2D9262a7f6dbc8 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#isDefinedBy> <https://example.org/DomainGraph> .
+_:B4bf84d47X2Da6ecX2D48a1X2Da384X2D9262a7f6dbc8 <http://www.w3.org/2002/07/owl#someValuesFrom> <http://www.cidoc-crm.org/cidoc-crm/E39_Actor> <https://example.org/DomainGraph> .
+_:B4ecfd3c8X2D7e7aX2D4d9bX2D80ceX2D3861db87df30 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B4ecfd3c8X2D7e7aX2D4d9bX2D80ceX2D3861db87df30 <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#isMemberOf> <https://example.org/DomainGraph> .
+_:B4ecfd3c8X2D7e7aX2D4d9bX2D80ceX2D3861db87df30 <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#LevelVersion> <https://example.org/DomainGraph> .
+_:B0cc03a11X2Df080X2D4ec1X2Db385X2D80ffad908b1a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B0cc03a11X2Df080X2D4ec1X2Db385X2D80ffad908b1a <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#validityPeriod> <https://example.org/DomainGraph> .
+_:B0cc03a11X2Df080X2D4ec1X2Db385X2D80ffad908b1a <http://www.w3.org/2002/07/owl#someValuesFrom> <https://w3id.org/HHT#TemporalPrimitive> <https://example.org/DomainGraph> .
+_:B767a88e1X2D4964X2D4a22X2D9c5dX2D8e83fcf320a2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Class> <https://example.org/DomainGraph> .
+_:B767a88e1X2D4964X2D4a22X2D9c5dX2D8e83fcf320a2 <http://www.w3.org/2002/07/owl#intersectionOf> _:Ba55ed4d5X2Db816X2D4f1aX2Da735X2Dbf0c69e3701d <https://example.org/DomainGraph> .
+_:Ba55ed4d5X2Db816X2D4f1aX2Da735X2Dbf0c69e3701d <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://w3id.org/HHT#SetAreaConstruction> <https://example.org/DomainGraph> .
+_:Ba55ed4d5X2Db816X2D4f1aX2Da735X2Dbf0c69e3701d <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:Bfe4fbcd1X2D7a26X2D4c4cX2Dbca0X2De005271d8565 <https://example.org/DomainGraph> .
+_:Bfe4fbcd1X2D7a26X2D4c4cX2Dbca0X2De005271d8565 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B01ead0a2X2D4f9eX2D4513X2D888dX2D2e31317a1c4f <https://example.org/DomainGraph> .
+_:Bfe4fbcd1X2D7a26X2D4c4cX2Dbca0X2De005271d8565 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B15363f24X2D9d08X2D4f59X2D9f22X2D81a1f810eab8 <https://example.org/DomainGraph> .
+_:B01ead0a2X2D4f9eX2D4513X2D888dX2D2e31317a1c4f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B01ead0a2X2D4f9eX2D4513X2D888dX2D2e31317a1c4f <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasComponent> <https://example.org/DomainGraph> .
+_:B01ead0a2X2D4f9eX2D4513X2D888dX2D2e31317a1c4f <http://www.w3.org/2002/07/owl#maxCardinality> "0"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger> <https://example.org/DomainGraph> .
+_:B15363f24X2D9d08X2D4f59X2D9f22X2D81a1f810eab8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B8866faa4X2Db6f1X2D4417X2Da198X2D141d32981c1f <https://example.org/DomainGraph> .
+_:B15363f24X2D9d08X2D4f59X2D9f22X2D81a1f810eab8 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B8866faa4X2Db6f1X2D4417X2Da198X2D141d32981c1f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Restriction> <https://example.org/DomainGraph> .
+_:B8866faa4X2Db6f1X2D4417X2Da198X2D141d32981c1f <http://www.w3.org/2002/07/owl#onProperty> <https://w3id.org/HHT#hasGeometry> <https://example.org/DomainGraph> .
+_:B8866faa4X2Db6f1X2D4417X2Da198X2D141d32981c1f <http://www.w3.org/2002/07/owl#maxCardinality> "0"^^<http://www.w3.org/2001/XMLSchema#nonNegativeInteger> <https://example.org/DomainGraph> .
+_:B9db504f2X2Db293X2D48e3X2Db4a4X2Dabc5bba7c14c <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#Imp> <https://example.org/DomainGraph> .
+_:B9db504f2X2Db293X2D48e3X2Db4a4X2Dabc5bba7c14c <http://www.w3.org/2000/01/rdf-schema#label> "S1" <https://example.org/DomainGraph> .
+_:B9db504f2X2Db293X2D48e3X2Db4a4X2Dabc5bba7c14c <http://www.w3.org/2000/01/rdf-schema#comment> "" <https://example.org/DomainGraph> .
+_:B9db504f2X2Db293X2D48e3X2Db4a4X2Dabc5bba7c14c <http://swrl.stanford.edu/ontologies/3.3/swrla.owl#isRuleEnabled> "true"^^<http://www.w3.org/2001/XMLSchema#boolean> <https://example.org/DomainGraph> .
+_:B9db504f2X2Db293X2D48e3X2Db4a4X2Dabc5bba7c14c <http://www.w3.org/2003/11/swrl#body> _:Bc2889bbeX2De2a0X2D40e7X2Dbea8X2Dd0776fc363d1 <https://example.org/DomainGraph> .
+_:B9db504f2X2Db293X2D48e3X2Db4a4X2Dabc5bba7c14c <http://www.w3.org/2003/11/swrl#head> _:Bdf530b6fX2Ded29X2D4523X2Dbe45X2D891a453562fd <https://example.org/DomainGraph> .
+_:Bc2889bbeX2De2a0X2D40e7X2Dbea8X2Dd0776fc363d1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#AtomList> <https://example.org/DomainGraph> .
+_:Bc2889bbeX2De2a0X2D40e7X2Dbea8X2Dd0776fc363d1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Bdfb00295X2D7cb0X2D4c5bX2Db066X2Dbab59d640d52 <https://example.org/DomainGraph> .
+_:Bc2889bbeX2De2a0X2D40e7X2Dbea8X2Dd0776fc363d1 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B9519af37X2Dd136X2D41c8X2D930aX2Da2b9c1b2168f <https://example.org/DomainGraph> .
+_:Bdfb00295X2D7cb0X2D4c5bX2Db066X2Dbab59d640d52 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> <https://example.org/DomainGraph> .
+_:Bdfb00295X2D7cb0X2D4c5bX2Db066X2Dbab59d640d52 <http://www.w3.org/2003/11/swrl#propertyPredicate> <https://w3id.org/HHT#contains> <https://example.org/DomainGraph> .
+_:Bdfb00295X2D7cb0X2D4c5bX2Db066X2Dbab59d640d52 <http://www.w3.org/2003/11/swrl#argument1> <https://w3id.org/HHT#t1> <https://example.org/DomainGraph> .
+_:Bdfb00295X2D7cb0X2D4c5bX2Db066X2Dbab59d640d52 <http://www.w3.org/2003/11/swrl#argument2> <https://w3id.org/HHT#t2> <https://example.org/DomainGraph> .
+_:B9519af37X2Dd136X2D41c8X2D930aX2Da2b9c1b2168f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#AtomList> <https://example.org/DomainGraph> .
+_:B9519af37X2Dd136X2D41c8X2D930aX2Da2b9c1b2168f <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B0a0a6064X2Dca26X2D419bX2Db313X2D64bd5e1ad5f2 <https://example.org/DomainGraph> .
+_:B9519af37X2Dd136X2D41c8X2D930aX2Da2b9c1b2168f <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B213487dcX2D29deX2D427dX2D9cc8X2D89fc32881ea3 <https://example.org/DomainGraph> .
+_:B0a0a6064X2Dca26X2D419bX2Db313X2D64bd5e1ad5f2 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> <https://example.org/DomainGraph> .
+_:B0a0a6064X2Dca26X2D419bX2Db313X2D64bd5e1ad5f2 <http://www.w3.org/2003/11/swrl#propertyPredicate> <https://w3id.org/HHT#contains> <https://example.org/DomainGraph> .
+_:B0a0a6064X2Dca26X2D419bX2Db313X2D64bd5e1ad5f2 <http://www.w3.org/2003/11/swrl#argument1> <https://w3id.org/HHT#t3> <https://example.org/DomainGraph> .
+_:B0a0a6064X2Dca26X2D419bX2Db313X2D64bd5e1ad5f2 <http://www.w3.org/2003/11/swrl#argument2> <https://w3id.org/HHT#t2> <https://example.org/DomainGraph> .
+_:B213487dcX2D29deX2D427dX2D9cc8X2D89fc32881ea3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#AtomList> <https://example.org/DomainGraph> .
+_:B213487dcX2D29deX2D427dX2D9cc8X2D89fc32881ea3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B0b1676a7X2Dbd73X2D435eX2Dbc16X2De646dce0990f <https://example.org/DomainGraph> .
+_:B213487dcX2D29deX2D427dX2D9cc8X2D89fc32881ea3 <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> _:B74b6e3afX2D379bX2D4513X2Da17dX2D91e8a72b474a <https://example.org/DomainGraph> .
+_:B0b1676a7X2Dbd73X2D435eX2Dbc16X2De646dce0990f <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> <https://example.org/DomainGraph> .
+_:B0b1676a7X2Dbd73X2D435eX2Dbc16X2De646dce0990f <http://www.w3.org/2003/11/swrl#propertyPredicate> <https://w3id.org/HHT#isMemberOf> <https://example.org/DomainGraph> .
+_:B0b1676a7X2Dbd73X2D435eX2Dbc16X2De646dce0990f <http://www.w3.org/2003/11/swrl#argument1> <https://w3id.org/HHT#t1> <https://example.org/DomainGraph> .
+_:B0b1676a7X2Dbd73X2D435eX2Dbc16X2De646dce0990f <http://www.w3.org/2003/11/swrl#argument2> <https://w3id.org/HHT#l> <https://example.org/DomainGraph> .
+_:B74b6e3afX2D379bX2D4513X2Da17dX2D91e8a72b474a <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#AtomList> <https://example.org/DomainGraph> .
+_:B74b6e3afX2D379bX2D4513X2Da17dX2D91e8a72b474a <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:B4e311e38X2Df053X2D4351X2Db3d0X2D12fb01d1acc7 <https://example.org/DomainGraph> .
+_:B74b6e3afX2D379bX2D4513X2Da17dX2D91e8a72b474a <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:B4e311e38X2Df053X2D4351X2Db3d0X2D12fb01d1acc7 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> <https://example.org/DomainGraph> .
+_:B4e311e38X2Df053X2D4351X2Db3d0X2D12fb01d1acc7 <http://www.w3.org/2003/11/swrl#propertyPredicate> <https://w3id.org/HHT#isMemberOf> <https://example.org/DomainGraph> .
+_:B4e311e38X2Df053X2D4351X2Db3d0X2D12fb01d1acc7 <http://www.w3.org/2003/11/swrl#argument1> <https://w3id.org/HHT#t3> <https://example.org/DomainGraph> .
+_:B4e311e38X2Df053X2D4351X2Db3d0X2D12fb01d1acc7 <http://www.w3.org/2003/11/swrl#argument2> <https://w3id.org/HHT#l> <https://example.org/DomainGraph> .
+_:Bdf530b6fX2Ded29X2D4523X2Dbe45X2D891a453562fd <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#AtomList> <https://example.org/DomainGraph> .
+_:Bdf530b6fX2Ded29X2D4523X2Dbe45X2D891a453562fd <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> _:Ba70d1c2aX2D9cdaX2D4877X2D96c0X2Df2e9ccc06442 <https://example.org/DomainGraph> .
+_:Bdf530b6fX2Ded29X2D4523X2Dbe45X2D891a453562fd <http://www.w3.org/1999/02/22-rdf-syntax-ns#rest> <http://www.w3.org/1999/02/22-rdf-syntax-ns#nil> <https://example.org/DomainGraph> .
+_:Ba70d1c2aX2D9cdaX2D4877X2D96c0X2Df2e9ccc06442 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2003/11/swrl#IndividualPropertyAtom> <https://example.org/DomainGraph> .
+_:Ba70d1c2aX2D9cdaX2D4877X2D96c0X2Df2e9ccc06442 <http://www.w3.org/2003/11/swrl#propertyPredicate> <http://www.w3.org/2002/07/owl#sameAs> <https://example.org/DomainGraph> .
+_:Ba70d1c2aX2D9cdaX2D4877X2D96c0X2Df2e9ccc06442 <http://www.w3.org/2003/11/swrl#argument1> <https://w3id.org/HHT#t1> <https://example.org/DomainGraph> .
+_:Ba70d1c2aX2D9cdaX2D4877X2D96c0X2Df2e9ccc06442 <http://www.w3.org/2003/11/swrl#argument2> <https://w3id.org/HHT#t3> <https://example.org/DomainGraph> .
 _:B819900edX2D8262X2D4297X2Daaf1X2D59501a4f5651 <http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#AllDifferent> <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation0_SebastienPoublanc> .
 _:B819900edX2D8262X2D4297X2Daaf1X2D59501a4f5651 <http://www.w3.org/2002/07/owl#distinctMembers> _:B7aeeacdfX2D3194X2D46cdX2D99c2X2D0c30eea1c09c <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation0_SebastienPoublanc> .
 _:B7aeeacdfX2D3194X2D46cdX2D99c2X2D0c30eea1c09c <http://www.w3.org/1999/02/22-rdf-syntax-ns#first> <https://example.com/entityDoc1ArmagnacV1> <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation0_SebastienPoublanc> .
diff --git a/examples/MonoSourceResult.trig b/examples/MonoSourceResult.trig
index 77a1db94f335b99333d5eafb378749a5c9a25bb8..074f1256e83761ff9f713a3449d2773cab902f65 100644
--- a/examples/MonoSourceResult.trig
+++ b/examples/MonoSourceResult.trig
@@ -9,7 +9,7 @@
 @prefix foaf: <http://xmlns.com/foaf/0.1/> .
 
 {
-	<https://example.org/ontologyGraph> a <http://dhfc/OntologyGraph> .
+	<https://example.org/DomainGraph> a <http://dhfc/DomainGraph> .
 
 	<https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres> a <http://dhfc/Source> ;
 		<http://dhfc/hasInterpretation> <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation0>, <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation1>, <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation2>, <https://cluedo4kg.irit.fr/repositories/sparqluedo/Plan_des_maistrises_de_Tarbre__Comenge_&_autres#interpretation3> .
@@ -14660,7 +14660,7 @@
 	_:B099f5803X2D7212X2D46b4X2D9debX2Ddbc4a28e68db <http://dhfc/isSupportFor> <https://cluedo4kg.irit.fr/repositories/sparqluedo-0x7083f9a6e67ce4e10x76ce781a012814490x4d7ab74f54462cd1> .
 }
 
-<https://example.org/ontologyGraph> {
+<https://example.org/DomainGraph> {
 	<https://w3id.org/HHT#LevelVersion> a owl:Class ;
 		rdfs:subClassOf <https://w3id.org/HHT#Version>, _:B3dca560dX2D159eX2D4ec1X2Db1cfX2D624cc2760e1b .
 
diff --git a/testSimpleOntology.trig b/testSimpleOntology.trig
index 839fed2196415df8019f2910aef1a0d8268246af..c0e84c28580b9b8b0827c1bef4f21ab1eb919280 100644
--- a/testSimpleOntology.trig
+++ b/testSimpleOntology.trig
@@ -7,7 +7,7 @@
 @prefix dhfc: <http://dhfc/> .
 @base <http://www.semanticweb.org/wcharles/ontologies/2024/9/untitled-ontology-80> .
 
-<https://example.org/ontologyGraph> {
+<https://example.org/DomainGraph> {
 
         <http://www.semanticweb.org/wcharles/ontologies/2024/9/untitled-ontology-80> rdf:type owl:Ontology .
 
@@ -32,5 +32,5 @@
         :Person rdf:type owl:Class .
                                                                                                                                                                                                                                                                                         
 }
-{<https://example.org/ontologyGraph> a dhfc:ontologyGraph.}
+{<https://example.org/DomainGraph> a dhfc:DomainGraph.}