diff --git a/tenet/scheme/amr_master_rule/owl_generation/owl_class_generator.py b/tenet/scheme/amr_master_rule/owl_generation/owl_class_generator.py
index ba0123eabd53f03d5a2c82c1a8a9f76e9c4dc45a..d68df63ce26101619f8fd1234dc9891e7c726850 100644
--- a/tenet/scheme/amr_master_rule/owl_generation/owl_class_generator.py
+++ b/tenet/scheme/amr_master_rule/owl_generation/owl_class_generator.py
@@ -173,6 +173,7 @@ def __compute_class_type_uri(class_net):
     if isinstance(class_net.class_type, list) and len(class_net.class_type) > 0:
         class_type = class_net.class_type[0]
     else: # default class_type
+        # print(f'{class_net.uri}')
         class_type = f'{DEFAULT_CLASS_TYPE}'
     return produce_uriref(class_net.support_graph, class_type)
 
diff --git a/tenet/scheme/amr_master_rule/transduction/classifier/entity_classifier_3.py b/tenet/scheme/amr_master_rule/transduction/classifier/entity_classifier_3.py
index afd8183deeebf4c5d4ca29ae63ad77c0aaaa96bd..5d9260f37b437b2e3a9f1f627608c00698f991b2 100644
--- a/tenet/scheme/amr_master_rule/transduction/classifier/entity_classifier_3.py
+++ b/tenet/scheme/amr_master_rule/transduction/classifier/entity_classifier_3.py
@@ -2,7 +2,7 @@
 # -*-coding:Utf-8 -*
 
 #==============================================================================
-# TENET: Rule to entity classification (4)
+# TENET: Rule to entity classification (3)
 #------------------------------------------------------------------------------
 # AMR rule to classify classes as entities from degree arguments
 #==============================================================================
diff --git a/tenet/scheme/amr_master_rule/transduction/classifier/mother_classifier_1.py b/tenet/scheme/amr_master_rule/transduction/classifier/mother_classifier_1.py
index 68cafae429e03f5f6562270d5aeb8776f9e3e09b..fe93f7466a5e9b48d971a99b966b1992eff5990e 100644
--- a/tenet/scheme/amr_master_rule/transduction/classifier/mother_classifier_1.py
+++ b/tenet/scheme/amr_master_rule/transduction/classifier/mother_classifier_1.py
@@ -14,6 +14,7 @@ from transduction import net
 from transduction.query_builder import generate_select_query
 from transduction.rdfterm_computer import produce_uriref, produce_literal
 
+ENTITY_CLASS_TYPE = 'base-out:Entity'
 
 
 #==============================================================================
@@ -44,6 +45,11 @@ def __search_pattern(graph):
 # Construct Method(s)
 #==============================================================================
 
+def __classify_net_as_entity(graph, net_uri):
+    class_net = net.ClassNet(graph, uri=net_uri)
+    class_net.class_type = ENTITY_CLASS_TYPE    
+    return class_net.generate_triple_definition()
+
 def __associate_mother_relation(graph, left_net_uri, right_net_uri):
     left_class_net = net.ClassNet(graph, uri=left_net_uri)
     right_class_net = net.ClassNet(graph, uri=right_net_uri)
@@ -65,11 +71,13 @@ def classify_mother_from_domain_relation(graph):
     query_code, pattern_set = __search_pattern(graph)
     
     for pattern in pattern_set:
-        left_class_net_uri = str(pattern[0].toPython())
-        right_class_net_uri = str(pattern[1].toPython())
         
-        # Associate mother relation between classes
-        new_triples = __associate_mother_relation(graph, left_class_net_uri, right_class_net_uri)
+        # Classify mother net as Entity
+        new_triples = __classify_net_as_entity(graph, pattern.rightClassNet)
+        rule_triple_list += new_triples
+        
+        # Associate mother relation between class nets
+        new_triples = __associate_mother_relation(graph, pattern.leftClassNet, pattern.rightClassNet)
         rule_triple_list.extend(new_triples)
     
     return rule_label, rule_triple_list
diff --git a/tests/dev_owl_rule_tests/context.py b/tests/dev_owl_rule_tests/context.py
index f6d3a3fef9ee8e78b4def19130e49cf5b0207a64..9ae82dccdb69b696564161e36ccff34046ba440f 100644
--- a/tests/dev_owl_rule_tests/context.py
+++ b/tests/dev_owl_rule_tests/context.py
@@ -4,6 +4,7 @@ CURRENT_DIRPATH = os.path.dirname(os.path.abspath(__file__))
 LIB_PATH = os.path.dirname(f'{CURRENT_DIRPATH}/../..')
 print(f'Test Context: {LIB_PATH}')
 sys.path.insert(0, os.path.abspath(LIB_PATH))
+print(sys.path)
 
 import tenet
  
diff --git a/tests/dev_owl_rule_tests/test_data/devGraph-classes-to-generate-2.result.ttl b/tests/dev_owl_rule_tests/test_data/devGraph-classes-to-generate-2.result.ttl
index d14b9d2dc47ef1b624ebf62b486f9528219aeb9b..7825e7a6c8e035abf0780edd816916a9cea54acf 100644
--- a/tests/dev_owl_rule_tests/test_data/devGraph-classes-to-generate-2.result.ttl
+++ b/tests/dev_owl_rule_tests/test_data/devGraph-classes-to-generate-2.result.ttl
@@ -1,4 +1,3 @@
-@base <https://amr.tetras-libre.fr/rdf/devGraph-classes-to-generate-2/result> .
 @prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
 @prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
 @prefix ext-out: <https://tenet.tetras-libre.fr/extract-result#> .
@@ -61,19 +60,19 @@ ns2:root a owl:AnnotationProperty .
 :AMR_Prep_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-:edge_a_op1_s2 a :AMR_Edge ;
-    :hasAmrRole :role_op1 ;
-    :hasRoleID "op1" .
-
-:edge_a_op2_o a :AMR_Edge ;
+:edge_a_o a :AMR_Edge ;
     :hasAmrRole :role_op2 ;
     :hasRoleID "op2" .
 
-:edge_b_ARG0_g a :AMR_Edge ;
+:edge_a_s2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_g a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_b_ARG1_s a :AMR_Edge ;
+:edge_b_s a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
@@ -89,19 +88,19 @@ ns2:root a owl:AnnotationProperty .
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_o2_ARG0_o a :AMR_Edge ;
+:edge_o2_o a :AMR_Edge ;
     :hasAmrRole :role_ARG0 ;
     :hasRoleID "ARG0" .
 
-:edge_o2_ARG1_s2 a :AMR_Edge ;
+:edge_o2_s2 a :AMR_Edge ;
     :hasAmrRole :role_ARG1 ;
     :hasRoleID "ARG1" .
 
-:edge_o3_op1_d a :AMR_Edge ;
+:edge_o3_d a :AMR_Edge ;
     :hasAmrRole :role_op1 ;
     :hasRoleID "op1" .
 
-:edge_o3_op2_d2 a :AMR_Edge ;
+:edge_o3_d2 a :AMR_Edge ;
     :hasAmrRole :role_op2 ;
     :hasRoleID "op2" .
 
@@ -117,7 +116,7 @@ ns2:root a owl:AnnotationProperty .
     :hasAmrRole :role_name ;
     :hasRoleID "name" .
 
-:edge_s_domain_p a :AMR_Edge ;
+:edge_s_p a :AMR_Edge ;
     :hasAmrRole :role_domain ;
     :hasRoleID "domain" .
 
@@ -374,9 +373,6 @@ ns2:root a owl:AnnotationProperty .
 sys:Event a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
 
-sys:Undetermined_Thing a owl:Class ;
-    rdfs:subClassOf sys:Out_Structure .
-
 sys:fromStructure a owl:AnnotationProperty ;
     rdfs:subPropertyOf sys:Out_AnnotationProperty .
 
@@ -508,80 +504,6 @@ net:axiom_disjointProperty_not-direct_direct_d2 a net:Axiom_Net ;
         net:compositeProperty_not-direct_d2 ;
     net:hasStructure "SSC-01-01" .
 
-net:compositeClass_gravitation-bind-system_g a net:Composite_Class_Net ;
-    net:composeFrom net:atomClass_gravitation_g,
-        net:atomClass_system_s,
-        net:atomProperty_bind_b ;
-    net:coverBaseNode :leaf_gravitation_g ;
-    net:coverNode :leaf_bind-01_b,
-        :leaf_gravitation_g,
-        :leaf_system_s ;
-    net:hasMotherClassNet net:atomClass_gravitation_g ;
-    net:hasNaming "gravitation-bind-system" ;
-    net:hasRestriction net:restriction_bind-system_b ;
-    net:hasStructure "SSC-01-01" .
-
-net:compositeClass_object-orbit-hasManner-direct-sun_o a net:Composite_Class_Net ;
-    net:composeFrom net:atomClass_object_o,
-        net:atomClass_sun_s2,
-        net:compositeProperty_orbit-hasManner-direct_o2 ;
-    net:coverBaseNode :leaf_object_o ;
-    net:coverNode :leaf_direct-02_d,
-        :leaf_direct-02_d2,
-        :leaf_hasManner_m9,
-        :leaf_object_o,
-        :leaf_orbit-01_o2,
-        :leaf_sun_s2 ;
-    net:hasMotherClassNet net:atomClass_object_o ;
-    net:hasNaming "object-orbit-hasManner-direct-sun" ;
-    net:hasRestriction net:restriction_orbit-hasManner-direct-sun_o2 ;
-    net:hasStructure "SSC-01-01" .
-
-net:compositeClass_object-orbit-hasManner-not-direct-sun_o a net:Composite_Class_Net ;
-    net:composeFrom net:atomClass_object_o,
-        net:atomClass_sun_s2,
-        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
-    net:coverBaseNode :leaf_object_o ;
-    net:coverNode :leaf_direct-02_d2,
-        :leaf_hasManner_m9,
-        :leaf_object_o,
-        :leaf_orbit-01_o2,
-        :leaf_sun_s2 ;
-    net:hasMotherClassNet net:atomClass_object_o ;
-    net:hasNaming "object-orbit-hasManner-not-direct-sun" ;
-    net:hasRestriction net:restriction_orbit-hasManner-not-direct-sun_o2 ;
-    net:hasStructure "SSC-01-01" .
-
-net:compositeClass_system-hasPart-object_s a net:Composite_Class_Net ;
-    :role_domain net:atomClass_system_p,
-        net:individual_SolarSystem_p ;
-    net:composeFrom net:atomClass_object_o,
-        net:atomClass_system_s,
-        net:atomProperty_hasPart_p9 ;
-    net:coverBaseNode :leaf_system_s ;
-    net:coverNode :leaf_hasPart_p9,
-        :leaf_object_o,
-        :leaf_system_s ;
-    net:hasMotherClassNet net:atomClass_system_s ;
-    net:hasNaming "system-hasPart-object" ;
-    net:hasRestriction net:restriction_hasPart-object_p9 ;
-    net:hasStructure "SSC-01-01" .
-
-net:compositeClass_system-hasPart-sun_s a net:Composite_Class_Net ;
-    :role_domain net:atomClass_system_p,
-        net:individual_SolarSystem_p ;
-    net:composeFrom net:atomClass_sun_s2,
-        net:atomClass_system_s,
-        net:atomProperty_hasPart_p9 ;
-    net:coverBaseNode :leaf_system_s ;
-    net:coverNode :leaf_hasPart_p9,
-        :leaf_sun_s2,
-        :leaf_system_s ;
-    net:hasMotherClassNet net:atomClass_system_s ;
-    net:hasNaming "system-hasPart-sun" ;
-    net:hasRestriction net:restriction_hasPart-sun_p9 ;
-    net:hasStructure "SSC-01-01" .
-
 net:entityClass a owl:AnnotationProperty ;
     rdfs:label "entity class" ;
     rdfs:subPropertyOf net:objectValue .
@@ -705,6 +627,82 @@ net:relationOf a owl:AnnotationProperty ;
     rdfs:label "relation of" ;
     rdfs:subPropertyOf net:typeProperty .
 
+net:relation_SolarSystem-hasPart-object-SSC-01-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_object-SSC-01-01_o ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-object-SSC-01-01" ;
+    net:hasObjectNet net:individual_object-SSC-01-01_o ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_SolarSystem-hasPart-sun-SSC-01-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_gravitation-SSC-01-01-bind-SolarSystem_g a net:Relation_Net ;
+    net:composeFrom net:atomProperty_bind_b,
+        net:individual_SolarSystem_p,
+        net:individual_gravitation-SSC-01-01_g ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_p,
+        :leaf_system_s ;
+    net:hasNaming "gravitation-SSC-01-01-bind-SolarSystem" ;
+    net:hasObjectNet net:individual_SolarSystem_p ;
+    net:hasPredicateNet net:atomProperty_bind_b ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_gravitation-SSC-01-01_g .
+
+net:relation_object-SSC-01-01-orbit-hasManner-direct-sun-SSC-01-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-direct_o2,
+        net:individual_object-SSC-01-01_o,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-SSC-01-01-orbit-hasManner-direct-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_object-SSC-01-01_o .
+
+net:relation_object-SSC-01-01-orbit-hasManner-not-direct-sun-SSC-01-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-not-direct_o2,
+        net:individual_object-SSC-01-01_o,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-SSC-01-01-orbit-hasManner-not-direct-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_object-SSC-01-01_o .
+
 net:type a owl:AnnotationProperty ;
     rdfs:label "type "@fr ;
     rdfs:subPropertyOf net:netProperty .
@@ -865,6 +863,9 @@ sys:Feature a owl:Class ;
 
 sys:Out_AnnotationProperty a owl:AnnotationProperty .
 
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
 ext-out:gravitation a owl:Class ;
     rdfs:label "gravitation" ;
     rdfs:subClassOf sys:Entity ;
@@ -873,9 +874,6 @@ ext-out:gravitation a owl:Class ;
 net:Feature a owl:Class ;
     rdfs:subClassOf net:Net_Structure .
 
-net:Individual_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
-
 net:atomClass_orbit_o2 a net:Atom_Class_Net,
         net:Class_Net,
         net:Deprecated_Net ;
@@ -889,6 +887,84 @@ net:atomClass_orbit_o2 a net:Atom_Class_Net,
     net:hasNaming "orbit" ;
     net:hasStructure "SSC-01-01" .
 
+net:compositeClass_gravitation-bind-system_g a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_gravitation_g,
+        net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_gravitation_g ;
+    net:hasNaming "gravitation-bind-system" ;
+    net:hasRestriction net:restriction_bind-system_b ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_object-orbit-hasManner-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-direct-sun_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_object-orbit-hasManner-not-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-not-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-not-direct-sun_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_system-hasPart-object_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-object" ;
+    net:hasRestriction net:restriction_hasPart-object_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_system-hasPart-sun_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-sun" ;
+    net:hasRestriction net:restriction_hasPart-sun_p9 ;
+    net:hasStructure "SSC-01-01" .
+
 net:has_value a owl:AnnotationProperty ;
     rdfs:subPropertyOf net:netProperty .
 
@@ -1114,7 +1190,7 @@ ns2:or a ns2:Concept ;
     :label "op2" .
 
 :value_SolarSystem a :AMR_Value ;
-    rdfs:label "Solar System" .
+    rdfs:label "SolarSystem" .
 
 sys:Out_ObjectProperty a owl:ObjectProperty .
 
@@ -1127,6 +1203,16 @@ net:Property_Net a owl:Class ;
 net:Value_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
+net:individual_gravitation-SSC-01-01_g a net:Individual_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasIndividualLabel "any gravitation" ;
+    net:hasMotherClassNet net:compositeClass_gravitation-bind-system_g ;
+    net:hasNaming "gravitation-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
 net:objectProperty a owl:AnnotationProperty ;
     rdfs:label "object attribute" .
 
@@ -1134,7 +1220,7 @@ net:value_SolarSystem_blankNode a net:Value_Net ;
     net:coverAmrValue :value_SolarSystem ;
     net:hasNaming "SolarSystem" ;
     net:hasStructure "SSC-01-01" ;
-    net:hasValueLabel "Solar System" .
+    net:hasValueLabel "SolarSystem" .
 
 net:value_negative_blankNode a net:Value_Net ;
     net:coverAmrValue :value_negative ;
@@ -1202,7 +1288,8 @@ ext-out:sun a owl:Class ;
 
 ext-out:system a owl:Class ;
     rdfs:label "system" ;
-    rdfs:subClassOf sys:Entity ;
+    rdfs:subClassOf sys:Entity,
+        sys:Undetermined_Thing ;
     sys:fromStructure "SSC-01-01" .
 
 net:Axiom_Net a owl:Class ;
@@ -1225,69 +1312,10 @@ net:atomClass_gravitation_g a net:Atom_Class_Net,
     net:hasNaming "gravitation" ;
     net:hasStructure "SSC-01-01" .
 
-net:atomProperty_bind_b a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_gravitation_g ;
-    :role_ARG1 net:atomClass_system_s ;
-    net:coverBaseNode :leaf_bind-01_b ;
-    net:coverNode :leaf_bind-01_b ;
-    net:hasNaming "bind" ;
-    net:hasPropertyName "bind" ;
-    net:hasPropertyName01 "binding" ;
-    net:hasPropertyName10 "bind-by" ;
-    net:hasPropertyName12 "bind-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "SSC-01-01" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_gravitation_g,
-        :leaf_system_s .
-
-net:compositeProperty_orbit-hasManner-direct_o2 a net:Composite_Property_Net ;
-    :role_ARG0 net:atomClass_object_o ;
-    :role_ARG1 net:atomClass_sun_s2 ;
-    net:composeFrom net:atomProperty_direct_d,
-        net:atomProperty_direct_d2,
-        net:atomProperty_hasManner_m9,
-        net:atomProperty_orbit_o2 ;
-    net:coverBaseNode :leaf_orbit-01_o2 ;
-    net:coverNode :leaf_direct-02_d,
-        :leaf_direct-02_d2,
-        :leaf_hasManner_m9,
-        :leaf_orbit-01_o2 ;
-    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
-    net:hasNaming "orbit-hasManner-direct" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasRestriction net:restriction_hasManner-direct_m9 ;
-    net:hasStructure "SSC-01-01" .
-
-net:compositeProperty_orbit-hasManner-not-direct_o2 a net:Composite_Property_Net ;
-    :role_ARG0 net:atomClass_object_o ;
-    :role_ARG1 net:atomClass_sun_s2 ;
-    net:composeFrom net:atomProperty_hasManner_m9,
-        net:atomProperty_orbit_o2,
-        net:compositeProperty_not-direct_d2 ;
-    net:coverBaseNode :leaf_orbit-01_o2 ;
-    net:coverNode :leaf_direct-02_d2,
-        :leaf_hasManner_m9,
-        :leaf_orbit-01_o2 ;
-    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
-    net:hasNaming "orbit-hasManner-not-direct" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasRestriction net:restriction_hasManner-not-direct_m9 ;
-    net:hasStructure "SSC-01-01" .
-
 net:has_relation_value a owl:AnnotationProperty ;
     rdfs:label "has relation value" ;
     rdfs:subPropertyOf net:has_object .
 
-net:individual_SolarSystem_p a net:Individual_Net ;
-    :role_name net:value_SolarSystem_blankNode ;
-    net:coverBaseNode :leaf_system_p ;
-    net:coverNode :leaf_system_p ;
-    net:hasIndividualLabel "Solar System" ;
-    net:hasMotherClassNet net:atomClass_system_p ;
-    net:hasNaming "SolarSystem" ;
-    net:hasStructure "SSC-01-01" .
-
 ns3:FrameRole a ns2:Role,
         owl:Class,
         owl:NamedIndividual ;
@@ -1301,14 +1329,14 @@ ns3:FrameRole a ns2:Role,
     rdfs:subClassOf :AMR_Concept .
 
 :leaf_and_a a :AMR_Leaf ;
-    :edge_a_op1_s2 :leaf_sun_s2 ;
-    :edge_a_op2_o :leaf_object_o ;
+    :edge_a_o :leaf_object_o ;
+    :edge_a_s2 :leaf_sun_s2 ;
     :hasConcept :concept_and ;
     :hasVariable :variable_a .
 
 :leaf_or_o3 a :AMR_Leaf ;
-    :edge_o3_op1_d :leaf_direct-02_d ;
-    :edge_o3_op2_d2 :leaf_direct-02_d2 ;
+    :edge_o3_d :leaf_direct-02_d ;
+    :edge_o3_d2 :leaf_direct-02_d2 ;
     :hasConcept :concept_or ;
     :hasVariable :variable_o3 .
 
@@ -1322,14 +1350,8 @@ ns3:FrameRole a ns2:Role,
     rdfs:subClassOf :AMR_Core_Role ;
     :label "ARG1" .
 
-net:atomClass_system_p a net:Atom_Class_Net,
-        net:Deprecated_Net ;
-    :role_name net:value_SolarSystem_blankNode ;
-    net:coverBaseNode :leaf_system_p ;
-    net:coverNode :leaf_system_p ;
-    net:hasClassName "system" ;
-    net:hasNaming "system" ;
-    net:hasStructure "SSC-01-01" .
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
 net:atomProperty_direct_d a net:Atom_Property_Net ;
     net:coverBaseNode :leaf_direct-02_d ;
@@ -1355,23 +1377,65 @@ net:typeProperty a owl:AnnotationProperty ;
 :AMR_Role a owl:Class ;
     rdfs:subClassOf :AMR_Element .
 
-:leaf_bind-01_b a :AMR_Leaf ;
-    :edge_b_ARG0_g :leaf_gravitation_g ;
-    :edge_b_ARG1_s :leaf_system_s ;
-    :hasConcept :concept_bind-01 ;
-    :hasVariable :variable_b .
-
-:leaf_system_p a :AMR_Leaf ;
-    :edge_p_name_SolarSystem :value_SolarSystem ;
-    :hasConcept :concept_system ;
-    :hasVariable :variable_p .
-
 sys:Out_Structure a owl:Class ;
     rdfs:label "Output Ontology Structure" .
 
 net:Composite_Class_Net a owl:Class ;
     rdfs:subClassOf net:Class_Net .
 
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_bind_b a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_gravitation_g ;
+    :role_ARG1 net:atomClass_system_s ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b ;
+    net:hasNaming "bind" ;
+    net:hasPropertyName "bind" ;
+    net:hasPropertyName01 "binding" ;
+    net:hasPropertyName10 "bind-by" ;
+    net:hasPropertyName12 "bind-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_gravitation_g,
+        :leaf_system_s .
+
+net:compositeProperty_orbit-hasManner-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-direct_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeProperty_orbit-hasManner-not-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-not-direct_m9 ;
+    net:hasStructure "SSC-01-01" .
+
 net:netProperty a owl:AnnotationProperty ;
     rdfs:label "netProperty" .
 
@@ -1380,10 +1444,6 @@ net:netProperty a owl:AnnotationProperty ;
 
 :AMR_Structure a owl:Class .
 
-:leaf_gravitation_g a :AMR_Leaf ;
-    :hasConcept :concept_gravitation ;
-    :hasVariable :variable_g .
-
 cprm:configParamProperty a rdf:Property ;
     rdfs:label "Config Parameter Property" .
 
@@ -1410,24 +1470,6 @@ net:atomProperty_hasManner_m9 a net:Atom_Property_Net ;
     net:targetArgumentNode :leaf_or_o3,
         :leaf_orbit-01_o2 .
 
-net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
-    :role_ARG0 net:atomClass_system_s ;
-    :role_ARG1 net:atomClass_object_o,
-        net:atomClass_sun_s2,
-        net:phenomena_conjunction-AND_a ;
-    net:coverBaseNode :leaf_hasPart_p9 ;
-    net:coverNode :leaf_hasPart_p9 ;
-    net:hasNaming "hasPart" ;
-    net:hasPropertyName "hasPart" ;
-    net:hasPropertyName01 "hasParting" ;
-    net:hasPropertyName10 "hasPart-by" ;
-    net:hasPropertyName12 "hasPart-of" ;
-    net:hasPropertyType owl:ObjectProperty ;
-    net:hasStructure "SSC-01-01" ;
-    net:isCoreRoleLinked "true" ;
-    net:targetArgumentNode :leaf_and_a,
-        :leaf_system_s .
-
 net:atomProperty_orbit_o2 a net:Atom_Property_Net,
         net:Deprecated_Net ;
     :role_ARG0 net:atomClass_object_o ;
@@ -1445,17 +1487,34 @@ net:atomProperty_orbit_o2 a net:Atom_Property_Net,
     net:targetArgumentNode :leaf_object_o,
         :leaf_sun_s2 .
 
+net:individual_object-SSC-01-01_o a net:Individual_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasIndividualLabel "any object" ;
+    net:hasMotherClassNet net:atomClass_object_o,
+        net:compositeClass_object-orbit-hasManner-direct-sun_o,
+        net:compositeClass_object-orbit-hasManner-not-direct-sun_o ;
+    net:hasNaming "object-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+net:individual_sun-SSC-01-01_s2 a net:Individual_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasIndividualLabel "any sun" ;
+    net:hasMotherClassNet net:atomClass_sun_s2 ;
+    net:hasNaming "sun-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
 rdf:Property a owl:Class .
 
 :AMR_Relation a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
-:leaf_direct-02_d a :AMR_Leaf ;
-    :hasConcept :concept_direct-02 ;
-    :hasVariable :variable_d .
-
-net:Class_Net a owl:Class ;
-    rdfs:subClassOf net:Net .
+:leaf_bind-01_b a :AMR_Leaf ;
+    :edge_b_g :leaf_gravitation_g ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_bind-01 ;
+    :hasVariable :variable_b .
 
 net:Deprecated_Net a owl:Class ;
     rdfs:subClassOf net:Net .
@@ -1466,12 +1525,18 @@ net:Relation a owl:Class ;
 net:Restriction_Net a owl:Class ;
     rdfs:subClassOf net:Net .
 
-:leaf_hasPart_p9 a :AMR_Leaf ;
-    :edge_p9_ARG0_s :leaf_system_s ;
-    :edge_p9_ARG1_a :leaf_and_a ;
-    :hasConcept :concept_part ;
-    :hasVariable :variable_p9 ;
-    :isReifiedLeaf true .
+net:atomClass_system_p a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasClassName "system" ;
+    net:hasNaming "system" ;
+    net:hasStructure "SSC-01-01" .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
 
 net:compositeProperty_not-direct_d2 a net:Composite_Property_Net ;
     :role_polarity net:value_negative_blankNode ;
@@ -1489,20 +1554,8 @@ net:has_object a owl:AnnotationProperty ;
 :AMR_Op_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
-net:Net a owl:Class ;
-    rdfs:subClassOf net:Net_Structure .
-
-net:atomClass_system_s a net:Atom_Class_Net,
-        net:Class_Net,
-        net:Deprecated_Net ;
-    :role_domain net:atomClass_system_p,
-        net:individual_SolarSystem_p ;
-    net:coverBaseNode :leaf_system_s ;
-    net:coverNode :leaf_system_s ;
-    net:hasClassName "system" ;
-    net:hasClassType sys:Entity ;
-    net:hasNaming "system" ;
-    net:hasStructure "SSC-01-01" .
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
 
 net:atomProperty_direct_d2 a net:Atom_Property_Net,
         net:Deprecated_Net ;
@@ -1519,21 +1572,78 @@ net:atomProperty_direct_d2 a net:Atom_Property_Net,
     net:isCoreRoleLinked "true" ;
     net:targetArgumentNode :value_negative .
 
+net:individual_SolarSystem_p a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s,
+        net:compositeClass_system-hasPart-object_s,
+        net:compositeClass_system-hasPart-sun_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "SSC-01-01" .
+
 :AMR_AnnotationProperty a owl:AnnotationProperty .
 
 :AMR_Core_Role a owl:Class ;
     rdfs:subClassOf :AMR_Role .
 
+:leaf_gravitation_g a :AMR_Leaf ;
+    :hasConcept :concept_gravitation ;
+    :hasVariable :variable_g .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_a :leaf_and_a ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_system_p a :AMR_Leaf ;
+    :edge_p_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_p .
+
 sys:Entity a owl:Class ;
     rdfs:subClassOf sys:Out_Structure .
 
-:leaf_object_o a :AMR_Leaf ;
-    :hasConcept :concept_object ;
-    :hasVariable :variable_o .
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
 
-:leaf_sun_s2 a :AMR_Leaf ;
-    :hasConcept :concept_sun ;
-    :hasVariable :variable_s2 .
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_system_p ;
+    net:hasNaming "system" ;
+    net:hasStructure "SSC-01-01" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s ;
+    :role_ARG1 net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:phenomena_conjunction-AND_a ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_system_s .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
 
 :leaf_hasManner_m9 a :AMR_Leaf ;
     :edge_m9_ARG0_o2 :leaf_orbit-01_o2 ;
@@ -1542,14 +1652,6 @@ sys:Entity a owl:Class ;
     :hasVariable :variable_m9 ;
     :isReifiedLeaf true .
 
-:AMR_Variable a owl:Class ;
-    rdfs:subClassOf :AMR_Element .
-
-:leaf_system_s a :AMR_Leaf ;
-    :edge_s_domain_p :leaf_system_p ;
-    :hasConcept :concept_system ;
-    :hasVariable :variable_s .
-
 net:atomClass_object_o a net:Atom_Class_Net,
         net:Class_Net,
         net:Deprecated_Net ;
@@ -1563,6 +1665,15 @@ net:atomClass_object_o a net:Atom_Class_Net,
 :AMR_Leaf a owl:Class ;
     rdfs:subClassOf :AMR_Structure .
 
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_p :leaf_system_p ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
 net:atomClass_sun_s2 a net:Atom_Class_Net,
         net:Class_Net ;
     net:coverBaseNode :leaf_sun_s2 ;
@@ -1572,24 +1683,28 @@ net:atomClass_sun_s2 a net:Atom_Class_Net,
     net:hasNaming "sun" ;
     net:hasStructure "SSC-01-01" .
 
-:leaf_orbit-01_o2 a :AMR_Leaf ;
-    :edge_o2_ARG0_o :leaf_object_o ;
-    :edge_o2_ARG1_s2 :leaf_sun_s2 ;
-    :hasConcept :concept_orbit-01 ;
-    :hasVariable :variable_o2 .
-
 net:objectValue a owl:AnnotationProperty ;
     rdfs:label "valuations"@fr ;
     rdfs:subPropertyOf net:objectProperty .
 
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
 :leaf_direct-02_d2 a :AMR_Leaf ;
     :edge_d2_polarity_negative :value_negative ;
     :hasConcept :concept_direct-02 ;
     :hasVariable :variable_d2 .
 
-:AMR_Edge a owl:Class ;
-    rdfs:subClassOf :AMR_Structure .
-
 :AMR_Linked_Data a owl:Class .
 
 [] a owl:AllDisjointClasses ;
diff --git a/tests/dev_owl_rule_tests/test_data/devGraph-classes-to-generate-3.result.ttl b/tests/dev_owl_rule_tests/test_data/devGraph-classes-to-generate-3.result.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..7825e7a6c8e035abf0780edd816916a9cea54acf
--- /dev/null
+++ b/tests/dev_owl_rule_tests/test_data/devGraph-classes-to-generate-3.result.ttl
@@ -0,0 +1,1712 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix ext-out: <https://tenet.tetras-libre.fr/extract-result#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns4: <http://amr.isi.edu/entity-types#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:bind-01.ARG0 a ns3:FrameRole .
+
+ns3:bind-01.ARG1 a ns3:FrameRole .
+
+ns3:orbit-01.ARG0 a ns3:FrameRole .
+
+ns3:orbit-01.ARG1 a ns3:FrameRole .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_o a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_s2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d2_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_m9_ARG0_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m9_ARG1_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_d a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_o3_d2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_s_p a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_SSC-01-01 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#root01> ;
+    :hasRootLeaf :leaf_system_s ;
+    :hasSentenceID "SSC-01-01" ;
+    :hasSentenceStatement "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+ext-out:gravitation-bind-system a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ext-out:bind ;
+            owl:someValuesFrom ext-out:system ],
+        ext-out:gravitation ;
+    sys:fromStructure "SSC-01-01" .
+
+ext-out:object-orbit-hasManner-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ext-out:orbit-hasManner-direct ;
+            owl:someValuesFrom ext-out:sun ],
+        ext-out:object ;
+    sys:fromStructure "SSC-01-01" .
+
+ext-out:object-orbit-hasManner-not-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ext-out:orbit-hasManner-not-direct ;
+            owl:someValuesFrom ext-out:sun ],
+        ext-out:object ;
+    sys:fromStructure "SSC-01-01" .
+
+ext-out:system-hasPart-object a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ext-out:hasPart ;
+            owl:someValuesFrom ext-out:object ],
+        ext-out:system ;
+    sys:fromStructure "SSC-01-01" .
+
+ext-out:system-hasPart-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ext-out:hasPart ;
+            owl:someValuesFrom ext-out:sun ],
+        ext-out:system ;
+    sys:fromStructure "SSC-01-01" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:axiom_disjointProperty_direct_not-direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_direct_not-direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:axiom_disjointProperty_not-direct_direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_not-direct_direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:relation_SolarSystem-hasPart-object-SSC-01-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_object-SSC-01-01_o ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-object-SSC-01-01" ;
+    net:hasObjectNet net:individual_object-SSC-01-01_o ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_SolarSystem-hasPart-sun-SSC-01-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_gravitation-SSC-01-01-bind-SolarSystem_g a net:Relation_Net ;
+    net:composeFrom net:atomProperty_bind_b,
+        net:individual_SolarSystem_p,
+        net:individual_gravitation-SSC-01-01_g ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_p,
+        :leaf_system_s ;
+    net:hasNaming "gravitation-SSC-01-01-bind-SolarSystem" ;
+    net:hasObjectNet net:individual_SolarSystem_p ;
+    net:hasPredicateNet net:atomProperty_bind_b ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_gravitation-SSC-01-01_g .
+
+net:relation_object-SSC-01-01-orbit-hasManner-direct-sun-SSC-01-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-direct_o2,
+        net:individual_object-SSC-01-01_o,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-SSC-01-01-orbit-hasManner-direct-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_object-SSC-01-01_o .
+
+net:relation_object-SSC-01-01-orbit-hasManner-not-direct-sun-SSC-01-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-not-direct_o2,
+        net:individual_object-SSC-01-01_o,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-SSC-01-01-orbit-hasManner-not-direct-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_object-SSC-01-01_o .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#b> a ns3:bind-01 ;
+    ns3:bind-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+    ns3:bind-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o2> a ns3:orbit-01 ;
+    ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:manner <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#root01> a ns2:AMR ;
+    ns2:has-id "SSC-01-01" ;
+    ns2:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
+    ns2:root <http://amr.isi.edu/amr_data/SSC-01-01#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns4:planet a ns2:NamedEntity ;
+    rdfs:comment "bug" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_bind-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:bind-01 ;
+    :label "bind-01" .
+
+:concept_gravitation rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:gravitation ;
+    :label "gravitation" .
+
+:concept_manner rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:manner ;
+    :isReifiedConcept true ;
+    :label "hasManner" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:object ;
+    :label "object" .
+
+:concept_or rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:or ;
+    :hasPhenomenaLink :phenomena_conjunction_or ;
+    :label "or" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sun ;
+    :label "sun" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_polarity a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+    :label "g" .
+
+:variable_m9 a ns11:manner,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "m9" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+    :label "p" ;
+    :name "Solar System" .
+
+:variable_p9 a ns11:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    :label "s2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+ext-out:gravitation a owl:Class ;
+    rdfs:label "gravitation" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "SSC-01-01" .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_orbit_o2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_gravitation-bind-system_g a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_gravitation_g,
+        net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_gravitation_g ;
+    net:hasNaming "gravitation-bind-system" ;
+    net:hasRestriction net:restriction_bind-system_b ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_object-orbit-hasManner-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-direct-sun_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_object-orbit-hasManner-not-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-not-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-not-direct-sun_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_system-hasPart-object_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-object" ;
+    net:hasRestriction net:restriction_hasPart-object_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_system-hasPart-sun_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-sun" ;
+    net:hasRestriction net:restriction_hasPart-sun_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_sun_s2 ;
+    :role_op2 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "SSC-01-01" .
+
+net:phenomena_conjunction-OR_o3 a net:Phenomena_Net ;
+    :role_op1 net:atomProperty_direct_d ;
+    :role_op2 net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_or_o3 ;
+    net:coverNode :leaf_or_o3 ;
+    net:hasNaming "conjunction-OR" ;
+    net:hasPhenomenaRef "or" ;
+    net:hasPhenomenaType :phenomena_conjunction_or ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_bind-system_b a net:Restriction_Net ;
+    net:composeFrom net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_system_s ;
+    net:hasNaming "bind-system" ;
+    net:hasRestrictionNetValue net:atomClass_system_s ;
+    net:hasRestrictionOnProperty net:atomProperty_bind_b ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasManner-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-direct" ;
+    net:hasRestrictionNetValue net:atomProperty_direct_d,
+        net:atomProperty_direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasManner-not-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-not-direct" ;
+    net:hasRestrictionNetValue net:compositeProperty_not-direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasPart-object_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o ;
+    net:hasNaming "hasPart-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasPart-sun_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2 ;
+    net:hasNaming "hasPart-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_orbit-hasManner-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_orbit-hasManner-not-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-not-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#a> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d> a ns3:direct-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d2> a ns3:direct-02 ;
+    ns11:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#g> a ns11:gravitation ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o3> a ns2:or ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#p> a ns4:planet,
+        ns4:system ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns4:system a ns2:NamedEntity ;
+    rdfs:label "system" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:bind-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:orbit-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:gravitation a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:manner a ns2:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:object a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:part a ns2:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sun a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:system a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:or a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:direct-02 ;
+    :label "direct-02" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns4:system,
+        ns11:system ;
+    :label "system" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:individual_gravitation-SSC-01-01_g a net:Individual_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasIndividualLabel "any gravitation" ;
+    net:hasMotherClassNet net:compositeClass_gravitation-bind-system_g ;
+    net:hasNaming "gravitation-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasValueLabel "SolarSystem" .
+
+net:value_negative_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_negative ;
+    net:hasNaming "negative" ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasValueLabel "negative" .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o> a ns11:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s> a ns11:system ;
+    ns11:domain <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+    ns11:part <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s2> a ns11:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:direct-02 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+ext-out:object a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "SSC-01-01" .
+
+ext-out:sun a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "SSC-01-01" .
+
+ext-out:system a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf sys:Entity,
+        sys:Undetermined_Thing ;
+    sys:fromStructure "SSC-01-01" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_gravitation_g a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_gravitation_g ;
+    net:hasClassName "gravitation" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "gravitation" ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_o :leaf_object_o ;
+    :edge_a_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_or_o3 a :AMR_Leaf ;
+    :edge_o3_d :leaf_direct-02_d ;
+    :edge_o3_d2 :leaf_direct-02_d2 ;
+    :hasConcept :concept_or ;
+    :hasVariable :variable_o3 .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_direct_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_bind_b a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_gravitation_g ;
+    :role_ARG1 net:atomClass_system_s ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b ;
+    net:hasNaming "bind" ;
+    net:hasPropertyName "bind" ;
+    net:hasPropertyName01 "binding" ;
+    net:hasPropertyName10 "bind-by" ;
+    net:hasPropertyName12 "bind-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_gravitation_g,
+        :leaf_system_s .
+
+net:compositeProperty_orbit-hasManner-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-direct_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeProperty_orbit-hasManner-not-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-not-direct_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomProperty_hasManner_m9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_orbit_o2,
+        net:atomProperty_orbit_o2 ;
+    :role_ARG1 net:phenomena_conjunction-OR_o3 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner" ;
+    net:hasPropertyName "hasManner" ;
+    net:hasPropertyName01 "hasMannering" ;
+    net:hasPropertyName10 "hasManner-by" ;
+    net:hasPropertyName12 "hasManner-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_or_o3,
+        :leaf_orbit-01_o2 .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_sun_s2 .
+
+net:individual_object-SSC-01-01_o a net:Individual_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasIndividualLabel "any object" ;
+    net:hasMotherClassNet net:atomClass_object_o,
+        net:compositeClass_object-orbit-hasManner-direct-sun_o,
+        net:compositeClass_object-orbit-hasManner-not-direct-sun_o ;
+    net:hasNaming "object-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+net:individual_sun-SSC-01-01_s2 a net:Individual_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasIndividualLabel "any sun" ;
+    net:hasMotherClassNet net:atomClass_sun_s2 ;
+    net:hasNaming "sun-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_bind-01_b a :AMR_Leaf ;
+    :edge_b_g :leaf_gravitation_g ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_bind-01 ;
+    :hasVariable :variable_b .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_system_p a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasClassName "system" ;
+    net:hasNaming "system" ;
+    net:hasStructure "SSC-01-01" .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+net:compositeProperty_not-direct_d2 a net:Composite_Property_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:composeFrom net:atomProperty_direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_direct_d2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :value_negative .
+
+net:individual_SolarSystem_p a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s,
+        net:compositeClass_system-hasPart-object_s,
+        net:compositeClass_system-hasPart-sun_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "SSC-01-01" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_gravitation_g a :AMR_Leaf ;
+    :hasConcept :concept_gravitation ;
+    :hasVariable :variable_g .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_a :leaf_and_a ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_system_p a :AMR_Leaf ;
+    :edge_p_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_p .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_system_p ;
+    net:hasNaming "system" ;
+    net:hasStructure "SSC-01-01" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s ;
+    :role_ARG1 net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:phenomena_conjunction-AND_a ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_system_s .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasManner_m9 a :AMR_Leaf ;
+    :edge_m9_ARG0_o2 :leaf_orbit-01_o2 ;
+    :edge_m9_ARG1_o3 :leaf_or_o3 ;
+    :hasConcept :concept_manner ;
+    :hasVariable :variable_m9 ;
+    :isReifiedLeaf true .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "SSC-01-01" .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_p :leaf_system_p ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+net:atomClass_sun_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "SSC-01-01" .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_direct-02_d2 a :AMR_Leaf ;
+    :edge_d2_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d2 .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/dev_owl_rule_tests/test_data/devGraph-classes-to-generate-3.ttl b/tests/dev_owl_rule_tests/test_data/devGraph-classes-to-generate-3.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..f4823d2a048487397949919f4fff5a53e1ad05fd
--- /dev/null
+++ b/tests/dev_owl_rule_tests/test_data/devGraph-classes-to-generate-3.ttl
@@ -0,0 +1,1654 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:bind-01.ARG0 a ns3:FrameRole .
+
+ns3:bind-01.ARG1 a ns3:FrameRole .
+
+ns3:orbit-01.ARG0 a ns3:FrameRole .
+
+ns3:orbit-01.ARG1 a ns3:FrameRole .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_o a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_s2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d2_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_m9_ARG0_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m9_ARG1_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_d a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_o3_d2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_s_p a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_SSC-01-01 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#root01> ;
+    :hasRootLeaf :leaf_system_s ;
+    :hasSentenceID "SSC-01-01" ;
+    :hasSentenceStatement "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:axiom_disjointProperty_direct_not-direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_direct_not-direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:axiom_disjointProperty_not-direct_direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_not-direct_direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:relation_SolarSystem-hasPart-object-SSC-01-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_object-SSC-01-01_o ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-object-SSC-01-01" ;
+    net:hasObjectNet net:individual_object-SSC-01-01_o ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_SolarSystem-hasPart-sun-SSC-01-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_gravitation-SSC-01-01-bind-SolarSystem_g a net:Relation_Net ;
+    net:composeFrom net:atomProperty_bind_b,
+        net:individual_SolarSystem_p,
+        net:individual_gravitation-SSC-01-01_g ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_p,
+        :leaf_system_s ;
+    net:hasNaming "gravitation-SSC-01-01-bind-SolarSystem" ;
+    net:hasObjectNet net:individual_SolarSystem_p ;
+    net:hasPredicateNet net:atomProperty_bind_b ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_gravitation-SSC-01-01_g .
+
+net:relation_object-SSC-01-01-orbit-hasManner-direct-sun-SSC-01-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-direct_o2,
+        net:individual_object-SSC-01-01_o,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-SSC-01-01-orbit-hasManner-direct-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_object-SSC-01-01_o .
+
+net:relation_object-SSC-01-01-orbit-hasManner-not-direct-sun-SSC-01-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-not-direct_o2,
+        net:individual_object-SSC-01-01_o,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-SSC-01-01-orbit-hasManner-not-direct-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_object-SSC-01-01_o .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#b> a ns3:bind-01 ;
+    ns3:bind-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+    ns3:bind-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o2> a ns3:orbit-01 ;
+    ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:manner <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#root01> a ns2:AMR ;
+    ns2:has-id "SSC-01-01" ;
+    ns2:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
+    ns2:root <http://amr.isi.edu/amr_data/SSC-01-01#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns2:NamedEntity ;
+    rdfs:comment "bug" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_bind-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:bind-01 ;
+    :label "bind-01" .
+
+:concept_gravitation rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:gravitation ;
+    :label "gravitation" .
+
+:concept_manner rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:manner ;
+    :isReifiedConcept true ;
+    :label "hasManner" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:object ;
+    :label "object" .
+
+:concept_or rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:or ;
+    :hasPhenomenaLink :phenomena_conjunction_or ;
+    :label "or" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sun ;
+    :label "sun" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_polarity a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+    :label "g" .
+
+:variable_m9 a ns11:manner,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "m9" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+    :label "p" ;
+    :name "Solar System" .
+
+:variable_p9 a ns11:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    :label "s2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_orbit_o2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_gravitation-bind-system_g a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_gravitation_g,
+        net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_gravitation_g ;
+    net:hasNaming "gravitation-bind-system" ;
+    net:hasRestriction net:restriction_bind-system_b ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_object-orbit-hasManner-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-direct-sun_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_object-orbit-hasManner-not-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-not-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-not-direct-sun_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_system-hasPart-object_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-object" ;
+    net:hasRestriction net:restriction_hasPart-object_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_system-hasPart-sun_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-sun" ;
+    net:hasRestriction net:restriction_hasPart-sun_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_sun_s2 ;
+    :role_op2 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "SSC-01-01" .
+
+net:phenomena_conjunction-OR_o3 a net:Phenomena_Net ;
+    :role_op1 net:atomProperty_direct_d ;
+    :role_op2 net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_or_o3 ;
+    net:coverNode :leaf_or_o3 ;
+    net:hasNaming "conjunction-OR" ;
+    net:hasPhenomenaRef "or" ;
+    net:hasPhenomenaType :phenomena_conjunction_or ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_bind-system_b a net:Restriction_Net ;
+    net:composeFrom net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_system_s ;
+    net:hasNaming "bind-system" ;
+    net:hasRestrictionNetValue net:atomClass_system_s ;
+    net:hasRestrictionOnProperty net:atomProperty_bind_b ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasManner-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-direct" ;
+    net:hasRestrictionNetValue net:atomProperty_direct_d,
+        net:atomProperty_direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasManner-not-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-not-direct" ;
+    net:hasRestrictionNetValue net:compositeProperty_not-direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasPart-object_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o ;
+    net:hasNaming "hasPart-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasPart-sun_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2 ;
+    net:hasNaming "hasPart-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_orbit-hasManner-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_orbit-hasManner-not-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-not-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#a> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d> a ns3:direct-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d2> a ns3:direct-02 ;
+    ns11:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#g> a ns11:gravitation ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o3> a ns2:or ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#p> a <http://amr.isi.edu/entity-types#planet>,
+        <http://amr.isi.edu/entity-types#system> ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#system> a ns2:NamedEntity ;
+    rdfs:label "system" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:bind-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:orbit-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:gravitation a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:manner a ns2:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:object a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:part a ns2:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sun a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:system a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:or a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:direct-02 ;
+    :label "direct-02" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#system>,
+        ns11:system ;
+    :label "system" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:individual_gravitation-SSC-01-01_g a net:Individual_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasIndividualLabel "any gravitation" ;
+    net:hasMotherClassNet net:compositeClass_gravitation-bind-system_g ;
+    net:hasNaming "gravitation-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasValueLabel "SolarSystem" .
+
+net:value_negative_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_negative ;
+    net:hasNaming "negative" ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasValueLabel "negative" .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o> a ns11:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s> a ns11:system ;
+    ns11:domain <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+    ns11:part <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s2> a ns11:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:direct-02 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_gravitation_g a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_gravitation_g ;
+    net:hasClassName "gravitation" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "gravitation" ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_o :leaf_object_o ;
+    :edge_a_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_or_o3 a :AMR_Leaf ;
+    :edge_o3_d :leaf_direct-02_d ;
+    :edge_o3_d2 :leaf_direct-02_d2 ;
+    :hasConcept :concept_or ;
+    :hasVariable :variable_o3 .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_direct_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_bind_b a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_gravitation_g ;
+    :role_ARG1 net:atomClass_system_s ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b ;
+    net:hasNaming "bind" ;
+    net:hasPropertyName "bind" ;
+    net:hasPropertyName01 "binding" ;
+    net:hasPropertyName10 "bind-by" ;
+    net:hasPropertyName12 "bind-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_gravitation_g,
+        :leaf_system_s .
+
+net:compositeProperty_orbit-hasManner-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-direct_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeProperty_orbit-hasManner-not-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-not-direct_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomProperty_hasManner_m9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_orbit_o2,
+        net:atomProperty_orbit_o2 ;
+    :role_ARG1 net:phenomena_conjunction-OR_o3 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner" ;
+    net:hasPropertyName "hasManner" ;
+    net:hasPropertyName01 "hasMannering" ;
+    net:hasPropertyName10 "hasManner-by" ;
+    net:hasPropertyName12 "hasManner-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_or_o3,
+        :leaf_orbit-01_o2 .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_sun_s2 .
+
+net:individual_object-SSC-01-01_o a net:Individual_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasIndividualLabel "any object" ;
+    net:hasMotherClassNet net:atomClass_object_o,
+        net:compositeClass_object-orbit-hasManner-direct-sun_o,
+        net:compositeClass_object-orbit-hasManner-not-direct-sun_o ;
+    net:hasNaming "object-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+net:individual_sun-SSC-01-01_s2 a net:Individual_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasIndividualLabel "any sun" ;
+    net:hasMotherClassNet net:atomClass_sun_s2 ;
+    net:hasNaming "sun-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_bind-01_b a :AMR_Leaf ;
+    :edge_b_g :leaf_gravitation_g ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_bind-01 ;
+    :hasVariable :variable_b .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_system_p a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasClassName "system" ;
+    net:hasNaming "system" ;
+    net:hasStructure "SSC-01-01" .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+net:compositeProperty_not-direct_d2 a net:Composite_Property_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:composeFrom net:atomProperty_direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_direct_d2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :value_negative .
+
+net:individual_SolarSystem_p a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s,
+        net:compositeClass_system-hasPart-object_s,
+        net:compositeClass_system-hasPart-sun_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "SSC-01-01" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_gravitation_g a :AMR_Leaf ;
+    :hasConcept :concept_gravitation ;
+    :hasVariable :variable_g .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_a :leaf_and_a ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_system_p a :AMR_Leaf ;
+    :edge_p_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_p .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_system_p ;
+    net:hasNaming "system" ;
+    net:hasStructure "SSC-01-01" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s ;
+    :role_ARG1 net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:phenomena_conjunction-AND_a ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_system_s .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasManner_m9 a :AMR_Leaf ;
+    :edge_m9_ARG0_o2 :leaf_orbit-01_o2 ;
+    :edge_m9_ARG1_o3 :leaf_or_o3 ;
+    :hasConcept :concept_manner ;
+    :hasVariable :variable_m9 ;
+    :isReifiedLeaf true .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "SSC-01-01" .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_p :leaf_system_p ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+net:atomClass_sun_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "SSC-01-01" .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_direct-02_d2 a :AMR_Leaf ;
+    :edge_d2_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d2 .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/dev_owl_rule_tests/test_data/entity-classifier-devGraph-1.result.ttl b/tests/dev_owl_rule_tests/test_data/entity-classifier-devGraph-1.result.ttl
index 40abbc892ea6133ec8c2c09514b1ebcd1da009b9..2f5964c6845e711a96182de72bcbf5adea28a111 100644
--- a/tests/dev_owl_rule_tests/test_data/entity-classifier-devGraph-1.result.ttl
+++ b/tests/dev_owl_rule_tests/test_data/entity-classifier-devGraph-1.result.ttl
@@ -1,4 +1,3 @@
-@base <https://amr.tetras-libre.fr/rdf/entity-classifier-devGraph-1/result> .
 @prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
 @prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
 @prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
diff --git a/tests/dev_owl_rule_tests/test_data/entity-classifier-devGraph-2.ttl b/tests/dev_owl_rule_tests/test_data/entity-classifier-devGraph-2.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..f4823d2a048487397949919f4fff5a53e1ad05fd
--- /dev/null
+++ b/tests/dev_owl_rule_tests/test_data/entity-classifier-devGraph-2.ttl
@@ -0,0 +1,1654 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:bind-01.ARG0 a ns3:FrameRole .
+
+ns3:bind-01.ARG1 a ns3:FrameRole .
+
+ns3:orbit-01.ARG0 a ns3:FrameRole .
+
+ns3:orbit-01.ARG1 a ns3:FrameRole .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_o a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_s2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d2_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_m9_ARG0_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m9_ARG1_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_d a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_o3_d2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_s_p a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_SSC-01-01 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#root01> ;
+    :hasRootLeaf :leaf_system_s ;
+    :hasSentenceID "SSC-01-01" ;
+    :hasSentenceStatement "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:axiom_disjointProperty_direct_not-direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_direct_not-direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:axiom_disjointProperty_not-direct_direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_not-direct_direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:relation_SolarSystem-hasPart-object-SSC-01-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_object-SSC-01-01_o ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-object-SSC-01-01" ;
+    net:hasObjectNet net:individual_object-SSC-01-01_o ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_SolarSystem-hasPart-sun-SSC-01-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_gravitation-SSC-01-01-bind-SolarSystem_g a net:Relation_Net ;
+    net:composeFrom net:atomProperty_bind_b,
+        net:individual_SolarSystem_p,
+        net:individual_gravitation-SSC-01-01_g ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_p,
+        :leaf_system_s ;
+    net:hasNaming "gravitation-SSC-01-01-bind-SolarSystem" ;
+    net:hasObjectNet net:individual_SolarSystem_p ;
+    net:hasPredicateNet net:atomProperty_bind_b ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_gravitation-SSC-01-01_g .
+
+net:relation_object-SSC-01-01-orbit-hasManner-direct-sun-SSC-01-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-direct_o2,
+        net:individual_object-SSC-01-01_o,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-SSC-01-01-orbit-hasManner-direct-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_object-SSC-01-01_o .
+
+net:relation_object-SSC-01-01-orbit-hasManner-not-direct-sun-SSC-01-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-not-direct_o2,
+        net:individual_object-SSC-01-01_o,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-SSC-01-01-orbit-hasManner-not-direct-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_object-SSC-01-01_o .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#b> a ns3:bind-01 ;
+    ns3:bind-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+    ns3:bind-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o2> a ns3:orbit-01 ;
+    ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:manner <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#root01> a ns2:AMR ;
+    ns2:has-id "SSC-01-01" ;
+    ns2:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
+    ns2:root <http://amr.isi.edu/amr_data/SSC-01-01#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns2:NamedEntity ;
+    rdfs:comment "bug" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_bind-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:bind-01 ;
+    :label "bind-01" .
+
+:concept_gravitation rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:gravitation ;
+    :label "gravitation" .
+
+:concept_manner rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:manner ;
+    :isReifiedConcept true ;
+    :label "hasManner" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:object ;
+    :label "object" .
+
+:concept_or rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:or ;
+    :hasPhenomenaLink :phenomena_conjunction_or ;
+    :label "or" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sun ;
+    :label "sun" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_polarity a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+    :label "g" .
+
+:variable_m9 a ns11:manner,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "m9" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+    :label "p" ;
+    :name "Solar System" .
+
+:variable_p9 a ns11:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    :label "s2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_orbit_o2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_gravitation-bind-system_g a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_gravitation_g,
+        net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_gravitation_g ;
+    net:hasNaming "gravitation-bind-system" ;
+    net:hasRestriction net:restriction_bind-system_b ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_object-orbit-hasManner-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-direct-sun_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_object-orbit-hasManner-not-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-not-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-not-direct-sun_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_system-hasPart-object_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-object" ;
+    net:hasRestriction net:restriction_hasPart-object_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_system-hasPart-sun_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-sun" ;
+    net:hasRestriction net:restriction_hasPart-sun_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_sun_s2 ;
+    :role_op2 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "SSC-01-01" .
+
+net:phenomena_conjunction-OR_o3 a net:Phenomena_Net ;
+    :role_op1 net:atomProperty_direct_d ;
+    :role_op2 net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_or_o3 ;
+    net:coverNode :leaf_or_o3 ;
+    net:hasNaming "conjunction-OR" ;
+    net:hasPhenomenaRef "or" ;
+    net:hasPhenomenaType :phenomena_conjunction_or ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_bind-system_b a net:Restriction_Net ;
+    net:composeFrom net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_system_s ;
+    net:hasNaming "bind-system" ;
+    net:hasRestrictionNetValue net:atomClass_system_s ;
+    net:hasRestrictionOnProperty net:atomProperty_bind_b ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasManner-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-direct" ;
+    net:hasRestrictionNetValue net:atomProperty_direct_d,
+        net:atomProperty_direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasManner-not-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-not-direct" ;
+    net:hasRestrictionNetValue net:compositeProperty_not-direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasPart-object_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o ;
+    net:hasNaming "hasPart-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasPart-sun_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2 ;
+    net:hasNaming "hasPart-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_orbit-hasManner-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_orbit-hasManner-not-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-not-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#a> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d> a ns3:direct-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d2> a ns3:direct-02 ;
+    ns11:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#g> a ns11:gravitation ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o3> a ns2:or ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#p> a <http://amr.isi.edu/entity-types#planet>,
+        <http://amr.isi.edu/entity-types#system> ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#system> a ns2:NamedEntity ;
+    rdfs:label "system" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:bind-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:orbit-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:gravitation a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:manner a ns2:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:object a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:part a ns2:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sun a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:system a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:or a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:direct-02 ;
+    :label "direct-02" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#system>,
+        ns11:system ;
+    :label "system" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:individual_gravitation-SSC-01-01_g a net:Individual_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasIndividualLabel "any gravitation" ;
+    net:hasMotherClassNet net:compositeClass_gravitation-bind-system_g ;
+    net:hasNaming "gravitation-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasValueLabel "SolarSystem" .
+
+net:value_negative_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_negative ;
+    net:hasNaming "negative" ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasValueLabel "negative" .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o> a ns11:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s> a ns11:system ;
+    ns11:domain <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+    ns11:part <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s2> a ns11:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:direct-02 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_gravitation_g a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_gravitation_g ;
+    net:hasClassName "gravitation" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "gravitation" ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_o :leaf_object_o ;
+    :edge_a_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_or_o3 a :AMR_Leaf ;
+    :edge_o3_d :leaf_direct-02_d ;
+    :edge_o3_d2 :leaf_direct-02_d2 ;
+    :hasConcept :concept_or ;
+    :hasVariable :variable_o3 .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_direct_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_bind_b a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_gravitation_g ;
+    :role_ARG1 net:atomClass_system_s ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b ;
+    net:hasNaming "bind" ;
+    net:hasPropertyName "bind" ;
+    net:hasPropertyName01 "binding" ;
+    net:hasPropertyName10 "bind-by" ;
+    net:hasPropertyName12 "bind-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_gravitation_g,
+        :leaf_system_s .
+
+net:compositeProperty_orbit-hasManner-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-direct_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeProperty_orbit-hasManner-not-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-not-direct_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomProperty_hasManner_m9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_orbit_o2,
+        net:atomProperty_orbit_o2 ;
+    :role_ARG1 net:phenomena_conjunction-OR_o3 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner" ;
+    net:hasPropertyName "hasManner" ;
+    net:hasPropertyName01 "hasMannering" ;
+    net:hasPropertyName10 "hasManner-by" ;
+    net:hasPropertyName12 "hasManner-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_or_o3,
+        :leaf_orbit-01_o2 .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_sun_s2 .
+
+net:individual_object-SSC-01-01_o a net:Individual_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasIndividualLabel "any object" ;
+    net:hasMotherClassNet net:atomClass_object_o,
+        net:compositeClass_object-orbit-hasManner-direct-sun_o,
+        net:compositeClass_object-orbit-hasManner-not-direct-sun_o ;
+    net:hasNaming "object-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+net:individual_sun-SSC-01-01_s2 a net:Individual_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasIndividualLabel "any sun" ;
+    net:hasMotherClassNet net:atomClass_sun_s2 ;
+    net:hasNaming "sun-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_bind-01_b a :AMR_Leaf ;
+    :edge_b_g :leaf_gravitation_g ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_bind-01 ;
+    :hasVariable :variable_b .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_system_p a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasClassName "system" ;
+    net:hasNaming "system" ;
+    net:hasStructure "SSC-01-01" .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+net:compositeProperty_not-direct_d2 a net:Composite_Property_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:composeFrom net:atomProperty_direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_direct_d2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :value_negative .
+
+net:individual_SolarSystem_p a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s,
+        net:compositeClass_system-hasPart-object_s,
+        net:compositeClass_system-hasPart-sun_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "SSC-01-01" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_gravitation_g a :AMR_Leaf ;
+    :hasConcept :concept_gravitation ;
+    :hasVariable :variable_g .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_a :leaf_and_a ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_system_p a :AMR_Leaf ;
+    :edge_p_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_p .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_system_p ;
+    net:hasNaming "system" ;
+    net:hasStructure "SSC-01-01" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s ;
+    :role_ARG1 net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:phenomena_conjunction-AND_a ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_system_s .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasManner_m9 a :AMR_Leaf ;
+    :edge_m9_ARG0_o2 :leaf_orbit-01_o2 ;
+    :edge_m9_ARG1_o3 :leaf_or_o3 ;
+    :hasConcept :concept_manner ;
+    :hasVariable :variable_m9 ;
+    :isReifiedLeaf true .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "SSC-01-01" .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_p :leaf_system_p ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+net:atomClass_sun_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "SSC-01-01" .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_direct-02_d2 a :AMR_Leaf ;
+    :edge_d2_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d2 .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/dev_owl_rule_tests/test_rule_classifier_entity.py b/tests/dev_owl_rule_tests/test_rule_classifier_entity.py
index 18e5f9b6cda35c255c3da18234172966abce59b4..70b2942821ed598774729282077c536be7206a1c 100644
--- a/tests/dev_owl_rule_tests/test_rule_classifier_entity.py
+++ b/tests/dev_owl_rule_tests/test_rule_classifier_entity.py
@@ -17,6 +17,7 @@ INPUT_DIR_PATH = f'{FILE_PATH}/test_data/'
 OUTPUT_DIR_PATH = f'{FILE_PATH}/test_data/'
 
 TEST_FILE_NAME_1 = 'entity-classifier-devGraph-1'
+TEST_FILE_NAME_2 = 'entity-classifier-devGraph-2'
 
 from context import tenet
 from tenet.scheme.amr_master_rule.transduction.classifier import entity_classifier_1 as rule_1
@@ -146,7 +147,7 @@ if __name__ == '__main__':
       
     print('\n *** Test Preparation ***')
     graph_1 = load_test_graph(TEST_FILE_NAME_1)
-    # graph_2 = load_test_graph(TEST_FILE_NAME_2)
+    graph_2 = load_test_graph(TEST_FILE_NAME_2)
     print('\n \n')
     
     
@@ -156,6 +157,7 @@ if __name__ == '__main__':
     
     print('\n -- Step 1: Search Pattern')
     pattern_set = test_search_pattern_1(graph_1)    
+    pattern_set = test_search_pattern_2(graph_2)    
     print('\n \n')
     
     print('\n *** Unit Test ***')
diff --git a/tests/dev_owl_rule_tests/test_rule_owl_generator_class.py b/tests/dev_owl_rule_tests/test_rule_owl_generator_class.py
index 3294b7ac09b79b79503eacb1799aeb1ad8a88618..efa756eb3a7f7fba08379c84b8598fae4fb7bba7 100644
--- a/tests/dev_owl_rule_tests/test_rule_owl_generator_class.py
+++ b/tests/dev_owl_rule_tests/test_rule_owl_generator_class.py
@@ -18,6 +18,7 @@ OUTPUT_DIR_PATH = f'{FILE_PATH}/test_data/'
 
 TEST_FILE_NAME_1 = 'devGraph-classes-to-generate-1'
 TEST_FILE_NAME_2 = 'devGraph-classes-to-generate-2'
+TEST_FILE_NAME_3 = 'devGraph-classes-to-generate-3'
 
 from context import tenet
 from tenet.transduction import rdfterm_computer, prefix_handle
@@ -182,6 +183,7 @@ if __name__ == '__main__':
     print('\n *** Test Preparation ***')
     graph_1 = load_test_graph(TEST_FILE_NAME_1)
     graph_2 = load_test_graph(TEST_FILE_NAME_2)
+    graph_3 = load_test_graph(TEST_FILE_NAME_3)
     print('\n \n')
     
     print('\n ///////////////////// Generator Rule 1')
@@ -234,7 +236,7 @@ if __name__ == '__main__':
     print('\n \n')
     
     print('\n *** Unit Test ***')
-    test_rule_application(TEST_FILE_NAME_2, graph_2, amr_rule.generate_owl_class)
+    test_rule_application(TEST_FILE_NAME_3, graph_3, amr_rule.generate_owl_class)
     print('\n \n')
     
 
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/SolarSystemDev01_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/SolarSystemDev01_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..9d7ccf2354201669b39a1a11565d437c5f288b2e
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/SolarSystemDev01_factoid.ttl
@@ -0,0 +1,126 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix ns2: <https://tenet.tetras-libre.fr/extract-result#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+ns2:direct a owl:ObjectProperty ;
+    rdfs:label "direct" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:gravitation-SSC-01-01 a owl:Individual,
+        ns2:gravitation-bind-system ;
+    rdfs:label "any gravitation" ;
+    ns1:fromStructure "SSC-01-01" ;
+    ns2:bind ns2:SolarSystem .
+
+ns2:hasManner a owl:ObjectProperty ;
+    rdfs:label "hasManner" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:not-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:SolarSystem a owl:Individual,
+        ns2:system,
+        ns2:system-hasPart-object,
+        ns2:system-hasPart-sun ;
+    rdfs:label "SolarSystem" ;
+    ns1:fromStructure "SSC-01-01" ;
+    ns2:hasPart ns2:object-SSC-01-01,
+        ns2:sun-SSC-01-01 .
+
+ns2:bind a owl:ObjectProperty ;
+    rdfs:label "bind" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:gravitation a owl:Class ;
+    rdfs:label "gravitation" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:gravitation-bind-system a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:bind ;
+            owl:someValuesFrom ns2:system ],
+        ns2:gravitation ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:object-SSC-01-01 a owl:Individual,
+        ns2:object,
+        ns2:object-orbit-hasManner-direct-sun,
+        ns2:object-orbit-hasManner-not-direct-sun ;
+    rdfs:label "any object" ;
+    ns1:fromStructure "SSC-01-01" ;
+    ns2:orbit-hasManner-direct ns2:sun-SSC-01-01 ;
+    ns2:orbit-hasManner-not-direct ns2:sun-SSC-01-01 .
+
+ns2:object-orbit-hasManner-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:orbit-hasManner-direct ;
+            owl:someValuesFrom ns2:sun ],
+        ns2:object ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:object-orbit-hasManner-not-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:orbit-hasManner-not-direct ;
+            owl:someValuesFrom ns2:sun ],
+        ns2:object ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:orbit-hasManner-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns2:orbit ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:orbit-hasManner-not-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns2:orbit ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:system-hasPart-object a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:hasPart ;
+            owl:someValuesFrom ns2:object ],
+        ns2:system ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:system-hasPart-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:hasPart ;
+            owl:someValuesFrom ns2:sun ],
+        ns2:system ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:hasPart a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:orbit a owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:sun-SSC-01-01 a owl:Individual,
+        ns2:sun ;
+    rdfs:label "any sun" ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:object a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:sun a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:system a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "SSC-01-01" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.log b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.log
new file mode 100644
index 0000000000000000000000000000000000000000..ee4d1f002c06e49c9f17c8b8b0903e2fcc6094b3
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.log
@@ -0,0 +1,171 @@
+- INFO - [TENET] Extraction Processing
+- INFO - 
+ === Process Initialization === 
+- INFO - -- Process Setting 
+- INFO - ----- Corpus source: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-01/ (amr)
+- INFO - ----- Base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev01-20230911
+- INFO - ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/
+- INFO - ----- Ontology target (id): https://tenet.tetras-libre.fr/demo/01/
+- INFO - ----- Current path: /home/lamenji/Workspace/Tetras/tenet/tenet
+- DEBUG - ----- Config file: /home/lamenji/Workspace/Tetras/tenet/tenet/owl_amr_config.xml
+- DEBUG - 
+  ***  Config (Full Parameters) *** 
+  -- Base Parameters
+  ----- config file: /home/lamenji/Workspace/Tetras/tenet/tenet/owl_amr_config.xml
+  ----- uuid: https://tenet.tetras-libre.fr/demo/01/
+  ----- technical base name: tenet.tetras-libre.fr_demo_01
+  ----- source corpus: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-01/
+  ----- target reference: base
+  ----- process level: sentence
+  ----- source type: amr
+  ----- extraction scheme: owl_amr_scheme_1
+  -- Directories
+  ----- base directory: ./
+  ----- structure directory: ./structure/
+  ----- CTS directory: ./scheme/
+  ----- target frame directory: ./../input/targetFrameStructure/
+  ----- input document directory: 
+  ----- base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev01-20230911
+  ----- output directory: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/tenet.tetras-libre.fr_demo_01-20230911/
+  ----- sentence output directory: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/
+  ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/
+  -- Config File Definition
+  ----- schema file: ./structure/amr-rdf-schema.ttl
+  ----- semantic net file: ./structure/owl-snet-schema.ttl
+  ----- config param file: ./structure/config-parameters.ttl
+  ----- base ontology file: ./structure/base-ontology.ttl
+  ----- CTS file: ./scheme/owl_amr_scheme_1.py
+  -- Useful References for Ontology
+  ----- base URI: https://tenet.tetras-libre.fr/working
+  ----- ontology suffix: -ontology.ttl
+  ----- ontology seed suffix: -ontology-seed.ttl
+  -- Source File Definition
+  ----- source sentence file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-01/**/*.ttl
+  -- Target File Definition
+  ----- frame ontology file: ./../input/targetFrameStructure/base-ontology.ttl
+  ----- frame ontology seed file: ./../input/targetFrameStructure/base-ontology-seed.ttl
+  -- Output
+  ----- ontology namespace: https://tenet.tetras-libre.fr/base-ontology/
+  ----- output file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01.ttl
+  *** - *** 
+- DEBUG - -- Counting number of graph files (sentences) 
+- INFO - ----- Number of Graphs: 1
+- INFO - 
+ === Extraction Processing === 
+- INFO - Single-Processing Run 
+- INFO - 
+ [P-1]     *** extraction from sentence 1 *** 
+- INFO -  [P-1] -- Work Structure Preparation
+- DEBUG -  [P-1] --- Graph Initialization
+- DEBUG -  [P-1] ----- Configuration Loading
+- DEBUG -  [P-1] -------- RDF Schema (320)
+- DEBUG -  [P-1] -------- Semantic Net Definition (488)
+- DEBUG -  [P-1] -------- Config Parameter Definition (522)
+- DEBUG -  [P-1] ----- Frame Ontology Loading
+- DEBUG -  [P-1] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-1] --- Source Data Import
+- DEBUG -  [P-1] ----- Sentence Loading
+- DEBUG -  [P-1] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/dev/solar-system-01/SSC-01-01.stog.amr.ttl (600)
+- DEBUG -  [P-1] --- Export work graph as turtle
+- DEBUG -  [P-1] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01.ttl 
+- INFO -  [P-1] ----- Sentence (id): SSC-01-01
+- INFO -  [P-1] ----- Sentence (text): The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly.
+- INFO -  [P-1] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-1] ----- Step number: 3
+- INFO -  [P-1] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-1] ----- Total rule number: 0
+- INFO -  [P-1] -- Step 1: Preprocessing
+- INFO -  [P-1] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- INFO -  [P-1] ----- fix AMR bug (1): 5/5 new triples (605, 0:00:00.016651)
+- INFO -  [P-1] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-1] ----- reclassify AMR-LD concept (1): 10/10 new triples (615, 0:00:00.088058)
+- DEBUG -  [P-1] ----- reclassify AMR-LD concept (2): 0/0 new triple (615, 0:00:00.050809)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (3): 12/12 new triples (627, 0:00:00.028966)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (4): 16/16 new triples (643, 0:00:00.051800)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (5): 2/4 new triples (645, 0:00:00.031016)
+- INFO -  [P-1] ----- reify roles as concept: 10/10 new triples (655, 0:00:00.038658)
+- INFO -  [P-1] ----- reclassify existing variable: 45/45 new triples (700, 0:00:00.071070)
+- INFO -  [P-1] ----- add new variable for reified concept: 8/8 new triples (708, 0:00:00.060560)
+- INFO -  [P-1] ----- add AMR leaf for reclassified concept: 33/33 new triples (741, 0:00:00.022385)
+- INFO -  [P-1] ----- add AMR leaf for reified concept: 8/8 new triples (749, 0:00:00.012266)
+- INFO -  [P-1] ----- add AMR edge for core relation: 27/27 new triples (776, 0:00:00.096893)
+- INFO -  [P-1] ----- add AMR edge for reified concept: 12/12 new triples (788, 0:00:00.062170)
+- INFO -  [P-1] ----- add AMR edge for name relation: 5/5 new triples (793, 0:00:00.021788)
+- DEBUG -  [P-1] ----- add AMR edge for quant relation: 0/0 new triple (793, 0:00:00.020574)
+- INFO -  [P-1] ----- add AMR edge for polarity relation: 5/5 new triples (798, 0:00:00.028750)
+- INFO -  [P-1] ----- update AMR edge role 1: 15/15 new triples (813, 0:00:00.072798)
+- INFO -  [P-1] ----- add AMR root: 5/5 new triples (818, 0:00:00.009705)
+- DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_01_Preprocessing 
+- DEBUG -  [P-1] ----- step: Preprocessing
+- DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/01/
+- DEBUG -  [P-1] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_Preprocessing.ttl
+- DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/01//Preprocessing
+- INFO -  [P-1] ----- 218 triples extracted during Preprocessing step
+- INFO -  [P-1] -- Step 2: Transduction
+- INFO -  [P-1] --- Sequence: atomic extraction sequence
+- INFO -  [P-1] ----- extract atom classes: 30/30 new triples (848, 0:00:00.157451)
+- INFO -  [P-1] ----- extract atom individuals: 8/8 new triples (856, 0:00:00.045260)
+- INFO -  [P-1] ----- extract atomic properties: 75/75 new triples (931, 0:00:00.240807)
+- INFO -  [P-1] ----- extract atom values: 10/10 new triples (941, 0:00:00.055005)
+- INFO -  [P-1] ----- extract atom phenomena: 14/14 new triples (955, 0:00:00.066652)
+- INFO -  [P-1] ----- propagate atom relations: 24/68 new triples (979, 0:00:01.011709)
+- INFO -  [P-1] --- Sequence: classification sequence (1)
+- DEBUG -  [P-1] ----- classify modality phenomena: 0/0 new triple (979, 0:00:00.040453)
+- INFO -  [P-1] ----- reclassify argument property to class: 11/14 new triples (990, 0:00:00.086995)
+- INFO -  [P-1] --- Sequence: phenomena analyze sequence (1)
+- INFO -  [P-1] ----- analyze "polarity" phenomena (1): 32/36 new triples (1022, 0:00:00.101186)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (2): 0/0 new triple (1022, 0:00:00.017516)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (3): 0/0 new triple (1022, 0:00:00.017212)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (4): 0/0 new triple (1022, 0:00:00.042949)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (5): 0/0 new triple (1022, 0:00:00.052423)
+- DEBUG -  [P-1] ----- analyze modifier phenomena (mod): 0/0 new triple (1022, 0:00:00.009406)
+- DEBUG -  [P-1] ----- classify modality phenomena: 0/0 new triple (1022, 0:00:00.020954)
+- INFO -  [P-1] --- Sequence: phenomena analyze sequence (2)
+- INFO -  [P-1] ----- analyze "or" phenomena (1): 1/1 new triple (1023, 0:00:00.079492)
+- INFO -  [P-1] ----- analyze "or" phenomena (2): 55/82 new triples (1078, 0:00:00.267365)
+- INFO -  [P-1] ----- analyze "and" phenomena (1): 2/14 new triples (1080, 0:00:00.214602)
+- DEBUG -  [P-1] ----- analyze "and" phenomena (2): 0/0 new triple (1080, 0:00:00.012602)
+- INFO -  [P-1] --- Sequence: composite class extraction sequence
+- INFO -  [P-1] ----- extract composite classes (1): 127/138 new triples (1207, 0:00:00.508525)
+- DEBUG -  [P-1] ----- extract composite classes (2): 0/0 new triple (1207, 0:00:00.030480)
+- INFO -  [P-1] --- Sequence: classification sequence (2)
+- INFO -  [P-1] ----- classify class net as entity from core arguments: 10/181 new triples (1217, 0:00:00.254828)
+- DEBUG -  [P-1] ----- classify class net as entity from :part relation: 0/0 new triple (1217, 0:00:00.009716)
+- DEBUG -  [P-1] ----- classify class net as entity from degree arguments: 0/0 new triple (1217, 0:00:00.020562)
+- INFO -  [P-1] ----- Associate mother to class net from :domain relation: 7/78 new triples (1224, 0:00:00.146401)
+- DEBUG -  [P-1] ----- Propagate individuals to net with same base node: 0/20 new triple (1224, 0:00:00.042257)
+- INFO -  [P-1] ----- Propagate individuals to net with domain link: 3/60 new triples (1227, 0:00:00.113569)
+- INFO -  [P-1] --- Sequence: heuristic deduction sequence
+- INFO -  [P-1] ----- deduce individual and relation from restriction (recursively): 96/72 new triples (1323, 0:00:01.124770)
+- DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_01_Transduction 
+- DEBUG -  [P-1] ----- step: Transduction
+- DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/01/
+- DEBUG -  [P-1] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_Transduction.ttl
+- DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/01//Transduction
+- INFO -  [P-1] ----- 505 triples extracted during Transduction step
+- INFO -  [P-1] -- Step 3: Generation
+- INFO -  [P-1] --- Sequence: OWL Generation Sequence
+- INFO -  [P-1] ----- generate OWL class: 51/55 new triples (1374, 0:00:00.555340)
+- INFO -  [P-1] ----- generate OWL property: 29/29 new triples (1403, 0:00:00.320895)
+- INFO -  [P-1] ----- generate OWL individual: 20/21 new triples (1423, 0:00:00.232342)
+- INFO -  [P-1] ----- generate OWL relation (property): 5/5 new triples (1428, 0:00:00.220619)
+- DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_01_Generation 
+- DEBUG -  [P-1] ----- step: Generation
+- DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/01/
+- DEBUG -  [P-1] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_Generation.ttl
+- DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/01//Generation
+- INFO -  [P-1] ----- 105 triples extracted during Generation step
+- DEBUG -  [P-1] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_factoid.ttl)
+- DEBUG -  [P-1] ----- Number of factoids: 110
+- DEBUG -  [P-1] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/01//factoid
+- INFO -  [P-1] Success (110 extracted triple(s))
+- INFO - 
+ === Final Ontology Generation  === 
+- INFO - -- Making complete factoid graph by merging the result factoids
+- INFO - ----- Total factoid number: 110
+- INFO - -- Serializing graph to factoid string
+- INFO - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/01//factoid
+- INFO - -- Serializing graph to factoid file
+- INFO - ----- Ontology Turtle File: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/SolarSystemDev01_factoid.ttl
+- INFO - 
+ === Done === 
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01.ttl b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..38bc1a5cff0109838777d9951dbd81bfc03dca01
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01.ttl
@@ -0,0 +1,835 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#b> a ns3:bind-01 ;
+    ns3:bind-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+    ns3:bind-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s> .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o2> a ns3:orbit-01 ;
+    ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:manner <http://amr.isi.edu/amr_data/SSC-01-01#o3> .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#root01> a ns2:AMR ;
+    ns2:has-id "SSC-01-01" ;
+    ns2:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
+    ns2:root <http://amr.isi.edu/amr_data/SSC-01-01#s> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:bind-01.ARG0 a ns3:FrameRole .
+
+ns3:bind-01.ARG1 a ns3:FrameRole .
+
+ns3:orbit-01.ARG0 a ns3:FrameRole .
+
+ns3:orbit-01.ARG1 a ns3:FrameRole .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:manner a ns2:Role .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns11:part a ns2:Role .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#a> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#o> .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d> a ns3:direct-02 .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d2> a ns3:direct-02 ;
+    ns11:polarity "-" .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#g> a ns11:gravitation .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o3> a ns2:or ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#d2> .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Solar System" .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns2:NamedEntity .
+
+ns3:bind-01 a ns2:Frame .
+
+ns3:orbit-01 a ns2:Frame .
+
+ns11:gravitation a ns2:Concept .
+
+ns11:object a ns2:Concept .
+
+ns11:sun a ns2:Concept .
+
+ns11:system a ns2:Concept .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept .
+
+ns2:or a ns2:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o> a ns11:object .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s> a ns11:system ;
+    ns11:domain <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+    ns11:part <http://amr.isi.edu/amr_data/SSC-01-01#a> .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s2> a ns11:sun .
+
+ns3:direct-02 a ns2:Frame .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..fd84b46e2bdec5a44accbf9eaa769e3d8fc5b0a2
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_Generation.ttl
@@ -0,0 +1,1778 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <https://tenet.tetras-libre.fr/extract-result#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:bind-01.ARG0 a ns3:FrameRole .
+
+ns3:bind-01.ARG1 a ns3:FrameRole .
+
+ns3:orbit-01.ARG0 a ns3:FrameRole .
+
+ns3:orbit-01.ARG1 a ns3:FrameRole .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_o a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_s2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d2_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_m9_ARG0_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m9_ARG1_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_d a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_o3_d2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_s_p a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_SSC-01-01 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#root01> ;
+    :hasRootLeaf :leaf_system_s ;
+    :hasSentenceID "SSC-01-01" ;
+    :hasSentenceStatement "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+ns1:direct a owl:ObjectProperty ;
+    rdfs:label "direct" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "SSC-01-01" .
+
+ns1:gravitation-SSC-01-01 a owl:Individual,
+        ns1:gravitation-bind-system ;
+    rdfs:label "any gravitation" ;
+    sys:fromStructure "SSC-01-01" ;
+    ns1:bind ns1:SolarSystem .
+
+ns1:hasManner a owl:ObjectProperty ;
+    rdfs:label "hasManner" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "SSC-01-01" .
+
+ns1:not-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "SSC-01-01" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:axiom_disjointProperty_direct_not-direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_direct_not-direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:axiom_disjointProperty_not-direct_direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_not-direct_direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:relation_SolarSystem-hasPart-object-SSC-01-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_object-SSC-01-01_o ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-object-SSC-01-01" ;
+    net:hasObjectNet net:individual_object-SSC-01-01_o ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_SolarSystem-hasPart-sun-SSC-01-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_gravitation-SSC-01-01-bind-SolarSystem_g a net:Relation_Net ;
+    net:composeFrom net:atomProperty_bind_b,
+        net:individual_SolarSystem_p,
+        net:individual_gravitation-SSC-01-01_g ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_p,
+        :leaf_system_s ;
+    net:hasNaming "gravitation-SSC-01-01-bind-SolarSystem" ;
+    net:hasObjectNet net:individual_SolarSystem_p ;
+    net:hasPredicateNet net:atomProperty_bind_b ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_gravitation-SSC-01-01_g .
+
+net:relation_object-SSC-01-01-orbit-hasManner-direct-sun-SSC-01-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-direct_o2,
+        net:individual_object-SSC-01-01_o,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-SSC-01-01-orbit-hasManner-direct-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_object-SSC-01-01_o .
+
+net:relation_object-SSC-01-01-orbit-hasManner-not-direct-sun-SSC-01-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-not-direct_o2,
+        net:individual_object-SSC-01-01_o,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-SSC-01-01-orbit-hasManner-not-direct-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_object-SSC-01-01_o .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#b> a ns3:bind-01 ;
+    ns3:bind-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+    ns3:bind-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o2> a ns3:orbit-01 ;
+    ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:manner <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#root01> a ns2:AMR ;
+    ns2:has-id "SSC-01-01" ;
+    ns2:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
+    ns2:root <http://amr.isi.edu/amr_data/SSC-01-01#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns2:NamedEntity ;
+    rdfs:comment "bug" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_bind-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:bind-01 ;
+    :label "bind-01" .
+
+:concept_gravitation rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:gravitation ;
+    :label "gravitation" .
+
+:concept_manner rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:manner ;
+    :isReifiedConcept true ;
+    :label "hasManner" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:object ;
+    :label "object" .
+
+:concept_or rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:or ;
+    :hasPhenomenaLink :phenomena_conjunction_or ;
+    :label "or" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sun ;
+    :label "sun" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_polarity a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+    :label "g" .
+
+:variable_m9 a ns11:manner,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "m9" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+    :label "p" ;
+    :name "Solar System" .
+
+:variable_p9 a ns11:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    :label "s2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+ns1:SolarSystem a owl:Individual,
+        ns1:system,
+        ns1:system-hasPart-object,
+        ns1:system-hasPart-sun ;
+    rdfs:label "SolarSystem" ;
+    sys:fromStructure "SSC-01-01" ;
+    ns1:hasPart ns1:object-SSC-01-01,
+        ns1:sun-SSC-01-01 .
+
+ns1:bind a owl:ObjectProperty ;
+    rdfs:label "bind" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "SSC-01-01" .
+
+ns1:gravitation a owl:Class ;
+    rdfs:label "gravitation" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "SSC-01-01" .
+
+ns1:gravitation-bind-system a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:bind ;
+            owl:someValuesFrom ns1:system ],
+        ns1:gravitation ;
+    sys:fromStructure "SSC-01-01" .
+
+ns1:object-SSC-01-01 a owl:Individual,
+        ns1:object,
+        ns1:object-orbit-hasManner-direct-sun,
+        ns1:object-orbit-hasManner-not-direct-sun ;
+    rdfs:label "any object" ;
+    sys:fromStructure "SSC-01-01" ;
+    ns1:orbit-hasManner-direct ns1:sun-SSC-01-01 ;
+    ns1:orbit-hasManner-not-direct ns1:sun-SSC-01-01 .
+
+ns1:object-orbit-hasManner-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:orbit-hasManner-direct ;
+            owl:someValuesFrom ns1:sun ],
+        ns1:object ;
+    sys:fromStructure "SSC-01-01" .
+
+ns1:object-orbit-hasManner-not-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:orbit-hasManner-not-direct ;
+            owl:someValuesFrom ns1:sun ],
+        ns1:object ;
+    sys:fromStructure "SSC-01-01" .
+
+ns1:orbit-hasManner-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns1:orbit ;
+    sys:fromStructure "SSC-01-01" .
+
+ns1:orbit-hasManner-not-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns1:orbit ;
+    sys:fromStructure "SSC-01-01" .
+
+ns1:system-hasPart-object a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:hasPart ;
+            owl:someValuesFrom ns1:object ],
+        ns1:system ;
+    sys:fromStructure "SSC-01-01" .
+
+ns1:system-hasPart-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:hasPart ;
+            owl:someValuesFrom ns1:sun ],
+        ns1:system ;
+    sys:fromStructure "SSC-01-01" .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_orbit_o2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_gravitation-bind-system_g a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_gravitation_g,
+        net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_gravitation_g ;
+    net:hasNaming "gravitation-bind-system" ;
+    net:hasRestriction net:restriction_bind-system_b ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_object-orbit-hasManner-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-direct-sun_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_object-orbit-hasManner-not-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-not-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-not-direct-sun_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_system-hasPart-object_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-object" ;
+    net:hasRestriction net:restriction_hasPart-object_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_system-hasPart-sun_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-sun" ;
+    net:hasRestriction net:restriction_hasPart-sun_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_sun_s2 ;
+    :role_op2 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "SSC-01-01" .
+
+net:phenomena_conjunction-OR_o3 a net:Phenomena_Net ;
+    :role_op1 net:atomProperty_direct_d ;
+    :role_op2 net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_or_o3 ;
+    net:coverNode :leaf_or_o3 ;
+    net:hasNaming "conjunction-OR" ;
+    net:hasPhenomenaRef "or" ;
+    net:hasPhenomenaType :phenomena_conjunction_or ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_bind-system_b a net:Restriction_Net ;
+    net:composeFrom net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_system_s ;
+    net:hasNaming "bind-system" ;
+    net:hasRestrictionNetValue net:atomClass_system_s ;
+    net:hasRestrictionOnProperty net:atomProperty_bind_b ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasManner-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-direct" ;
+    net:hasRestrictionNetValue net:atomProperty_direct_d,
+        net:atomProperty_direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasManner-not-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-not-direct" ;
+    net:hasRestrictionNetValue net:compositeProperty_not-direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasPart-object_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o ;
+    net:hasNaming "hasPart-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasPart-sun_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2 ;
+    net:hasNaming "hasPart-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_orbit-hasManner-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_orbit-hasManner-not-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-not-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#a> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d> a ns3:direct-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d2> a ns3:direct-02 ;
+    ns11:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#g> a ns11:gravitation ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o3> a ns2:or ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#p> a <http://amr.isi.edu/entity-types#planet>,
+        <http://amr.isi.edu/entity-types#system> ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#system> a ns2:NamedEntity ;
+    rdfs:label "system" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:bind-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:orbit-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:gravitation a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:manner a ns2:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:object a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:part a ns2:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sun a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:system a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:or a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:direct-02 ;
+    :label "direct-02" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#system>,
+        ns11:system ;
+    :label "system" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+ns1:hasPart a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "SSC-01-01" .
+
+ns1:orbit a owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "SSC-01-01" .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:individual_gravitation-SSC-01-01_g a net:Individual_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasIndividualLabel "any gravitation" ;
+    net:hasMotherClassNet net:compositeClass_gravitation-bind-system_g ;
+    net:hasNaming "gravitation-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasValueLabel "SolarSystem" .
+
+net:value_negative_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_negative ;
+    net:hasNaming "negative" ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasValueLabel "negative" .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o> a ns11:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s> a ns11:system ;
+    ns11:domain <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+    ns11:part <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s2> a ns11:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:direct-02 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+ns1:sun-SSC-01-01 a owl:Individual,
+        ns1:sun ;
+    rdfs:label "any sun" ;
+    sys:fromStructure "SSC-01-01" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_gravitation_g a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_gravitation_g ;
+    net:hasClassName "gravitation" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "gravitation" ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_o :leaf_object_o ;
+    :edge_a_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_or_o3 a :AMR_Leaf ;
+    :edge_o3_d :leaf_direct-02_d ;
+    :edge_o3_d2 :leaf_direct-02_d2 ;
+    :hasConcept :concept_or ;
+    :hasVariable :variable_o3 .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+ns1:object a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "SSC-01-01" .
+
+ns1:sun a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "SSC-01-01" .
+
+ns1:system a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "SSC-01-01" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_direct_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_bind_b a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_gravitation_g ;
+    :role_ARG1 net:atomClass_system_s ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b ;
+    net:hasNaming "bind" ;
+    net:hasPropertyName "bind" ;
+    net:hasPropertyName01 "binding" ;
+    net:hasPropertyName10 "bind-by" ;
+    net:hasPropertyName12 "bind-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_gravitation_g,
+        :leaf_system_s .
+
+net:compositeProperty_orbit-hasManner-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-direct_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeProperty_orbit-hasManner-not-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-not-direct_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomProperty_hasManner_m9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_orbit_o2,
+        net:atomProperty_orbit_o2 ;
+    :role_ARG1 net:phenomena_conjunction-OR_o3 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner" ;
+    net:hasPropertyName "hasManner" ;
+    net:hasPropertyName01 "hasMannering" ;
+    net:hasPropertyName10 "hasManner-by" ;
+    net:hasPropertyName12 "hasManner-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_or_o3,
+        :leaf_orbit-01_o2 .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_sun_s2 .
+
+net:individual_object-SSC-01-01_o a net:Individual_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasIndividualLabel "any object" ;
+    net:hasMotherClassNet net:atomClass_object_o,
+        net:compositeClass_object-orbit-hasManner-direct-sun_o,
+        net:compositeClass_object-orbit-hasManner-not-direct-sun_o ;
+    net:hasNaming "object-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+net:individual_sun-SSC-01-01_s2 a net:Individual_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasIndividualLabel "any sun" ;
+    net:hasMotherClassNet net:atomClass_sun_s2 ;
+    net:hasNaming "sun-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_bind-01_b a :AMR_Leaf ;
+    :edge_b_g :leaf_gravitation_g ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_bind-01 ;
+    :hasVariable :variable_b .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_system_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "SSC-01-01" .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:compositeProperty_not-direct_d2 a net:Composite_Property_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:composeFrom net:atomProperty_direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:atomProperty_direct_d2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :value_negative .
+
+net:individual_SolarSystem_p a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s,
+        net:compositeClass_system-hasPart-object_s,
+        net:compositeClass_system-hasPart-sun_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "SSC-01-01" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_gravitation_g a :AMR_Leaf ;
+    :hasConcept :concept_gravitation ;
+    :hasVariable :variable_g .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_a :leaf_and_a ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_system_p a :AMR_Leaf ;
+    :edge_p_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_p .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_system_p ;
+    net:hasNaming "system" ;
+    net:hasStructure "SSC-01-01" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s ;
+    :role_ARG1 net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:phenomena_conjunction-AND_a ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_system_s .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasManner_m9 a :AMR_Leaf ;
+    :edge_m9_ARG0_o2 :leaf_orbit-01_o2 ;
+    :edge_m9_ARG1_o3 :leaf_or_o3 ;
+    :hasConcept :concept_manner ;
+    :hasVariable :variable_m9 ;
+    :isReifiedLeaf true .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "SSC-01-01" .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_p :leaf_system_p ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+net:atomClass_sun_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "SSC-01-01" .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_direct-02_d2 a :AMR_Leaf ;
+    :edge_d2_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d2 .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..27f178c1dd624997207865aafc7b8c3a69f5e969
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_Preprocessing.ttl
@@ -0,0 +1,1109 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:bind-01.ARG0 a ns3:FrameRole .
+
+ns3:bind-01.ARG1 a ns3:FrameRole .
+
+ns3:orbit-01.ARG0 a ns3:FrameRole .
+
+ns3:orbit-01.ARG1 a ns3:FrameRole .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_o a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_s2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d2_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_m9_ARG0_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m9_ARG1_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_d a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_o3_d2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_s_p a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_bind-01_b a :AMR_Leaf ;
+    :edge_b_g :leaf_gravitation_g ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_bind-01 ;
+    :hasVariable :variable_b .
+
+:leaf_hasManner_m9 a :AMR_Leaf ;
+    :edge_m9_ARG0_o2 :leaf_orbit-01_o2 ;
+    :edge_m9_ARG1_o3 :leaf_or_o3 ;
+    :hasConcept :concept_manner ;
+    :hasVariable :variable_m9 ;
+    :isReifiedLeaf true .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_a :leaf_and_a ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_SSC-01-01 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#root01> ;
+    :hasRootLeaf :leaf_system_s ;
+    :hasSentenceID "SSC-01-01" ;
+    :hasSentenceStatement "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#b> a ns3:bind-01 ;
+    ns3:bind-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+    ns3:bind-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o2> a ns3:orbit-01 ;
+    ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:manner <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#root01> a ns2:AMR ;
+    ns2:has-id "SSC-01-01" ;
+    ns2:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
+    ns2:root <http://amr.isi.edu/amr_data/SSC-01-01#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns2:NamedEntity ;
+    rdfs:comment "bug" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_bind-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:bind-01 ;
+    :label "bind-01" .
+
+:concept_gravitation rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:gravitation ;
+    :label "gravitation" .
+
+:concept_manner rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:manner ;
+    :isReifiedConcept true ;
+    :label "hasManner" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:object ;
+    :label "object" .
+
+:concept_or rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:or ;
+    :hasPhenomenaLink :phenomena_conjunction_or ;
+    :label "or" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sun ;
+    :label "sun" .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_o :leaf_object_o ;
+    :edge_a_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_direct-02_d2 a :AMR_Leaf ;
+    :edge_d2_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d2 .
+
+:leaf_gravitation_g a :AMR_Leaf ;
+    :hasConcept :concept_gravitation ;
+    :hasVariable :variable_g .
+
+:leaf_or_o3 a :AMR_Leaf ;
+    :edge_o3_d :leaf_direct-02_d ;
+    :edge_o3_d2 :leaf_direct-02_d2 ;
+    :hasConcept :concept_or ;
+    :hasVariable :variable_o3 .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_system_p a :AMR_Leaf ;
+    :edge_p_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_p .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+    :label "g" .
+
+:variable_m9 a ns11:manner,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "m9" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+    :label "p" ;
+    :name "Solar System" .
+
+:variable_p9 a ns11:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    :label "s2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#a> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d> a ns3:direct-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d2> a ns3:direct-02 ;
+    ns11:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#g> a ns11:gravitation ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o3> a ns2:or ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#p> a <http://amr.isi.edu/entity-types#planet>,
+        <http://amr.isi.edu/entity-types#system> ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#system> a ns2:NamedEntity ;
+    rdfs:label "system" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:bind-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:orbit-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:gravitation a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:manner a ns2:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:object a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:part a ns2:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sun a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:system a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:or a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:direct-02 ;
+    :label "direct-02" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#system>,
+        ns11:system ;
+    :label "system" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o> a ns11:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s> a ns11:system ;
+    ns11:domain <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+    ns11:part <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s2> a ns11:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:direct-02 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_p :leaf_system_p ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..4e5ba4db5e1b78fd723158a223469cc43dbdc345
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_Transduction.ttl
@@ -0,0 +1,1656 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:bind-01.ARG0 a ns3:FrameRole .
+
+ns3:bind-01.ARG1 a ns3:FrameRole .
+
+ns3:orbit-01.ARG0 a ns3:FrameRole .
+
+ns3:orbit-01.ARG1 a ns3:FrameRole .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_o a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_s2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d2_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_m9_ARG0_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m9_ARG1_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_d a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_o3_d2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_s_p a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_SSC-01-01 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#root01> ;
+    :hasRootLeaf :leaf_system_s ;
+    :hasSentenceID "SSC-01-01" ;
+    :hasSentenceStatement "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:axiom_disjointProperty_direct_not-direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_direct_not-direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:axiom_disjointProperty_not-direct_direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_not-direct_direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:relation_SolarSystem-hasPart-object-SSC-01-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_object-SSC-01-01_o ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-object-SSC-01-01" ;
+    net:hasObjectNet net:individual_object-SSC-01-01_o ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_SolarSystem-hasPart-sun-SSC-01-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_gravitation-SSC-01-01-bind-SolarSystem_g a net:Relation_Net ;
+    net:composeFrom net:atomProperty_bind_b,
+        net:individual_SolarSystem_p,
+        net:individual_gravitation-SSC-01-01_g ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_p,
+        :leaf_system_s ;
+    net:hasNaming "gravitation-SSC-01-01-bind-SolarSystem" ;
+    net:hasObjectNet net:individual_SolarSystem_p ;
+    net:hasPredicateNet net:atomProperty_bind_b ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_gravitation-SSC-01-01_g .
+
+net:relation_object-SSC-01-01-orbit-hasManner-direct-sun-SSC-01-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-direct_o2,
+        net:individual_object-SSC-01-01_o,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-SSC-01-01-orbit-hasManner-direct-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_object-SSC-01-01_o .
+
+net:relation_object-SSC-01-01-orbit-hasManner-not-direct-sun-SSC-01-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-not-direct_o2,
+        net:individual_object-SSC-01-01_o,
+        net:individual_sun-SSC-01-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-SSC-01-01-orbit-hasManner-not-direct-sun-SSC-01-01" ;
+    net:hasObjectNet net:individual_sun-SSC-01-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasSubjectNet net:individual_object-SSC-01-01_o .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#b> a ns3:bind-01 ;
+    ns3:bind-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+    ns3:bind-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o2> a ns3:orbit-01 ;
+    ns3:orbit-01.ARG0 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    ns3:orbit-01.ARG1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:manner <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#root01> a ns2:AMR ;
+    ns2:has-id "SSC-01-01" ;
+    ns2:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
+    ns2:root <http://amr.isi.edu/amr_data/SSC-01-01#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns2:NamedEntity ;
+    rdfs:comment "bug" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_bind-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:bind-01 ;
+    :label "bind-01" .
+
+:concept_gravitation rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:gravitation ;
+    :label "gravitation" .
+
+:concept_manner rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:manner ;
+    :isReifiedConcept true ;
+    :label "hasManner" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:object ;
+    :label "object" .
+
+:concept_or rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:or ;
+    :hasPhenomenaLink :phenomena_conjunction_or ;
+    :label "or" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sun ;
+    :label "sun" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_polarity a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#g> ;
+    :label "g" .
+
+:variable_m9 a ns11:manner,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "m9" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+    :label "p" ;
+    :name "Solar System" .
+
+:variable_p9 a ns11:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    :label "s2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_orbit_o2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_gravitation-bind-system_g a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_gravitation_g,
+        net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_gravitation_g ;
+    net:hasNaming "gravitation-bind-system" ;
+    net:hasRestriction net:restriction_bind-system_b ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_object-orbit-hasManner-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-direct-sun_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_object-orbit-hasManner-not-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-not-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-not-direct-sun_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_system-hasPart-object_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-object" ;
+    net:hasRestriction net:restriction_hasPart-object_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeClass_system-hasPart-sun_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-sun" ;
+    net:hasRestriction net:restriction_hasPart-sun_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_sun_s2 ;
+    :role_op2 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "SSC-01-01" .
+
+net:phenomena_conjunction-OR_o3 a net:Phenomena_Net ;
+    :role_op1 net:atomProperty_direct_d ;
+    :role_op2 net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_or_o3 ;
+    net:coverNode :leaf_or_o3 ;
+    net:hasNaming "conjunction-OR" ;
+    net:hasPhenomenaRef "or" ;
+    net:hasPhenomenaType :phenomena_conjunction_or ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_bind-system_b a net:Restriction_Net ;
+    net:composeFrom net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_system_s ;
+    net:hasNaming "bind-system" ;
+    net:hasRestrictionNetValue net:atomClass_system_s ;
+    net:hasRestrictionOnProperty net:atomProperty_bind_b ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasManner-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-direct" ;
+    net:hasRestrictionNetValue net:atomProperty_direct_d,
+        net:atomProperty_direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasManner-not-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-not-direct" ;
+    net:hasRestrictionNetValue net:compositeProperty_not-direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasPart-object_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o ;
+    net:hasNaming "hasPart-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_hasPart-sun_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2 ;
+    net:hasNaming "hasPart-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_orbit-hasManner-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+net:restriction_orbit-hasManner-not-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-not-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "SSC-01-01" .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#a> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#s2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d> a ns3:direct-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#d2> a ns3:direct-02 ;
+    ns11:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#g> a ns11:gravitation ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o3> a ns2:or ;
+    ns11:op1 <http://amr.isi.edu/amr_data/SSC-01-01#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/SSC-01-01#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#p> a <http://amr.isi.edu/entity-types#planet>,
+        <http://amr.isi.edu/entity-types#system> ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#system> a ns2:NamedEntity ;
+    rdfs:label "system" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:bind-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:orbit-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:gravitation a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:manner a ns2:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:object a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:part a ns2:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sun a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:system a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:or a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:direct-02 ;
+    :label "direct-02" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#system>,
+        ns11:system ;
+    :label "system" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:individual_gravitation-SSC-01-01_g a net:Individual_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasIndividualLabel "any gravitation" ;
+    net:hasMotherClassNet net:compositeClass_gravitation-bind-system_g ;
+    net:hasNaming "gravitation-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasValueLabel "SolarSystem" .
+
+net:value_negative_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_negative ;
+    net:hasNaming "negative" ;
+    net:hasStructure "SSC-01-01" ;
+    net:hasValueLabel "negative" .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#o> a ns11:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s> a ns11:system ;
+    ns11:domain <http://amr.isi.edu/amr_data/SSC-01-01#p> ;
+    ns11:part <http://amr.isi.edu/amr_data/SSC-01-01#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/SSC-01-01#s2> a ns11:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:direct-02 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_gravitation_g a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_gravitation_g ;
+    net:hasClassName "gravitation" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "gravitation" ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_o :leaf_object_o ;
+    :edge_a_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_or_o3 a :AMR_Leaf ;
+    :edge_o3_d :leaf_direct-02_d ;
+    :edge_o3_d2 :leaf_direct-02_d2 ;
+    :hasConcept :concept_or ;
+    :hasVariable :variable_o3 .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_direct_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_bind_b a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_gravitation_g ;
+    :role_ARG1 net:atomClass_system_s ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b ;
+    net:hasNaming "bind" ;
+    net:hasPropertyName "bind" ;
+    net:hasPropertyName01 "binding" ;
+    net:hasPropertyName10 "bind-by" ;
+    net:hasPropertyName12 "bind-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_gravitation_g,
+        :leaf_system_s .
+
+net:compositeProperty_orbit-hasManner-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-direct_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:compositeProperty_orbit-hasManner-not-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-not-direct_m9 ;
+    net:hasStructure "SSC-01-01" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomProperty_hasManner_m9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_orbit_o2,
+        net:atomProperty_orbit_o2 ;
+    :role_ARG1 net:phenomena_conjunction-OR_o3 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner" ;
+    net:hasPropertyName "hasManner" ;
+    net:hasPropertyName01 "hasMannering" ;
+    net:hasPropertyName10 "hasManner-by" ;
+    net:hasPropertyName12 "hasManner-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_or_o3,
+        :leaf_orbit-01_o2 .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_sun_s2 .
+
+net:individual_object-SSC-01-01_o a net:Individual_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasIndividualLabel "any object" ;
+    net:hasMotherClassNet net:atomClass_object_o,
+        net:compositeClass_object-orbit-hasManner-direct-sun_o,
+        net:compositeClass_object-orbit-hasManner-not-direct-sun_o ;
+    net:hasNaming "object-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+net:individual_sun-SSC-01-01_s2 a net:Individual_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasIndividualLabel "any sun" ;
+    net:hasMotherClassNet net:atomClass_sun_s2 ;
+    net:hasNaming "sun-SSC-01-01" ;
+    net:hasStructure "SSC-01-01" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_bind-01_b a :AMR_Leaf ;
+    :edge_b_g :leaf_gravitation_g ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_bind-01 ;
+    :hasVariable :variable_b .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_system_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "SSC-01-01" .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+net:compositeProperty_not-direct_d2 a net:Composite_Property_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:composeFrom net:atomProperty_direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:atomProperty_direct_d2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :value_negative .
+
+net:individual_SolarSystem_p a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s,
+        net:compositeClass_system-hasPart-object_s,
+        net:compositeClass_system-hasPart-sun_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "SSC-01-01" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_gravitation_g a :AMR_Leaf ;
+    :hasConcept :concept_gravitation ;
+    :hasVariable :variable_g .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_a :leaf_and_a ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_system_p a :AMR_Leaf ;
+    :edge_p_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_p .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_system_p ;
+    net:hasNaming "system" ;
+    net:hasStructure "SSC-01-01" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s ;
+    :role_ARG1 net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:phenomena_conjunction-AND_a ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "SSC-01-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_system_s .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasManner_m9 a :AMR_Leaf ;
+    :edge_m9_ARG0_o2 :leaf_orbit-01_o2 ;
+    :edge_m9_ARG1_o3 :leaf_or_o3 ;
+    :hasConcept :concept_manner ;
+    :hasVariable :variable_m9 ;
+    :isReifiedLeaf true .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "SSC-01-01" .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_p :leaf_system_p ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+net:atomClass_sun_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "SSC-01-01" .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_direct-02_d2 a :AMR_Leaf ;
+    :edge_d2_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d2 .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..9d7ccf2354201669b39a1a11565d437c5f288b2e
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemDev01-20230911/technical-data/tenet.tetras-libre.fr_demo_01-1/tenet.tetras-libre.fr_demo_01_factoid.ttl
@@ -0,0 +1,126 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix ns2: <https://tenet.tetras-libre.fr/extract-result#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+ns2:direct a owl:ObjectProperty ;
+    rdfs:label "direct" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:gravitation-SSC-01-01 a owl:Individual,
+        ns2:gravitation-bind-system ;
+    rdfs:label "any gravitation" ;
+    ns1:fromStructure "SSC-01-01" ;
+    ns2:bind ns2:SolarSystem .
+
+ns2:hasManner a owl:ObjectProperty ;
+    rdfs:label "hasManner" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:not-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:SolarSystem a owl:Individual,
+        ns2:system,
+        ns2:system-hasPart-object,
+        ns2:system-hasPart-sun ;
+    rdfs:label "SolarSystem" ;
+    ns1:fromStructure "SSC-01-01" ;
+    ns2:hasPart ns2:object-SSC-01-01,
+        ns2:sun-SSC-01-01 .
+
+ns2:bind a owl:ObjectProperty ;
+    rdfs:label "bind" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:gravitation a owl:Class ;
+    rdfs:label "gravitation" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:gravitation-bind-system a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:bind ;
+            owl:someValuesFrom ns2:system ],
+        ns2:gravitation ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:object-SSC-01-01 a owl:Individual,
+        ns2:object,
+        ns2:object-orbit-hasManner-direct-sun,
+        ns2:object-orbit-hasManner-not-direct-sun ;
+    rdfs:label "any object" ;
+    ns1:fromStructure "SSC-01-01" ;
+    ns2:orbit-hasManner-direct ns2:sun-SSC-01-01 ;
+    ns2:orbit-hasManner-not-direct ns2:sun-SSC-01-01 .
+
+ns2:object-orbit-hasManner-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:orbit-hasManner-direct ;
+            owl:someValuesFrom ns2:sun ],
+        ns2:object ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:object-orbit-hasManner-not-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:orbit-hasManner-not-direct ;
+            owl:someValuesFrom ns2:sun ],
+        ns2:object ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:orbit-hasManner-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns2:orbit ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:orbit-hasManner-not-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns2:orbit ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:system-hasPart-object a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:hasPart ;
+            owl:someValuesFrom ns2:object ],
+        ns2:system ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:system-hasPart-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:hasPart ;
+            owl:someValuesFrom ns2:sun ],
+        ns2:system ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:hasPart a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:orbit a owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:sun-SSC-01-01 a owl:Individual,
+        ns2:sun ;
+    rdfs:label "any sun" ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:object a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:sun a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "SSC-01-01" .
+
+ns2:system a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "SSC-01-01" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..3aab5a7e8b0b957563d42fe0a15d8843a9b9aa19
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/SolarSystemProd_factoid.ttl
@@ -0,0 +1,1531 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix ns2: <https://tenet.tetras-libre.fr/extract-result#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+ns2:Cerre a owl:Individual,
+        ns2:asteroid ;
+    rdfs:label "Cerre" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:Earth a owl:Individual,
+        ns2:planet ;
+    rdfs:label "Earth" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+ns2:Eris a owl:Individual,
+        ns2:asteroid ;
+    rdfs:label "Eris" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:Gonggong a owl:Individual,
+        ns2:object ;
+    rdfs:label "Gonggong" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:Haumea a owl:Individual,
+        ns2:asteroid ;
+    rdfs:label "Haumea" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:Jupiter a owl:Individual,
+        ns2:planet ;
+    rdfs:label "Jupiter" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05",
+        "WikiAbstract-SolarSystem-08",
+        "WikiAbstract-SolarSystem-11" .
+
+ns2:KuiperBelt a owl:Individual,
+        ns2:belt ;
+    rdfs:label "KuiperBelt" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+ns2:Makemake a owl:Individual,
+        ns2:object ;
+    rdfs:label "Makemake" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:Mars a owl:Individual,
+        ns2:planet ;
+    rdfs:label "Mars" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06",
+        "WikiAbstract-SolarSystem-11" .
+
+ns2:Mercury a owl:Individual,
+        ns2:planet ;
+    rdfs:label "Mercury" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-06" .
+
+ns2:MilkyWay a owl:Individual,
+        ns2:galaxy ;
+    rdfs:label "MilkyWay" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+ns2:Neptune a owl:Individual,
+        ns2:planet ;
+    rdfs:label "Neptune" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:Neptunian a owl:Individual,
+        ns2:planet ;
+    rdfs:label "Neptunian" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+ns2:Oortcloud a owl:Individual,
+        ns2:cloud ;
+    rdfs:label "Oortcloud" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+ns2:Orcus a owl:Individual,
+        ns2:object ;
+    rdfs:label "Orcus" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:Orion a owl:Individual,
+        ns2:arm ;
+    rdfs:label "Orion" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+ns2:Pluto a owl:Individual,
+        ns2:object ;
+    rdfs:label "Pluto" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:ProximaCentre a owl:Individual,
+        ns2:star ;
+    rdfs:label "ProximaCentre" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+ns2:Quaoar a owl:Individual,
+        ns2:object ;
+    rdfs:label "Quaoar" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:Saturn a owl:Individual,
+        ns2:planet ;
+    rdfs:label "Saturn" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:Sedna a owl:Individual,
+        ns2:object ;
+    rdfs:label "Sedna" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:Uranus a owl:Individual,
+        ns2:planet ;
+    rdfs:label "Uranus" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:Venus a owl:Individual,
+        ns2:planet ;
+    rdfs:label "Venus" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+ns2:accept a owl:Class ;
+    rdfs:label "accept" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:after a owl:ObjectProperty ;
+    rdfs:label "after" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+ns2:all a owl:ObjectProperty ;
+    rdfs:label "all" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+ns2:also a owl:Class ;
+    rdfs:label "also" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-10",
+        "WikiAbstract-SolarSystem-21" .
+
+ns2:ammonia a owl:Class ;
+    rdfs:label "ammonia" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:asteroid-belt-contain-object a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:contain ;
+            owl:someValuesFrom ns2:object ],
+        ns2:asteroid-belt ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+ns2:at-least a owl:Class ;
+    rdfs:label "at-least" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:before a owl:Class ;
+    rdfs:label "before" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+ns2:body-include-body a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:include ;
+            owl:someValuesFrom ns2:body ],
+        ns2:body ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+ns2:centaur a owl:Class ;
+    rdfs:label "centaur" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+ns2:center a owl:Class ;
+    rdfs:label "center" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+ns2:charge a owl:ObjectProperty ;
+    rdfs:label "charge" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+ns2:circular-orbit-lie-disc a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:lie ;
+            owl:someValuesFrom ns2:disc ],
+        ns2:circular-orbit ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+ns2:close a owl:ObjectProperty ;
+    rdfs:label "close" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+ns2:collapse-cause-gravity a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:cause ;
+            owl:someValuesFrom ns2:gravity ],
+        ns2:collapse ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+ns2:compose-resemble-terrestrial-planet a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:resemble ;
+            owl:someValuesFrom ns2:terrestrial-planet ],
+        ns2:compose ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+ns2:considerable a owl:Class ;
+    rdfs:label "considerable" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+ns2:date a owl:ObjectProperty ;
+    rdfs:label "date" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+ns2:debate a owl:Class ;
+    rdfs:label "debate" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+ns2:direct a owl:ObjectProperty ;
+    rdfs:label "direct" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01",
+        "WikiAbstract-SolarSystem-02" .
+
+ns2:disc-hasPart-edge a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:hasPart ;
+            owl:someValuesFrom ns2:edge ],
+        ns2:disc ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+ns2:discover a owl:Class ;
+    rdfs:label "discover" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+ns2:distance-quantity a owl:Class ;
+    rdfs:label "distance-quantity" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+ns2:distant a owl:ObjectProperty ;
+    rdfs:label "distant" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+ns2:dust a owl:Class ;
+    rdfs:label "dust" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16",
+        "WikiAbstract-SolarSystem-18" .
+
+ns2:ecliptic a owl:Individual,
+        ns2:thing ;
+    rdfs:label "ecliptic" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+ns2:enough a owl:Class ;
+    rdfs:label "enough" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+ns2:exist a owl:ObjectProperty ;
+    rdfs:label "exist" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+ns2:extend a owl:ObjectProperty ;
+    rdfs:label "extend" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+ns2:flat a owl:ObjectProperty ;
+    rdfs:label "flat" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+ns2:form a owl:ObjectProperty ;
+    rdfs:label "form" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+ns2:free a owl:ObjectProperty ;
+    rdfs:label "free" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+ns2:gas-giant-compose-helium a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:compose ;
+            owl:someValuesFrom ns2:helium ],
+        ns2:gas-giant ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:gas-giant-compose-hydrogen a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:compose ;
+            owl:someValuesFrom ns2:hydrogen ],
+        ns2:gas-giant ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:general a owl:ObjectProperty ;
+    rdfs:label "general" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:giant-cloud a owl:Class ;
+    rdfs:subClassOf ns2:cloud ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+ns2:giant-planet a owl:Class ;
+    rdfs:subClassOf ns2:planet ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+ns2:gravitation-WikiAbstract-SolarSystem-01 a owl:Individual,
+        ns2:gravitation-bind-system ;
+    rdfs:label "any gravitation" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01" ;
+    ns2:bind ns2:SolarSystem .
+
+ns2:hasManner a owl:ObjectProperty ;
+    rdfs:label "hasManner" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns2:have a owl:ObjectProperty ;
+    rdfs:label "have" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+ns2:heliopause a owl:Class ;
+    rdfs:label "heliopause" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+ns2:helium-call-volatile a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:call ;
+            owl:someValuesFrom ns2:volatile ],
+        ns2:helium ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:high a owl:ObjectProperty ;
+    rdfs:label "high" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:hydrogen-call-volatile a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:call ;
+            owl:someValuesFrom ns2:volatile ],
+        ns2:hydrogen ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:ice-giant a owl:Class ;
+    rdfs:subClassOf ns2:giant ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:inner-system a owl:Class ;
+    rdfs:subClassOf ns2:system ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+ns2:intercontinental-cloud a owl:Class ;
+    rdfs:subClassOf ns2:cloud ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+ns2:interplanetary-cloud a owl:Class ;
+    rdfs:subClassOf ns2:cloud ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+ns2:interstellar-medium a owl:Class ;
+    rdfs:subClassOf ns2:medium ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+ns2:large a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-08",
+        "WikiAbstract-SolarSystem-13",
+        "WikiAbstract-SolarSystem-17" .
+
+ns2:light-year a owl:Class ;
+    rdfs:label "light-year" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22",
+        "WikiAbstract-SolarSystem-23" .
+
+ns2:local a owl:ObjectProperty ;
+    rdfs:label "local" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+ns2:long a owl:ObjectProperty ;
+    rdfs:label "long" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+ns2:main a owl:Class ;
+    rdfs:label "main" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:many a owl:Class ;
+    rdfs:label "many" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13",
+        "WikiAbstract-SolarSystem-17" .
+
+ns2:mass-be-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:be ;
+            owl:someValuesFrom ns2:sun ],
+        ns2:mass ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+ns2:massive a owl:Class ;
+    rdfs:label "massive" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+ns2:melt a owl:ObjectProperty ;
+    rdfs:label "melt" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:metal a owl:Class ;
+    rdfs:label "metal" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06",
+        "WikiAbstract-SolarSystem-11" .
+
+ns2:methane a owl:Class ;
+    rdfs:label "methane" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:molecule a owl:Class ;
+    rdfs:label "molecule" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+ns2:moon a owl:Class ;
+    rdfs:label "moon" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+ns2:more a owl:Class,
+        owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subClassOf ns1:Entity ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-06",
+        "WikiAbstract-SolarSystem-07",
+        "WikiAbstract-SolarSystem-08",
+        "WikiAbstract-SolarSystem-10",
+        "WikiAbstract-SolarSystem-17" .
+
+ns2:most a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-08",
+        "WikiAbstract-SolarSystem-11",
+        "WikiAbstract-SolarSystem-12",
+        "WikiAbstract-SolarSystem-17",
+        "WikiAbstract-SolarSystem-22",
+        "WikiAbstract-SolarSystem-23" .
+
+ns2:natural a owl:ObjectProperty ;
+    rdfs:label "natural" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-17" .
+
+ns2:near a owl:ObjectProperty ;
+    rdfs:label "near" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09",
+        "WikiAbstract-SolarSystem-23" .
+
+ns2:new a owl:ObjectProperty ;
+    rdfs:label "new" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+ns2:night a owl:Class ;
+    rdfs:label "night" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+ns2:not-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01",
+        "WikiAbstract-SolarSystem-03" .
+
+ns2:now a owl:Class ;
+    rdfs:label "now" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+ns2:object-include-object a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:include ;
+            owl:someValuesFrom ns2:object ],
+        ns2:object ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+ns2:object-mean-satellite a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:mean ;
+            owl:someValuesFrom ns2:satellite ],
+        ns2:object ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+ns2:object-population-compose-ice a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:compose ;
+            owl:someValuesFrom ns2:ice ],
+        ns2:object-population ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+ns2:observe a owl:ObjectProperty ;
+    rdfs:label "observe" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:oppose a owl:ObjectProperty ;
+    rdfs:label "oppose" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+ns2:ordinal-entity a owl:Class ;
+    rdfs:label "ordinal-entity" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+ns2:other-object a owl:Class ;
+    rdfs:subClassOf ns2:object ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+ns2:other-population-travel-between a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:travel ;
+            owl:someValuesFrom ns2:between ],
+        ns2:other-population ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+ns2:out a owl:Class ;
+    rdfs:label "out" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+ns2:outer-system-hasPart-planet a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:hasPart ;
+            owl:someValuesFrom ns2:planet ],
+        ns2:outer-system ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+ns2:outwards a owl:Class ;
+    rdfs:label "outwards" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+ns2:particle a owl:Class ;
+    rdfs:label "particle" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+ns2:period-comet a owl:Class ;
+    rdfs:subClassOf ns2:comet ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+ns2:person a owl:Class ;
+    rdfs:label "person" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:planet-include-dwarf-planet a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:include ;
+            owl:someValuesFrom ns2:dwarf-planet ],
+        ns2:planet ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+ns2:planet-ring-encircle-each-planet a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:encircle ;
+            owl:someValuesFrom ns2:each-planet ],
+        ns2:planet-ring ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+ns2:planet-ring-encircle-outer-planet a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:encircle ;
+            owl:someValuesFrom ns2:outer-planet ],
+        ns2:planet-ring ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+ns2:pressure-equal-point a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:equal ;
+            owl:someValuesFrom ns2:point ],
+        ns2:pressure ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+ns2:pressure-equal-pressure a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:equal ;
+            owl:someValuesFrom ns2:pressure ],
+        ns2:pressure ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+ns2:primary a owl:Class ;
+    rdfs:label "primary" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+ns2:prove a owl:ObjectProperty ;
+    rdfs:label "prove" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+ns2:region-know-heliosphere a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:know ;
+            owl:someValuesFrom ns2:heliosphere ],
+        ns2:region ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+ns2:region-resemble-bubble a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:resemble ;
+            owl:someValuesFrom ns2:bubble ],
+        ns2:region ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+ns2:relative a owl:ObjectProperty ;
+    rdfs:label "relative" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:relative-position a owl:Class ;
+    rdfs:label "relative-position" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+ns2:remain a owl:ObjectProperty ;
+    rdfs:label "remain" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-05" .
+
+ns2:rock a owl:Class ;
+    rdfs:label "rock" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06",
+        "WikiAbstract-SolarSystem-11" .
+
+ns2:roughly a owl:Class ;
+    rdfs:label "roughly" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+ns2:round a owl:ObjectProperty ;
+    rdfs:label "round" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+ns2:satellite-orbit-body a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:orbit ;
+            owl:someValuesFrom ns2:body ],
+        ns2:satellite ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+ns2:satellite-orbit-planet a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:orbit ;
+            owl:someValuesFrom ns2:planet ],
+        ns2:satellite ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+ns2:scatter a owl:ObjectProperty ;
+    rdfs:label "scatter" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12",
+        "WikiAbstract-SolarSystem-20" .
+
+ns2:sednoid-population-lie-beyond a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:lie ;
+            owl:someValuesFrom ns2:beyond ],
+        ns2:sednoid-population ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+ns2:see a owl:ObjectProperty ;
+    rdfs:label "see" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+ns2:size a owl:Class ;
+    rdfs:label "size" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+ns2:sky a owl:Class ;
+    rdfs:label "sky" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+ns2:small-body a owl:Class ;
+    rdfs:subClassOf ns2:body ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-16" .
+
+ns2:small-object a owl:Class ;
+    rdfs:subClassOf ns2:object ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+ns2:so-called-bubble a owl:Class ;
+    rdfs:subClassOf ns2:bubble ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+ns2:some a owl:Class ;
+    rdfs:label "some" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+ns2:source a owl:Class ;
+    rdfs:label "source" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+ns2:star-include-star a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:include ;
+            owl:someValuesFrom ns2:star ],
+        ns2:star ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+ns2:stream a owl:Class ;
+    rdfs:label "stream" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+ns2:substance a owl:Class ;
+    rdfs:label "substance" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:substantial a owl:Class ;
+    rdfs:label "substantial" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+ns2:such-object-categorize-dwarf-planet a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:categorize ;
+            owl:someValuesFrom ns2:dwarf-planet ],
+        ns2:such-object ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-14" .
+
+ns2:sun-wind-create-region a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:create ;
+            owl:someValuesFrom ns2:region ],
+        ns2:sun-wind ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+ns2:system-hasPart-mass a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:hasPart ;
+            owl:someValuesFrom ns2:mass ],
+        ns2:system ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+ns2:temporal-quantity a owl:Class ;
+    rdfs:label "temporal-quantity" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+ns2:term a owl:ObjectProperty ;
+    rdfs:label "term" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+ns2:think a owl:ObjectProperty ;
+    rdfs:label "think" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+ns2:this-population a owl:Class ;
+    rdfs:subClassOf ns2:population ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+ns2:this-region a owl:Class ;
+    rdfs:subClassOf ns2:region ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+ns2:times a owl:Class ;
+    rdfs:label "times" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+ns2:trans-Neptunian a owl:Class ;
+    rdfs:label "trans-Neptunian" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns2:transpire a owl:ObjectProperty ;
+    rdfs:label "transpire" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+ns2:under a owl:Class ;
+    rdfs:label "under" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+ns2:usual a owl:Class ;
+    rdfs:label "usual" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+ns2:various-population-travel-between a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:travel ;
+            owl:someValuesFrom ns2:between ],
+        ns2:various-population ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+ns2:vast-majority a owl:Class ;
+    rdfs:subClassOf ns2:majority ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+ns2:water a owl:Class ;
+    rdfs:label "water" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:year a owl:ObjectProperty ;
+    rdfs:label "year" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+ns2:SolarSystem a owl:Individual,
+        ns2:system,
+        ns2:system-hasPart-object,
+        ns2:system-hasPart-sun ;
+    rdfs:label "SolarSystem" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01",
+        "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-04",
+        "WikiAbstract-SolarSystem-10",
+        "WikiAbstract-SolarSystem-22" ;
+    ns2:hasPart ns2:object-WikiAbstract-SolarSystem-01,
+        ns2:sun-WikiAbstract-SolarSystem-01 .
+
+ns2:almost a owl:Class,
+        owl:Individual,
+        ns2:almost ;
+    rdfs:label "almost" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-09" .
+
+ns2:almost-circular a owl:Class ;
+    rdfs:subClassOf ns2:circular ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+ns2:asteroid-belt a owl:Class ;
+    rdfs:subClassOf ns2:belt ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+ns2:be a owl:ObjectProperty ;
+    rdfs:label "be" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05",
+        "WikiAbstract-SolarSystem-22" .
+
+ns2:beyond a owl:Class ;
+    rdfs:label "beyond" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+ns2:bind a owl:ObjectProperty ;
+    rdfs:label "bind" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns2:categorize a owl:ObjectProperty ;
+    rdfs:label "categorize" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-14" .
+
+ns2:cause a owl:ObjectProperty ;
+    rdfs:label "cause" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+ns2:circular-orbit a owl:Class ;
+    rdfs:subClassOf ns2:orbit ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+ns2:collapse a owl:Class ;
+    rdfs:label "collapse" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+ns2:comet a owl:Class ;
+    rdfs:label "comet" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16",
+        "WikiAbstract-SolarSystem-21" .
+
+ns2:contain a owl:ObjectProperty ;
+    rdfs:label "contain" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05",
+        "WikiAbstract-SolarSystem-10",
+        "WikiAbstract-SolarSystem-11",
+        "WikiAbstract-SolarSystem-22" .
+
+ns2:create a owl:ObjectProperty ;
+    rdfs:label "create" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+ns2:dwarf a owl:Class,
+        owl:Individual,
+        ns2:dwarf ;
+    rdfs:label "dwarf" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-14",
+        "WikiAbstract-SolarSystem-15",
+        "WikiAbstract-SolarSystem-17" .
+
+ns2:each a owl:Class,
+        owl:Individual,
+        ns2:each ;
+    rdfs:label "each" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+ns2:each-planet a owl:Class ;
+    rdfs:subClassOf ns2:planet ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+ns2:edge a owl:Class ;
+    rdfs:label "edge" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+ns2:gas a owl:Class,
+        owl:Individual,
+        ns2:gas ;
+    rdfs:label "gas" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:gravitation a owl:Class ;
+    rdfs:label "gravitation" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns2:gravitation-bind-system a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:bind ;
+            owl:someValuesFrom ns2:system ],
+        ns2:gravitation ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns2:gravity a owl:Class ;
+    rdfs:label "gravity" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04",
+        "WikiAbstract-SolarSystem-13" .
+
+ns2:heliosphere a owl:Class ;
+    rdfs:label "heliosphere" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19",
+        "WikiAbstract-SolarSystem-21" .
+
+ns2:inner a owl:Class,
+        owl:Individual,
+        ns2:inner ;
+    rdfs:label "inner" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+ns2:intercontinental a owl:Class,
+        owl:Individual,
+        ns2:intercontinental ;
+    rdfs:label "intercontinental" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+ns2:interplanetary a owl:Class,
+        owl:Individual,
+        ns2:interplanetary ;
+    rdfs:label "interplanetary" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+ns2:interstellar a owl:Class,
+        owl:Individual,
+        ns2:interstellar ;
+    rdfs:label "interstellar" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19",
+        "WikiAbstract-SolarSystem-20" .
+
+ns2:know a owl:ObjectProperty ;
+    rdfs:label "know" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+ns2:majority a owl:Class ;
+    rdfs:label "majority" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+ns2:mean a owl:ObjectProperty ;
+    rdfs:label "mean" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-19" .
+
+ns2:medium a owl:Class,
+        owl:ObjectProperty ;
+    rdfs:label "medium" ;
+    rdfs:subClassOf ns1:Entity ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19",
+        "WikiAbstract-SolarSystem-20" .
+
+ns2:object-WikiAbstract-SolarSystem-01 a owl:Individual,
+        ns2:object,
+        ns2:object-orbit-hasManner-direct-sun,
+        ns2:object-orbit-hasManner-not-direct-sun ;
+    rdfs:label "any object" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01" ;
+    ns2:orbit-hasManner-direct ns2:sun-WikiAbstract-SolarSystem-01 ;
+    ns2:orbit-hasManner-not-direct ns2:sun-WikiAbstract-SolarSystem-01 .
+
+ns2:object-orbit-hasManner-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:orbit-hasManner-direct ;
+            owl:someValuesFrom ns2:sun ],
+        ns2:object ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns2:object-orbit-hasManner-not-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:orbit-hasManner-not-direct ;
+            owl:someValuesFrom ns2:sun ],
+        ns2:object ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns2:object-population a owl:Class ;
+    rdfs:subClassOf ns2:population ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+ns2:orbit-hasManner-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns2:orbit ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns2:orbit-hasManner-not-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns2:orbit ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns2:other a owl:Class,
+        owl:Individual,
+        ns2:other ;
+    rdfs:label "other" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16",
+        "WikiAbstract-SolarSystem-18" .
+
+ns2:other-population a owl:Class ;
+    rdfs:subClassOf ns2:population ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+ns2:outer a owl:Class,
+        owl:Individual,
+        ns2:outer ;
+    rdfs:label "outer" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07",
+        "WikiAbstract-SolarSystem-18" .
+
+ns2:outer-planet a owl:Class ;
+    rdfs:subClassOf ns2:planet ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+ns2:outer-system a owl:Class ;
+    rdfs:subClassOf ns2:system ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+ns2:period a owl:Class,
+        owl:Individual,
+        ns2:period ;
+    rdfs:label "period" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+ns2:point a owl:Class ;
+    rdfs:label "point" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08",
+        "WikiAbstract-SolarSystem-20" .
+
+ns2:ring a owl:Class ;
+    rdfs:label "ring" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+ns2:sednoid a owl:Class,
+        owl:Individual,
+        ns2:sednoid ;
+    rdfs:label "sednoid" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+ns2:sednoid-population a owl:Class ;
+    rdfs:subClassOf ns2:population ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+ns2:small a owl:Class,
+        owl:Individual,
+        ns2:small ;
+    rdfs:label "small" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-06",
+        "WikiAbstract-SolarSystem-10",
+        "WikiAbstract-SolarSystem-16",
+        "WikiAbstract-SolarSystem-17",
+        "WikiAbstract-SolarSystem-18" .
+
+ns2:so-called a owl:Class,
+        owl:Individual,
+        ns2:so-called ;
+    rdfs:label "so-called" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+ns2:such a owl:Class,
+        owl:Individual,
+        ns2:such ;
+    rdfs:label "such" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-14" .
+
+ns2:such-object a owl:Class ;
+    rdfs:subClassOf ns2:object ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-14" .
+
+ns2:sun-wind a owl:Class ;
+    rdfs:subClassOf ns2:wind ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19",
+        "WikiAbstract-SolarSystem-20" .
+
+ns2:system-hasPart-object a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:hasPart ;
+            owl:someValuesFrom ns2:object ],
+        ns2:system ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns2:system-hasPart-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns2:hasPart ;
+            owl:someValuesFrom ns2:sun ],
+        ns2:system ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns2:terrestrial a owl:Class,
+        owl:Individual,
+        ns2:terrestrial ;
+    rdfs:label "terrestrial" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06",
+        "WikiAbstract-SolarSystem-07",
+        "WikiAbstract-SolarSystem-11" .
+
+ns2:terrestrial-planet a owl:Class ;
+    rdfs:subClassOf ns2:planet ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06",
+        "WikiAbstract-SolarSystem-11" .
+
+ns2:thing a owl:Class ;
+    rdfs:label "thing" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+ns2:this a owl:Class,
+        owl:Individual,
+        ns2:this ;
+    rdfs:label "this" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13",
+        "WikiAbstract-SolarSystem-16" .
+
+ns2:various a owl:Class,
+        owl:Individual,
+        ns2:various ;
+    rdfs:label "various" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+ns2:various-population a owl:Class ;
+    rdfs:subClassOf ns2:population ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+ns2:vast a owl:Class,
+        owl:Individual,
+        ns2:vast ;
+    rdfs:label "vast" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+ns2:wind a owl:Class ;
+    rdfs:label "wind" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19",
+        "WikiAbstract-SolarSystem-20" .
+
+ns2:belt a owl:Class ;
+    rdfs:label "belt" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+ns2:between a owl:Class ;
+    rdfs:label "between" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11",
+        "WikiAbstract-SolarSystem-16" .
+
+ns2:bubble a owl:Class ;
+    rdfs:label "bubble" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19",
+        "WikiAbstract-SolarSystem-23" .
+
+ns2:call a owl:ObjectProperty ;
+    rdfs:label "call" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08",
+        "WikiAbstract-SolarSystem-09" .
+
+ns2:circular a owl:Class,
+        owl:Individual,
+        ns2:almost-circular,
+        ns2:circular ;
+    rdfs:label "circular" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+ns2:disc a owl:Class ;
+    rdfs:label "disc" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09",
+        "WikiAbstract-SolarSystem-12",
+        "WikiAbstract-SolarSystem-20" .
+
+ns2:dwarf-planet a owl:Class ;
+    rdfs:subClassOf ns2:planet ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-14",
+        "WikiAbstract-SolarSystem-15",
+        "WikiAbstract-SolarSystem-17" .
+
+ns2:encircle a owl:ObjectProperty ;
+    rdfs:label "encircle" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+ns2:equal a owl:ObjectProperty ;
+    rdfs:label "equal" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-20" .
+
+ns2:gas-giant a owl:Class ;
+    rdfs:subClassOf ns2:giant ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:helium a owl:Class ;
+    rdfs:label "helium" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:hydrogen a owl:Class ;
+    rdfs:label "hydrogen" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:ice a owl:Class,
+        owl:Individual,
+        ns2:ice ;
+    rdfs:label "ice" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08",
+        "WikiAbstract-SolarSystem-12" .
+
+ns2:lie a owl:ObjectProperty ;
+    rdfs:label "lie" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09",
+        "WikiAbstract-SolarSystem-11",
+        "WikiAbstract-SolarSystem-12" .
+
+ns2:mass a owl:Class ;
+    rdfs:label "mass" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+ns2:planet-ring a owl:Class ;
+    rdfs:subClassOf ns2:ring ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+ns2:resemble a owl:ObjectProperty ;
+    rdfs:label "resemble" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11",
+        "WikiAbstract-SolarSystem-19" .
+
+ns2:travel a owl:ObjectProperty ;
+    rdfs:label "travel" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+ns2:volatile a owl:Class ;
+    rdfs:label "volatile" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+ns2:giant a owl:Class,
+        owl:Individual,
+        ns2:giant ;
+    rdfs:label "giant" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04",
+        "WikiAbstract-SolarSystem-07",
+        "WikiAbstract-SolarSystem-08" .
+
+ns2:pressure a owl:Class ;
+    rdfs:label "pressure" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+ns2:satellite a owl:Class ;
+    rdfs:label "satellite" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-17" .
+
+ns2:star a owl:Class ;
+    rdfs:label "star" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22",
+        "WikiAbstract-SolarSystem-23" .
+
+ns2:sun-WikiAbstract-SolarSystem-01 a owl:Individual,
+        ns2:sun ;
+    rdfs:label "any sun" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns2:asteroid a owl:Class,
+        owl:Individual,
+        ns2:asteroid ;
+    rdfs:label "asteroid" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+ns2:body a owl:Class ;
+    rdfs:label "body" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-16",
+        "WikiAbstract-SolarSystem-17" .
+
+ns2:cloud a owl:Class ;
+    rdfs:label "cloud" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04",
+        "WikiAbstract-SolarSystem-16" .
+
+ns2:compose a owl:Class,
+        owl:ObjectProperty ;
+    rdfs:label "compose" ;
+    rdfs:subClassOf ns1:Entity ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06",
+        "WikiAbstract-SolarSystem-08",
+        "WikiAbstract-SolarSystem-11",
+        "WikiAbstract-SolarSystem-12" .
+
+ns2:include a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-15",
+        "WikiAbstract-SolarSystem-16",
+        "WikiAbstract-SolarSystem-17",
+        "WikiAbstract-SolarSystem-22",
+        "WikiAbstract-SolarSystem-23" .
+
+ns2:region a owl:Class ;
+    rdfs:label "region" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16",
+        "WikiAbstract-SolarSystem-19" .
+
+ns2:hasPart a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01",
+        "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-05",
+        "WikiAbstract-SolarSystem-06",
+        "WikiAbstract-SolarSystem-07",
+        "WikiAbstract-SolarSystem-20",
+        "WikiAbstract-SolarSystem-22" .
+
+ns2:orbit a owl:Class,
+        owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf ns1:Entity ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01",
+        "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-09",
+        "WikiAbstract-SolarSystem-11",
+        "WikiAbstract-SolarSystem-12",
+        "WikiAbstract-SolarSystem-17" .
+
+ns2:population a owl:Class ;
+    rdfs:label "population" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12",
+        "WikiAbstract-SolarSystem-13",
+        "WikiAbstract-SolarSystem-16" .
+
+ns2:sun a owl:Class,
+        owl:Individual,
+        ns2:sun ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01",
+        "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-05",
+        "WikiAbstract-SolarSystem-19",
+        "WikiAbstract-SolarSystem-20" .
+
+ns2:system a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01",
+        "WikiAbstract-SolarSystem-05",
+        "WikiAbstract-SolarSystem-06",
+        "WikiAbstract-SolarSystem-07" .
+
+ns2:object a owl:Class,
+        owl:Individual,
+        ns2:object ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-01",
+        "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-03",
+        "WikiAbstract-SolarSystem-10",
+        "WikiAbstract-SolarSystem-11",
+        "WikiAbstract-SolarSystem-12",
+        "WikiAbstract-SolarSystem-13",
+        "WikiAbstract-SolarSystem-14",
+        "WikiAbstract-SolarSystem-15",
+        "WikiAbstract-SolarSystem-18" .
+
+ns2:planet a owl:Class,
+        owl:Individual,
+        ns2:planet ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02",
+        "WikiAbstract-SolarSystem-06",
+        "WikiAbstract-SolarSystem-07",
+        "WikiAbstract-SolarSystem-09",
+        "WikiAbstract-SolarSystem-11",
+        "WikiAbstract-SolarSystem-14",
+        "WikiAbstract-SolarSystem-15",
+        "WikiAbstract-SolarSystem-17",
+        "WikiAbstract-SolarSystem-18" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.log b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.log
new file mode 100644
index 0000000000000000000000000000000000000000..efac807eb0070cf28c33a16e2427d3e1d2e6af88
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.log
@@ -0,0 +1,2503 @@
+- INFO - [TENET] Extraction Processing
+- INFO - 
+ === Process Initialization === 
+- INFO - -- Process Setting 
+- INFO - ----- Corpus source: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/ (amr)
+- INFO - ----- Base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911
+- INFO - ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/
+- INFO - ----- Ontology target (id): https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- INFO - ----- Current path: /home/lamenji/Workspace/Tetras/tenet/tenet
+- DEBUG - ----- Config file: /home/lamenji/Workspace/Tetras/tenet/tenet/owl_amr_config.xml
+- DEBUG - 
+  ***  Config (Full Parameters) *** 
+  -- Base Parameters
+  ----- config file: /home/lamenji/Workspace/Tetras/tenet/tenet/owl_amr_config.xml
+  ----- uuid: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+  ----- technical base name: tenet.tetras-libre.fr_demo_SolarSystemProd
+  ----- source corpus: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/
+  ----- target reference: base
+  ----- process level: sentence
+  ----- source type: amr
+  ----- extraction scheme: owl_amr_scheme_1
+  -- Directories
+  ----- base directory: ./
+  ----- structure directory: ./structure/
+  ----- CTS directory: ./scheme/
+  ----- target frame directory: ./../input/targetFrameStructure/
+  ----- input document directory: 
+  ----- base output dir: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911
+  ----- output directory: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/tenet.tetras-libre.fr_demo_SolarSystemProd-20230911/
+  ----- sentence output directory: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/
+  ----- technical dir path: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/
+  -- Config File Definition
+  ----- schema file: ./structure/amr-rdf-schema.ttl
+  ----- semantic net file: ./structure/owl-snet-schema.ttl
+  ----- config param file: ./structure/config-parameters.ttl
+  ----- base ontology file: ./structure/base-ontology.ttl
+  ----- CTS file: ./scheme/owl_amr_scheme_1.py
+  -- Useful References for Ontology
+  ----- base URI: https://tenet.tetras-libre.fr/working
+  ----- ontology suffix: -ontology.ttl
+  ----- ontology seed suffix: -ontology-seed.ttl
+  -- Source File Definition
+  ----- source sentence file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/**/*.ttl
+  -- Target File Definition
+  ----- frame ontology file: ./../input/targetFrameStructure/base-ontology.ttl
+  ----- frame ontology seed file: ./../input/targetFrameStructure/base-ontology-seed.ttl
+  -- Output
+  ----- ontology namespace: https://tenet.tetras-libre.fr/base-ontology/
+  ----- output file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
+  *** - *** 
+- DEBUG - -- Counting number of graph files (sentences) 
+- INFO - ----- Number of Graphs: 23
+- INFO - 
+ === Extraction Processing === 
+- INFO - Single-Processing Run 
+- INFO - 
+ [P-1]     *** extraction from sentence 1 *** 
+- INFO -  [P-1] -- Work Structure Preparation
+- DEBUG -  [P-1] --- Graph Initialization
+- DEBUG -  [P-1] ----- Configuration Loading
+- DEBUG -  [P-1] -------- RDF Schema (320)
+- DEBUG -  [P-1] -------- Semantic Net Definition (488)
+- DEBUG -  [P-1] -------- Config Parameter Definition (522)
+- DEBUG -  [P-1] ----- Frame Ontology Loading
+- DEBUG -  [P-1] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-1] --- Source Data Import
+- DEBUG -  [P-1] ----- Sentence Loading
+- DEBUG -  [P-1] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-01/WikiAbstract-SolarSystem-01.stog.amr.ttl (600)
+- DEBUG -  [P-1] --- Export work graph as turtle
+- DEBUG -  [P-1] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-1] ----- Sentence (id): WikiAbstract-SolarSystem-01
+- INFO -  [P-1] ----- Sentence (text): The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly.
+- INFO -  [P-1] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-1] ----- Step number: 3
+- INFO -  [P-1] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-1] ----- Total rule number: 0
+- INFO -  [P-1] -- Step 1: Preprocessing
+- INFO -  [P-1] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- INFO -  [P-1] ----- fix AMR bug (1): 5/5 new triples (605, 0:00:00.015791)
+- INFO -  [P-1] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-1] ----- reclassify AMR-LD concept (1): 10/10 new triples (615, 0:00:00.086643)
+- DEBUG -  [P-1] ----- reclassify AMR-LD concept (2): 0/0 new triple (615, 0:00:00.051948)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (3): 12/12 new triples (627, 0:00:00.027712)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (4): 16/16 new triples (643, 0:00:00.049274)
+- INFO -  [P-1] ----- reclassify AMR-LD concept (5): 2/4 new triples (645, 0:00:00.034756)
+- INFO -  [P-1] ----- reify roles as concept: 10/10 new triples (655, 0:00:00.036227)
+- INFO -  [P-1] ----- reclassify existing variable: 45/45 new triples (700, 0:00:00.016856)
+- INFO -  [P-1] ----- add new variable for reified concept: 8/8 new triples (708, 0:00:00.050506)
+- INFO -  [P-1] ----- add AMR leaf for reclassified concept: 33/33 new triples (741, 0:00:00.018802)
+- INFO -  [P-1] ----- add AMR leaf for reified concept: 8/8 new triples (749, 0:00:00.011856)
+- INFO -  [P-1] ----- add AMR edge for core relation: 27/27 new triples (776, 0:00:00.090831)
+- INFO -  [P-1] ----- add AMR edge for reified concept: 12/12 new triples (788, 0:00:00.065459)
+- INFO -  [P-1] ----- add AMR edge for name relation: 5/5 new triples (793, 0:00:00.018373)
+- DEBUG -  [P-1] ----- add AMR edge for quant relation: 0/0 new triple (793, 0:00:00.018444)
+- INFO -  [P-1] ----- add AMR edge for polarity relation: 5/5 new triples (798, 0:00:00.026881)
+- INFO -  [P-1] ----- update AMR edge role 1: 15/15 new triples (813, 0:00:00.070335)
+- INFO -  [P-1] ----- add AMR root: 5/5 new triples (818, 0:00:00.011063)
+- DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-1] ----- step: Preprocessing
+- DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-1] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-1] ----- 218 triples extracted during Preprocessing step
+- INFO -  [P-1] -- Step 2: Transduction
+- INFO -  [P-1] --- Sequence: atomic extraction sequence
+- INFO -  [P-1] ----- extract atom classes: 30/30 new triples (848, 0:00:00.157913)
+- INFO -  [P-1] ----- extract atom individuals: 8/8 new triples (856, 0:00:00.042639)
+- INFO -  [P-1] ----- extract atomic properties: 75/75 new triples (931, 0:00:00.214533)
+- INFO -  [P-1] ----- extract atom values: 10/10 new triples (941, 0:00:00.050780)
+- INFO -  [P-1] ----- extract atom phenomena: 14/14 new triples (955, 0:00:00.073924)
+- INFO -  [P-1] ----- propagate atom relations: 24/68 new triples (979, 0:00:01.045656)
+- INFO -  [P-1] --- Sequence: classification sequence (1)
+- DEBUG -  [P-1] ----- classify modality phenomena: 0/0 new triple (979, 0:00:00.022068)
+- INFO -  [P-1] ----- reclassify argument property to class: 11/14 new triples (990, 0:00:00.065010)
+- INFO -  [P-1] --- Sequence: phenomena analyze sequence (1)
+- INFO -  [P-1] ----- analyze "polarity" phenomena (1): 32/36 new triples (1022, 0:00:00.099896)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (2): 0/0 new triple (1022, 0:00:00.020338)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (3): 0/0 new triple (1022, 0:00:00.017702)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (4): 0/0 new triple (1022, 0:00:00.040097)
+- DEBUG -  [P-1] ----- analyze "polarity" phenomena (5): 0/0 new triple (1022, 0:00:00.041337)
+- DEBUG -  [P-1] ----- analyze modifier phenomena (mod): 0/0 new triple (1022, 0:00:00.008882)
+- DEBUG -  [P-1] ----- classify modality phenomena: 0/0 new triple (1022, 0:00:00.021253)
+- INFO -  [P-1] --- Sequence: phenomena analyze sequence (2)
+- INFO -  [P-1] ----- analyze "or" phenomena (1): 1/1 new triple (1023, 0:00:00.077114)
+- INFO -  [P-1] ----- analyze "or" phenomena (2): 55/82 new triples (1078, 0:00:00.262891)
+- INFO -  [P-1] ----- analyze "and" phenomena (1): 2/14 new triples (1080, 0:00:00.145791)
+- DEBUG -  [P-1] ----- analyze "and" phenomena (2): 0/0 new triple (1080, 0:00:00.010942)
+- INFO -  [P-1] --- Sequence: composite class extraction sequence
+- INFO -  [P-1] ----- extract composite classes (1): 127/138 new triples (1207, 0:00:00.503538)
+- DEBUG -  [P-1] ----- extract composite classes (2): 0/0 new triple (1207, 0:00:00.029722)
+- INFO -  [P-1] --- Sequence: classification sequence (2)
+- INFO -  [P-1] ----- classify class net as entity from core arguments: 10/181 new triples (1217, 0:00:00.347574)
+- DEBUG -  [P-1] ----- classify class net as entity from :part relation: 0/0 new triple (1217, 0:00:00.013161)
+- DEBUG -  [P-1] ----- classify class net as entity from degree arguments: 0/0 new triple (1217, 0:00:00.025147)
+- INFO -  [P-1] ----- Associate mother to class net from :domain relation: 7/78 new triples (1224, 0:00:00.208284)
+- DEBUG -  [P-1] ----- Propagate individuals to net with same base node: 0/20 new triple (1224, 0:00:00.102252)
+- INFO -  [P-1] ----- Propagate individuals to net with domain link: 3/60 new triples (1227, 0:00:00.171856)
+- INFO -  [P-1] --- Sequence: heuristic deduction sequence
+- INFO -  [P-1] ----- deduce individual and relation from restriction (recursively): 96/72 new triples (1323, 0:00:01.587228)
+- DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-1] ----- step: Transduction
+- DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-1] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-1] ----- 505 triples extracted during Transduction step
+- INFO -  [P-1] -- Step 3: Generation
+- INFO -  [P-1] --- Sequence: OWL Generation Sequence
+- INFO -  [P-1] ----- generate OWL class: 51/55 new triples (1374, 0:00:00.861909)
+- INFO -  [P-1] ----- generate OWL property: 29/29 new triples (1403, 0:00:00.342698)
+- INFO -  [P-1] ----- generate OWL individual: 20/21 new triples (1423, 0:00:00.258460)
+- INFO -  [P-1] ----- generate OWL relation (property): 5/5 new triples (1428, 0:00:00.186346)
+- DEBUG -  [P-1] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-1] ----- step: Generation
+- DEBUG -  [P-1] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-1] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-1] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-1] ----- 105 triples extracted during Generation step
+- DEBUG -  [P-1] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-1] ----- Number of factoids: 110
+- DEBUG -  [P-1] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-1] Success (110 extracted triple(s))
+- INFO - 
+ [P-2]     *** extraction from sentence 2 *** 
+- INFO -  [P-2] -- Work Structure Preparation
+- DEBUG -  [P-2] --- Graph Initialization
+- DEBUG -  [P-2] ----- Configuration Loading
+- DEBUG -  [P-2] -------- RDF Schema (320)
+- DEBUG -  [P-2] -------- Semantic Net Definition (488)
+- DEBUG -  [P-2] -------- Config Parameter Definition (522)
+- DEBUG -  [P-2] ----- Frame Ontology Loading
+- DEBUG -  [P-2] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-2] --- Source Data Import
+- DEBUG -  [P-2] ----- Sentence Loading
+- DEBUG -  [P-2] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-02/WikiAbstract-SolarSystem-02.stog.amr.ttl (627)
+- DEBUG -  [P-2] --- Export work graph as turtle
+- DEBUG -  [P-2] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-2] ----- Sentence (id): WikiAbstract-SolarSystem-02
+- INFO -  [P-2] ----- Sentence (text): Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies.
+- INFO -  [P-2] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-2] ----- Step number: 3
+- INFO -  [P-2] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-2] ----- Total rule number: 0
+- INFO -  [P-2] -- Step 1: Preprocessing
+- INFO -  [P-2] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-2] ----- fix AMR bug (1): 0/0 new triple (627, 0:00:00.019964)
+- INFO -  [P-2] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-2] ----- reclassify AMR-LD concept (1): 10/10 new triples (637, 0:00:00.109883)
+- INFO -  [P-2] ----- reclassify AMR-LD concept (2): 8/8 new triples (645, 0:00:00.058923)
+- INFO -  [P-2] ----- reclassify AMR-LD concept (3): 12/12 new triples (657, 0:00:00.034838)
+- INFO -  [P-2] ----- reclassify AMR-LD concept (4): 28/28 new triples (685, 0:00:00.061375)
+- INFO -  [P-2] ----- reclassify AMR-LD concept (5): 4/4 new triples (689, 0:00:00.035418)
+- INFO -  [P-2] ----- reify roles as concept: 5/5 new triples (694, 0:00:00.041365)
+- INFO -  [P-2] ----- reclassify existing variable: 81/81 new triples (775, 0:00:00.026656)
+- INFO -  [P-2] ----- add new variable for reified concept: 4/4 new triples (779, 0:00:00.056741)
+- INFO -  [P-2] ----- add AMR leaf for reclassified concept: 60/60 new triples (839, 0:00:00.035599)
+- INFO -  [P-2] ----- add AMR leaf for reified concept: 4/4 new triples (843, 0:00:00.013408)
+- INFO -  [P-2] ----- add AMR edge for core relation: 54/54 new triples (897, 0:00:00.142120)
+- INFO -  [P-2] ----- add AMR edge for reified concept: 6/6 new triples (903, 0:00:00.191767)
+- INFO -  [P-2] ----- add AMR edge for name relation: 5/5 new triples (908, 0:00:00.026432)
+- INFO -  [P-2] ----- add AMR edge for quant relation: 5/5 new triples (913, 0:00:00.029096)
+- DEBUG -  [P-2] ----- add AMR edge for polarity relation: 0/0 new triple (913, 0:00:00.033238)
+- INFO -  [P-2] ----- update AMR edge role 1: 22/22 new triples (935, 0:00:00.109944)
+- INFO -  [P-2] ----- add AMR root: 5/5 new triples (940, 0:00:00.012042)
+- DEBUG -  [P-2] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-2] ----- step: Preprocessing
+- DEBUG -  [P-2] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-2] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-2] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-2] ----- 313 triples extracted during Preprocessing step
+- INFO -  [P-2] -- Step 2: Transduction
+- INFO -  [P-2] --- Sequence: atomic extraction sequence
+- INFO -  [P-2] ----- extract atom classes: 66/66 new triples (1006, 0:00:00.357109)
+- INFO -  [P-2] ----- extract atom individuals: 8/8 new triples (1014, 0:00:00.052570)
+- INFO -  [P-2] ----- extract atomic properties: 72/72 new triples (1086, 0:00:00.213900)
+- INFO -  [P-2] ----- extract atom values: 10/10 new triples (1096, 0:00:00.049919)
+- INFO -  [P-2] ----- extract atom phenomena: 28/28 new triples (1124, 0:00:00.129075)
+- INFO -  [P-2] ----- propagate atom relations: 35/96 new triples (1159, 0:00:01.683540)
+- INFO -  [P-2] --- Sequence: classification sequence (1)
+- DEBUG -  [P-2] ----- classify modality phenomena: 0/0 new triple (1159, 0:00:00.032104)
+- INFO -  [P-2] ----- reclassify argument property to class: 11/14 new triples (1170, 0:00:00.103517)
+- INFO -  [P-2] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-2] ----- analyze "polarity" phenomena (1): 0/0 new triple (1170, 0:00:00.008909)
+- DEBUG -  [P-2] ----- analyze "polarity" phenomena (2): 0/0 new triple (1170, 0:00:00.018532)
+- DEBUG -  [P-2] ----- analyze "polarity" phenomena (3): 0/0 new triple (1170, 0:00:00.018197)
+- DEBUG -  [P-2] ----- analyze "polarity" phenomena (4): 0/0 new triple (1170, 0:00:00.041943)
+- DEBUG -  [P-2] ----- analyze "polarity" phenomena (5): 0/0 new triple (1170, 0:00:00.038874)
+- INFO -  [P-2] ----- analyze modifier phenomena (mod): 43/50 new triples (1213, 0:00:00.207318)
+- DEBUG -  [P-2] ----- classify modality phenomena: 0/0 new triple (1213, 0:00:00.023043)
+- INFO -  [P-2] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-2] ----- analyze "or" phenomena (1): 0/0 new triple (1213, 0:00:00.015819)
+- DEBUG -  [P-2] ----- analyze "or" phenomena (2): 0/0 new triple (1213, 0:00:00.013596)
+- INFO -  [P-2] ----- analyze "and" phenomena (1): 5/50 new triples (1218, 0:00:00.147829)
+- DEBUG -  [P-2] ----- analyze "and" phenomena (2): 0/0 new triple (1218, 0:00:00.018026)
+- INFO -  [P-2] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-2] ----- extract composite classes (1): 0/0 new triple (1218, 0:00:00.065827)
+- DEBUG -  [P-2] ----- extract composite classes (2): 0/0 new triple (1218, 0:00:00.112117)
+- INFO -  [P-2] --- Sequence: classification sequence (2)
+- INFO -  [P-2] ----- classify class net as entity from core arguments: 24/132 new triples (1242, 0:00:00.316464)
+- DEBUG -  [P-2] ----- classify class net as entity from :part relation: 0/0 new triple (1242, 0:00:00.014734)
+- DEBUG -  [P-2] ----- classify class net as entity from degree arguments: 0/0 new triple (1242, 0:00:00.019924)
+- DEBUG -  [P-2] ----- Associate mother to class net from :domain relation: 0/0 new triple (1242, 0:00:00.009451)
+- DEBUG -  [P-2] ----- Propagate individuals to net with same base node: 0/16 new triple (1242, 0:00:00.078878)
+- DEBUG -  [P-2] ----- Propagate individuals to net with domain link: 0/0 new triple (1242, 0:00:00.009240)
+- INFO -  [P-2] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-2] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1242, 0:00:00.007953)
+- DEBUG -  [P-2] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-2] ----- step: Transduction
+- DEBUG -  [P-2] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-2] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-2] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-2] ----- 302 triples extracted during Transduction step
+- INFO -  [P-2] -- Step 3: Generation
+- INFO -  [P-2] --- Sequence: OWL Generation Sequence
+- INFO -  [P-2] ----- generate OWL class: 39/50 new triples (1281, 0:00:00.458812)
+- INFO -  [P-2] ----- generate OWL property: 20/20 new triples (1301, 0:00:00.164214)
+- INFO -  [P-2] ----- generate OWL individual: 8/12 new triples (1309, 0:00:00.129299)
+- DEBUG -  [P-2] ----- generate OWL relation (property): 0/0 new triple (1309, 0:00:00.007581)
+- DEBUG -  [P-2] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-2] ----- step: Generation
+- DEBUG -  [P-2] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-2] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-2] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-2] ----- 67 triples extracted during Generation step
+- DEBUG -  [P-2] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-2] ----- Number of factoids: 82
+- DEBUG -  [P-2] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-2] Success (82 extracted triple(s))
+- INFO - 
+ [P-3]     *** extraction from sentence 3 *** 
+- INFO -  [P-3] -- Work Structure Preparation
+- DEBUG -  [P-3] --- Graph Initialization
+- DEBUG -  [P-3] ----- Configuration Loading
+- DEBUG -  [P-3] -------- RDF Schema (320)
+- DEBUG -  [P-3] -------- Semantic Net Definition (488)
+- DEBUG -  [P-3] -------- Config Parameter Definition (522)
+- DEBUG -  [P-3] ----- Frame Ontology Loading
+- DEBUG -  [P-3] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-3] --- Source Data Import
+- DEBUG -  [P-3] ----- Sentence Loading
+- DEBUG -  [P-3] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-03/WikiAbstract-SolarSystem-03.stog.amr.ttl (639)
+- DEBUG -  [P-3] --- Export work graph as turtle
+- DEBUG -  [P-3] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-3] ----- Sentence (id): WikiAbstract-SolarSystem-03
+- INFO -  [P-3] ----- Sentence (text): Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size.
+- INFO -  [P-3] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-3] ----- Step number: 3
+- INFO -  [P-3] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-3] ----- Total rule number: 0
+- INFO -  [P-3] -- Step 1: Preprocessing
+- INFO -  [P-3] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-3] ----- fix AMR bug (1): 0/0 new triple (639, 0:00:00.019936)
+- INFO -  [P-3] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-3] ----- reclassify AMR-LD concept (1): 10/10 new triples (649, 0:00:00.115749)
+- INFO -  [P-3] ----- reclassify AMR-LD concept (2): 8/8 new triples (657, 0:00:00.053860)
+- INFO -  [P-3] ----- reclassify AMR-LD concept (3): 24/24 new triples (681, 0:00:00.039005)
+- INFO -  [P-3] ----- reclassify AMR-LD concept (4): 28/28 new triples (709, 0:00:00.067741)
+- INFO -  [P-3] ----- reclassify AMR-LD concept (5): 4/4 new triples (713, 0:00:00.029298)
+- DEBUG -  [P-3] ----- reify roles as concept: 0/0 new triple (713, 0:00:00.039924)
+- INFO -  [P-3] ----- reclassify existing variable: 85/85 new triples (798, 0:00:00.019751)
+- DEBUG -  [P-3] ----- add new variable for reified concept: 0/0 new triple (798, 0:00:00.045295)
+- INFO -  [P-3] ----- add AMR leaf for reclassified concept: 63/63 new triples (861, 0:00:00.034374)
+- DEBUG -  [P-3] ----- add AMR leaf for reified concept: 0/0 new triple (861, 0:00:00.011468)
+- INFO -  [P-3] ----- add AMR edge for core relation: 63/63 new triples (924, 0:00:00.150862)
+- DEBUG -  [P-3] ----- add AMR edge for reified concept: 0/0 new triple (924, 0:00:00.021201)
+- INFO -  [P-3] ----- add AMR edge for name relation: 5/5 new triples (929, 0:00:00.022131)
+- INFO -  [P-3] ----- add AMR edge for quant relation: 5/5 new triples (934, 0:00:00.025634)
+- INFO -  [P-3] ----- add AMR edge for polarity relation: 5/5 new triples (939, 0:00:00.032536)
+- INFO -  [P-3] ----- update AMR edge role 1: 24/24 new triples (963, 0:00:00.119839)
+- INFO -  [P-3] ----- add AMR root: 5/5 new triples (968, 0:00:00.012152)
+- DEBUG -  [P-3] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-3] ----- step: Preprocessing
+- DEBUG -  [P-3] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-3] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-3] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-3] ----- 329 triples extracted during Preprocessing step
+- INFO -  [P-3] -- Step 2: Transduction
+- INFO -  [P-3] --- Sequence: atomic extraction sequence
+- INFO -  [P-3] ----- extract atom classes: 54/54 new triples (1022, 0:00:00.291578)
+- INFO -  [P-3] ----- extract atom individuals: 8/8 new triples (1030, 0:00:00.053487)
+- INFO -  [P-3] ----- extract atomic properties: 112/112 new triples (1142, 0:00:00.424317)
+- INFO -  [P-3] ----- extract atom values: 15/15 new triples (1157, 0:00:00.089359)
+- INFO -  [P-3] ----- extract atom phenomena: 21/21 new triples (1178, 0:00:00.101038)
+- INFO -  [P-3] ----- propagate atom relations: 38/118 new triples (1216, 0:00:01.622242)
+- INFO -  [P-3] --- Sequence: classification sequence (1)
+- DEBUG -  [P-3] ----- classify modality phenomena: 0/0 new triple (1216, 0:00:00.021073)
+- INFO -  [P-3] ----- reclassify argument property to class: 21/26 new triples (1237, 0:00:00.115379)
+- INFO -  [P-3] --- Sequence: phenomena analyze sequence (1)
+- INFO -  [P-3] ----- analyze "polarity" phenomena (1): 33/38 new triples (1270, 0:00:00.099987)
+- DEBUG -  [P-3] ----- analyze "polarity" phenomena (2): 0/0 new triple (1270, 0:00:00.018737)
+- DEBUG -  [P-3] ----- analyze "polarity" phenomena (3): 0/0 new triple (1270, 0:00:00.017367)
+- DEBUG -  [P-3] ----- analyze "polarity" phenomena (4): 0/0 new triple (1270, 0:00:00.037910)
+- DEBUG -  [P-3] ----- analyze "polarity" phenomena (5): 0/0 new triple (1270, 0:00:00.039140)
+- DEBUG -  [P-3] ----- analyze modifier phenomena (mod): 0/0 new triple (1270, 0:00:00.011641)
+- DEBUG -  [P-3] ----- classify modality phenomena: 0/0 new triple (1270, 0:00:00.020000)
+- INFO -  [P-3] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-3] ----- analyze "or" phenomena (1): 0/0 new triple (1270, 0:00:00.012874)
+- DEBUG -  [P-3] ----- analyze "or" phenomena (2): 0/0 new triple (1270, 0:00:00.011485)
+- DEBUG -  [P-3] ----- analyze "and" phenomena (1): 0/0 new triple (1270, 0:00:00.012371)
+- DEBUG -  [P-3] ----- analyze "and" phenomena (2): 0/0 new triple (1270, 0:00:00.011823)
+- INFO -  [P-3] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-3] ----- extract composite classes (1): 0/0 new triple (1270, 0:00:00.037848)
+- INFO -  [P-3] ----- extract composite classes (2): 47/50 new triples (1317, 0:00:00.225152)
+- INFO -  [P-3] --- Sequence: classification sequence (2)
+- INFO -  [P-3] ----- classify class net as entity from core arguments: 18/142 new triples (1335, 0:00:00.307596)
+- DEBUG -  [P-3] ----- classify class net as entity from :part relation: 0/0 new triple (1335, 0:00:00.009439)
+- DEBUG -  [P-3] ----- classify class net as entity from degree arguments: 0/0 new triple (1335, 0:00:00.018648)
+- DEBUG -  [P-3] ----- Associate mother to class net from :domain relation: 0/0 new triple (1335, 0:00:00.009167)
+- DEBUG -  [P-3] ----- Propagate individuals to net with same base node: 0/20 new triple (1335, 0:00:00.045221)
+- DEBUG -  [P-3] ----- Propagate individuals to net with domain link: 0/0 new triple (1335, 0:00:00.007702)
+- INFO -  [P-3] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-3] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1335, 0:00:00.031635)
+- DEBUG -  [P-3] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-3] ----- step: Transduction
+- DEBUG -  [P-3] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-3] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-3] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-3] ----- 367 triples extracted during Transduction step
+- INFO -  [P-3] -- Step 3: Generation
+- INFO -  [P-3] --- Sequence: OWL Generation Sequence
+- INFO -  [P-3] ----- generate OWL class: 50/54 new triples (1385, 0:00:00.556660)
+- INFO -  [P-3] ----- generate OWL property: 25/27 new triples (1410, 0:00:00.244624)
+- INFO -  [P-3] ----- generate OWL individual: 4/4 new triples (1414, 0:00:00.044492)
+- DEBUG -  [P-3] ----- generate OWL relation (property): 0/0 new triple (1414, 0:00:00.007352)
+- DEBUG -  [P-3] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-3] ----- step: Generation
+- DEBUG -  [P-3] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-3] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-3] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-3] ----- 79 triples extracted during Generation step
+- DEBUG -  [P-3] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-3] ----- Number of factoids: 85
+- DEBUG -  [P-3] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-3] Success (85 extracted triple(s))
+- INFO - 
+ [P-4]     *** extraction from sentence 4 *** 
+- INFO -  [P-4] -- Work Structure Preparation
+- DEBUG -  [P-4] --- Graph Initialization
+- DEBUG -  [P-4] ----- Configuration Loading
+- DEBUG -  [P-4] -------- RDF Schema (320)
+- DEBUG -  [P-4] -------- Semantic Net Definition (488)
+- DEBUG -  [P-4] -------- Config Parameter Definition (522)
+- DEBUG -  [P-4] ----- Frame Ontology Loading
+- DEBUG -  [P-4] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-4] --- Source Data Import
+- DEBUG -  [P-4] ----- Sentence Loading
+- DEBUG -  [P-4] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-04/WikiAbstract-SolarSystem-04.stog.amr.ttl (609)
+- DEBUG -  [P-4] --- Export work graph as turtle
+- DEBUG -  [P-4] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-4] ----- Sentence (id): WikiAbstract-SolarSystem-04
+- INFO -  [P-4] ----- Sentence (text): The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud.
+- INFO -  [P-4] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-4] ----- Step number: 3
+- INFO -  [P-4] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-4] ----- Total rule number: 0
+- INFO -  [P-4] -- Step 1: Preprocessing
+- INFO -  [P-4] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-4] ----- fix AMR bug (1): 0/0 new triple (609, 0:00:00.016018)
+- INFO -  [P-4] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- DEBUG -  [P-4] ----- reclassify AMR-LD concept (1): 0/0 new triple (609, 0:00:00.096232)
+- INFO -  [P-4] ----- reclassify AMR-LD concept (2): 4/4 new triples (613, 0:00:00.046598)
+- INFO -  [P-4] ----- reclassify AMR-LD concept (3): 12/12 new triples (625, 0:00:00.028807)
+- INFO -  [P-4] ----- reclassify AMR-LD concept (4): 36/36 new triples (661, 0:00:00.048157)
+- DEBUG -  [P-4] ----- reclassify AMR-LD concept (5): 0/0 new triple (661, 0:00:00.033621)
+- DEBUG -  [P-4] ----- reify roles as concept: 0/0 new triple (661, 0:00:00.039252)
+- INFO -  [P-4] ----- reclassify existing variable: 53/53 new triples (714, 0:00:00.018963)
+- DEBUG -  [P-4] ----- add new variable for reified concept: 0/0 new triple (714, 0:00:00.047330)
+- INFO -  [P-4] ----- add AMR leaf for reclassified concept: 39/39 new triples (753, 0:00:00.019239)
+- DEBUG -  [P-4] ----- add AMR leaf for reified concept: 0/0 new triple (753, 0:00:00.010882)
+- INFO -  [P-4] ----- add AMR edge for core relation: 36/36 new triples (789, 0:00:00.091995)
+- DEBUG -  [P-4] ----- add AMR edge for reified concept: 0/0 new triple (789, 0:00:00.021406)
+- INFO -  [P-4] ----- add AMR edge for name relation: 5/5 new triples (794, 0:00:00.018843)
+- INFO -  [P-4] ----- add AMR edge for quant relation: 5/5 new triples (799, 0:00:00.022850)
+- DEBUG -  [P-4] ----- add AMR edge for polarity relation: 0/0 new triple (799, 0:00:00.030518)
+- INFO -  [P-4] ----- update AMR edge role 1: 11/11 new triples (810, 0:00:00.066400)
+- INFO -  [P-4] ----- add AMR root: 5/5 new triples (815, 0:00:00.011577)
+- DEBUG -  [P-4] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-4] ----- step: Preprocessing
+- DEBUG -  [P-4] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-4] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-4] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-4] ----- 206 triples extracted during Preprocessing step
+- INFO -  [P-4] -- Step 2: Transduction
+- INFO -  [P-4] --- Sequence: atomic extraction sequence
+- INFO -  [P-4] ----- extract atom classes: 54/54 new triples (869, 0:00:00.265412)
+- INFO -  [P-4] ----- extract atom individuals: 8/8 new triples (877, 0:00:00.044054)
+- INFO -  [P-4] ----- extract atomic properties: 49/49 new triples (926, 0:00:00.152162)
+- INFO -  [P-4] ----- extract atom values: 10/10 new triples (936, 0:00:00.053095)
+- DEBUG -  [P-4] ----- extract atom phenomena: 0/0 new triple (936, 0:00:00.009254)
+- INFO -  [P-4] ----- propagate atom relations: 20/52 new triples (956, 0:00:01.040855)
+- INFO -  [P-4] --- Sequence: classification sequence (1)
+- DEBUG -  [P-4] ----- classify modality phenomena: 0/0 new triple (956, 0:00:00.022349)
+- INFO -  [P-4] ----- reclassify argument property to class: 11/28 new triples (967, 0:00:00.119833)
+- INFO -  [P-4] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-4] ----- analyze "polarity" phenomena (1): 0/0 new triple (967, 0:00:00.007615)
+- DEBUG -  [P-4] ----- analyze "polarity" phenomena (2): 0/0 new triple (967, 0:00:00.017248)
+- DEBUG -  [P-4] ----- analyze "polarity" phenomena (3): 0/0 new triple (967, 0:00:00.020528)
+- DEBUG -  [P-4] ----- analyze "polarity" phenomena (4): 0/0 new triple (967, 0:00:00.040047)
+- DEBUG -  [P-4] ----- analyze "polarity" phenomena (5): 0/0 new triple (967, 0:00:00.039963)
+- INFO -  [P-4] ----- analyze modifier phenomena (mod): 45/56 new triples (1012, 0:00:00.237124)
+- DEBUG -  [P-4] ----- classify modality phenomena: 0/0 new triple (1012, 0:00:00.026681)
+- INFO -  [P-4] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-4] ----- analyze "or" phenomena (1): 0/0 new triple (1012, 0:00:00.014307)
+- DEBUG -  [P-4] ----- analyze "or" phenomena (2): 0/0 new triple (1012, 0:00:00.015485)
+- DEBUG -  [P-4] ----- analyze "and" phenomena (1): 0/0 new triple (1012, 0:00:00.014039)
+- DEBUG -  [P-4] ----- analyze "and" phenomena (2): 0/0 new triple (1012, 0:00:00.015098)
+- INFO -  [P-4] --- Sequence: composite class extraction sequence
+- INFO -  [P-4] ----- extract composite classes (1): 26/30 new triples (1038, 0:00:00.152465)
+- DEBUG -  [P-4] ----- extract composite classes (2): 0/0 new triple (1038, 0:00:00.031499)
+- INFO -  [P-4] --- Sequence: classification sequence (2)
+- INFO -  [P-4] ----- classify class net as entity from core arguments: 12/148 new triples (1050, 0:00:00.239499)
+- DEBUG -  [P-4] ----- classify class net as entity from :part relation: 0/0 new triple (1050, 0:00:00.009426)
+- DEBUG -  [P-4] ----- classify class net as entity from degree arguments: 0/0 new triple (1050, 0:00:00.018417)
+- DEBUG -  [P-4] ----- Associate mother to class net from :domain relation: 0/0 new triple (1050, 0:00:00.009155)
+- DEBUG -  [P-4] ----- Propagate individuals to net with same base node: 0/16 new triple (1050, 0:00:00.082393)
+- DEBUG -  [P-4] ----- Propagate individuals to net with domain link: 0/0 new triple (1050, 0:00:00.008728)
+- INFO -  [P-4] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-4] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1050, 0:00:00.020775)
+- DEBUG -  [P-4] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-4] ----- step: Transduction
+- DEBUG -  [P-4] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-4] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-4] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-4] ----- 235 triples extracted during Transduction step
+- INFO -  [P-4] -- Step 3: Generation
+- INFO -  [P-4] --- Sequence: OWL Generation Sequence
+- INFO -  [P-4] ----- generate OWL class: 49/49 new triples (1099, 0:00:00.461889)
+- INFO -  [P-4] ----- generate OWL property: 12/12 new triples (1111, 0:00:00.105685)
+- INFO -  [P-4] ----- generate OWL individual: 8/12 new triples (1119, 0:00:00.158387)
+- DEBUG -  [P-4] ----- generate OWL relation (property): 0/0 new triple (1119, 0:00:00.009503)
+- DEBUG -  [P-4] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-4] ----- step: Generation
+- DEBUG -  [P-4] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-4] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-4] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-4] ----- 69 triples extracted during Generation step
+- DEBUG -  [P-4] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-4] ----- Number of factoids: 73
+- DEBUG -  [P-4] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-4] Success (73 extracted triple(s))
+- INFO - 
+ [P-5]     *** extraction from sentence 5 *** 
+- INFO -  [P-5] -- Work Structure Preparation
+- DEBUG -  [P-5] --- Graph Initialization
+- DEBUG -  [P-5] ----- Configuration Loading
+- DEBUG -  [P-5] -------- RDF Schema (320)
+- DEBUG -  [P-5] -------- Semantic Net Definition (488)
+- DEBUG -  [P-5] -------- Config Parameter Definition (522)
+- DEBUG -  [P-5] ----- Frame Ontology Loading
+- DEBUG -  [P-5] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-5] --- Source Data Import
+- DEBUG -  [P-5] ----- Sentence Loading
+- DEBUG -  [P-5] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-05/WikiAbstract-SolarSystem-05.stog.amr.ttl (602)
+- DEBUG -  [P-5] --- Export work graph as turtle
+- DEBUG -  [P-5] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-5] ----- Sentence (id): WikiAbstract-SolarSystem-05
+- INFO -  [P-5] ----- Sentence (text): The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter.
+- INFO -  [P-5] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-5] ----- Step number: 3
+- INFO -  [P-5] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-5] ----- Total rule number: 0
+- INFO -  [P-5] -- Step 1: Preprocessing
+- INFO -  [P-5] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-5] ----- fix AMR bug (1): 0/0 new triple (602, 0:00:00.016255)
+- INFO -  [P-5] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-5] ----- reclassify AMR-LD concept (1): 5/5 new triples (607, 0:00:00.084361)
+- DEBUG -  [P-5] ----- reclassify AMR-LD concept (2): 0/0 new triple (607, 0:00:00.043775)
+- INFO -  [P-5] ----- reclassify AMR-LD concept (3): 12/12 new triples (619, 0:00:00.034654)
+- INFO -  [P-5] ----- reclassify AMR-LD concept (4): 20/20 new triples (639, 0:00:00.126882)
+- INFO -  [P-5] ----- reclassify AMR-LD concept (5): 4/4 new triples (643, 0:00:00.034269)
+- INFO -  [P-5] ----- reify roles as concept: 5/5 new triples (648, 0:00:00.045958)
+- INFO -  [P-5] ----- reclassify existing variable: 49/49 new triples (697, 0:00:00.019711)
+- INFO -  [P-5] ----- add new variable for reified concept: 4/4 new triples (701, 0:00:00.045237)
+- INFO -  [P-5] ----- add AMR leaf for reclassified concept: 36/36 new triples (737, 0:00:00.021515)
+- INFO -  [P-5] ----- add AMR leaf for reified concept: 4/4 new triples (741, 0:00:00.011305)
+- INFO -  [P-5] ----- add AMR edge for core relation: 30/30 new triples (771, 0:00:00.091602)
+- INFO -  [P-5] ----- add AMR edge for reified concept: 6/6 new triples (777, 0:00:00.043360)
+- INFO -  [P-5] ----- add AMR edge for name relation: 5/5 new triples (782, 0:00:00.018601)
+- DEBUG -  [P-5] ----- add AMR edge for quant relation: 0/0 new triple (782, 0:00:00.023784)
+- DEBUG -  [P-5] ----- add AMR edge for polarity relation: 0/0 new triple (782, 0:00:00.027677)
+- INFO -  [P-5] ----- update AMR edge role 1: 13/13 new triples (795, 0:00:00.061268)
+- INFO -  [P-5] ----- add AMR root: 5/5 new triples (800, 0:00:00.009968)
+- DEBUG -  [P-5] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-5] ----- step: Preprocessing
+- DEBUG -  [P-5] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-5] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-5] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-5] ----- 198 triples extracted during Preprocessing step
+- INFO -  [P-5] -- Step 2: Transduction
+- INFO -  [P-5] --- Sequence: atomic extraction sequence
+- INFO -  [P-5] ----- extract atom classes: 48/48 new triples (848, 0:00:00.232029)
+- INFO -  [P-5] ----- extract atom individuals: 8/8 new triples (856, 0:00:00.045349)
+- INFO -  [P-5] ----- extract atomic properties: 51/51 new triples (907, 0:00:00.149824)
+- INFO -  [P-5] ----- extract atom values: 5/5 new triples (912, 0:00:00.028420)
+- INFO -  [P-5] ----- extract atom phenomena: 7/7 new triples (919, 0:00:00.042978)
+- INFO -  [P-5] ----- propagate atom relations: 23/62 new triples (942, 0:00:00.939293)
+- INFO -  [P-5] --- Sequence: classification sequence (1)
+- DEBUG -  [P-5] ----- classify modality phenomena: 0/0 new triple (942, 0:00:00.029978)
+- DEBUG -  [P-5] ----- reclassify argument property to class: 0/0 new triple (942, 0:00:00.027932)
+- INFO -  [P-5] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-5] ----- analyze "polarity" phenomena (1): 0/0 new triple (942, 0:00:00.009316)
+- DEBUG -  [P-5] ----- analyze "polarity" phenomena (2): 0/0 new triple (942, 0:00:00.016936)
+- DEBUG -  [P-5] ----- analyze "polarity" phenomena (3): 0/0 new triple (942, 0:00:00.017556)
+- DEBUG -  [P-5] ----- analyze "polarity" phenomena (4): 0/0 new triple (942, 0:00:00.045759)
+- DEBUG -  [P-5] ----- analyze "polarity" phenomena (5): 0/0 new triple (942, 0:00:00.038732)
+- INFO -  [P-5] ----- analyze modifier phenomena (mod): 21/24 new triples (963, 0:00:00.092939)
+- DEBUG -  [P-5] ----- classify modality phenomena: 0/0 new triple (963, 0:00:00.020875)
+- INFO -  [P-5] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-5] ----- analyze "or" phenomena (1): 0/0 new triple (963, 0:00:00.013078)
+- DEBUG -  [P-5] ----- analyze "or" phenomena (2): 0/0 new triple (963, 0:00:00.016151)
+- DEBUG -  [P-5] ----- analyze "and" phenomena (1): 0/0 new triple (963, 0:00:00.013729)
+- DEBUG -  [P-5] ----- analyze "and" phenomena (2): 0/0 new triple (963, 0:00:00.011009)
+- INFO -  [P-5] --- Sequence: composite class extraction sequence
+- INFO -  [P-5] ----- extract composite classes (1): 23/24 new triples (986, 0:00:00.132331)
+- INFO -  [P-5] ----- extract composite classes (2): 25/28 new triples (1011, 0:00:00.130946)
+- INFO -  [P-5] --- Sequence: classification sequence (2)
+- INFO -  [P-5] ----- classify class net as entity from core arguments: 10/54 new triples (1021, 0:00:00.141423)
+- DEBUG -  [P-5] ----- classify class net as entity from :part relation: 0/0 new triple (1021, 0:00:00.011349)
+- DEBUG -  [P-5] ----- classify class net as entity from degree arguments: 0/0 new triple (1021, 0:00:00.017372)
+- DEBUG -  [P-5] ----- Associate mother to class net from :domain relation: 0/0 new triple (1021, 0:00:00.010456)
+- DEBUG -  [P-5] ----- Propagate individuals to net with same base node: 0/14 new triple (1021, 0:00:00.064213)
+- DEBUG -  [P-5] ----- Propagate individuals to net with domain link: 0/0 new triple (1021, 0:00:00.007805)
+- INFO -  [P-5] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-5] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1021, 0:00:00.032818)
+- DEBUG -  [P-5] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-5] ----- step: Transduction
+- DEBUG -  [P-5] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-5] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-5] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-5] ----- 221 triples extracted during Transduction step
+- INFO -  [P-5] -- Step 3: Generation
+- INFO -  [P-5] --- Sequence: OWL Generation Sequence
+- INFO -  [P-5] ----- generate OWL class: 37/45 new triples (1058, 0:00:00.510588)
+- INFO -  [P-5] ----- generate OWL property: 16/16 new triples (1074, 0:00:00.128053)
+- INFO -  [P-5] ----- generate OWL individual: 6/8 new triples (1080, 0:00:00.088654)
+- DEBUG -  [P-5] ----- generate OWL relation (property): 0/0 new triple (1080, 0:00:00.007384)
+- DEBUG -  [P-5] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-5] ----- step: Generation
+- DEBUG -  [P-5] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-5] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-5] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-5] ----- 59 triples extracted during Generation step
+- DEBUG -  [P-5] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-5] ----- Number of factoids: 69
+- DEBUG -  [P-5] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-5] Success (69 extracted triple(s))
+- INFO - 
+ [P-6]     *** extraction from sentence 6 *** 
+- INFO -  [P-6] -- Work Structure Preparation
+- DEBUG -  [P-6] --- Graph Initialization
+- DEBUG -  [P-6] ----- Configuration Loading
+- DEBUG -  [P-6] -------- RDF Schema (320)
+- DEBUG -  [P-6] -------- Semantic Net Definition (488)
+- DEBUG -  [P-6] -------- Config Parameter Definition (522)
+- DEBUG -  [P-6] ----- Frame Ontology Loading
+- DEBUG -  [P-6] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-6] --- Source Data Import
+- DEBUG -  [P-6] ----- Sentence Loading
+- DEBUG -  [P-6] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-06/WikiAbstract-SolarSystem-06.stog.amr.ttl (618)
+- DEBUG -  [P-6] --- Export work graph as turtle
+- DEBUG -  [P-6] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-6] ----- Sentence (id): WikiAbstract-SolarSystem-06
+- INFO -  [P-6] ----- Sentence (text): The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal.
+- INFO -  [P-6] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-6] ----- Step number: 3
+- INFO -  [P-6] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-6] ----- Total rule number: 0
+- INFO -  [P-6] -- Step 1: Preprocessing
+- INFO -  [P-6] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-6] ----- fix AMR bug (1): 0/0 new triple (618, 0:00:00.017476)
+- INFO -  [P-6] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-6] ----- reclassify AMR-LD concept (1): 10/10 new triples (628, 0:00:00.091280)
+- INFO -  [P-6] ----- reclassify AMR-LD concept (2): 4/4 new triples (632, 0:00:00.046389)
+- INFO -  [P-6] ----- reclassify AMR-LD concept (3): 4/4 new triples (636, 0:00:00.033085)
+- INFO -  [P-6] ----- reclassify AMR-LD concept (4): 28/28 new triples (664, 0:00:00.049507)
+- INFO -  [P-6] ----- reclassify AMR-LD concept (5): 4/4 new triples (668, 0:00:00.029941)
+- INFO -  [P-6] ----- reify roles as concept: 5/5 new triples (673, 0:00:00.040666)
+- INFO -  [P-6] ----- reclassify existing variable: 72/72 new triples (745, 0:00:00.018559)
+- INFO -  [P-6] ----- add new variable for reified concept: 4/4 new triples (749, 0:00:00.047806)
+- INFO -  [P-6] ----- add AMR leaf for reclassified concept: 51/51 new triples (800, 0:00:00.026262)
+- INFO -  [P-6] ----- add AMR leaf for reified concept: 4/4 new triples (804, 0:00:00.011952)
+- INFO -  [P-6] ----- add AMR edge for core relation: 45/45 new triples (849, 0:00:00.105335)
+- INFO -  [P-6] ----- add AMR edge for reified concept: 6/6 new triples (855, 0:00:00.070052)
+- INFO -  [P-6] ----- add AMR edge for name relation: 20/20 new triples (875, 0:00:00.021972)
+- DEBUG -  [P-6] ----- add AMR edge for quant relation: 0/0 new triple (875, 0:00:00.021349)
+- DEBUG -  [P-6] ----- add AMR edge for polarity relation: 0/0 new triple (875, 0:00:00.029088)
+- INFO -  [P-6] ----- update AMR edge role 1: 21/21 new triples (896, 0:00:00.089697)
+- INFO -  [P-6] ----- add AMR root: 5/5 new triples (901, 0:00:00.009888)
+- DEBUG -  [P-6] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-6] ----- step: Preprocessing
+- DEBUG -  [P-6] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-6] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-6] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-6] ----- 283 triples extracted during Preprocessing step
+- INFO -  [P-6] -- Step 2: Transduction
+- INFO -  [P-6] --- Sequence: atomic extraction sequence
+- INFO -  [P-6] ----- extract atom classes: 72/72 new triples (973, 0:00:00.340720)
+- INFO -  [P-6] ----- extract atom individuals: 32/32 new triples (1005, 0:00:00.140009)
+- INFO -  [P-6] ----- extract atomic properties: 38/38 new triples (1043, 0:00:00.114924)
+- INFO -  [P-6] ----- extract atom values: 20/20 new triples (1063, 0:00:00.102048)
+- INFO -  [P-6] ----- extract atom phenomena: 21/21 new triples (1084, 0:00:00.100624)
+- INFO -  [P-6] ----- propagate atom relations: 40/124 new triples (1124, 0:00:01.968731)
+- INFO -  [P-6] --- Sequence: classification sequence (1)
+- DEBUG -  [P-6] ----- classify modality phenomena: 0/0 new triple (1124, 0:00:00.020750)
+- DEBUG -  [P-6] ----- reclassify argument property to class: 0/0 new triple (1124, 0:00:00.025254)
+- INFO -  [P-6] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-6] ----- analyze "polarity" phenomena (1): 0/0 new triple (1124, 0:00:00.008324)
+- DEBUG -  [P-6] ----- analyze "polarity" phenomena (2): 0/0 new triple (1124, 0:00:00.017518)
+- DEBUG -  [P-6] ----- analyze "polarity" phenomena (3): 0/0 new triple (1124, 0:00:00.018142)
+- DEBUG -  [P-6] ----- analyze "polarity" phenomena (4): 0/0 new triple (1124, 0:00:00.042790)
+- DEBUG -  [P-6] ----- analyze "polarity" phenomena (5): 0/0 new triple (1124, 0:00:00.039504)
+- INFO -  [P-6] ----- analyze modifier phenomena (mod): 42/48 new triples (1166, 0:00:00.176677)
+- DEBUG -  [P-6] ----- classify modality phenomena: 0/0 new triple (1166, 0:00:00.023189)
+- INFO -  [P-6] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-6] ----- analyze "or" phenomena (1): 0/0 new triple (1166, 0:00:00.012259)
+- DEBUG -  [P-6] ----- analyze "or" phenomena (2): 0/0 new triple (1166, 0:00:00.014590)
+- INFO -  [P-6] ----- analyze "and" phenomena (1): 10/106 new triples (1176, 0:00:00.422038)
+- INFO -  [P-6] ----- analyze "and" phenomena (2): 4/44 new triples (1180, 0:00:00.152882)
+- INFO -  [P-6] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-6] ----- extract composite classes (1): 0/0 new triple (1180, 0:00:00.038759)
+- DEBUG -  [P-6] ----- extract composite classes (2): 0/0 new triple (1180, 0:00:00.035252)
+- INFO -  [P-6] --- Sequence: classification sequence (2)
+- INFO -  [P-6] ----- classify class net as entity from core arguments: 18/185 new triples (1198, 0:00:00.306428)
+- DEBUG -  [P-6] ----- classify class net as entity from :part relation: 0/0 new triple (1198, 0:00:00.009935)
+- DEBUG -  [P-6] ----- classify class net as entity from degree arguments: 0/0 new triple (1198, 0:00:00.020031)
+- DEBUG -  [P-6] ----- Associate mother to class net from :domain relation: 0/0 new triple (1198, 0:00:00.013037)
+- DEBUG -  [P-6] ----- Propagate individuals to net with same base node: 0/52 new triple (1198, 0:00:00.181641)
+- DEBUG -  [P-6] ----- Propagate individuals to net with domain link: 0/0 new triple (1198, 0:00:00.009958)
+- INFO -  [P-6] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-6] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1198, 0:00:00.008482)
+- DEBUG -  [P-6] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-6] ----- step: Transduction
+- DEBUG -  [P-6] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-6] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-6] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-6] ----- 297 triples extracted during Transduction step
+- INFO -  [P-6] -- Step 3: Generation
+- INFO -  [P-6] --- Sequence: OWL Generation Sequence
+- INFO -  [P-6] ----- generate OWL class: 38/38 new triples (1236, 0:00:00.453611)
+- INFO -  [P-6] ----- generate OWL property: 12/12 new triples (1248, 0:00:00.116104)
+- INFO -  [P-6] ----- generate OWL individual: 20/24 new triples (1268, 0:00:00.258802)
+- DEBUG -  [P-6] ----- generate OWL relation (property): 0/0 new triple (1268, 0:00:00.007735)
+- DEBUG -  [P-6] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-6] ----- step: Generation
+- DEBUG -  [P-6] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-6] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-6] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-6] ----- 70 triples extracted during Generation step
+- DEBUG -  [P-6] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-6] ----- Number of factoids: 74
+- DEBUG -  [P-6] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-6] Success (74 extracted triple(s))
+- INFO - 
+ [P-7]     *** extraction from sentence 7 *** 
+- INFO -  [P-7] -- Work Structure Preparation
+- DEBUG -  [P-7] --- Graph Initialization
+- DEBUG -  [P-7] ----- Configuration Loading
+- DEBUG -  [P-7] -------- RDF Schema (320)
+- DEBUG -  [P-7] -------- Semantic Net Definition (488)
+- DEBUG -  [P-7] -------- Config Parameter Definition (522)
+- DEBUG -  [P-7] ----- Frame Ontology Loading
+- DEBUG -  [P-7] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-7] --- Source Data Import
+- DEBUG -  [P-7] ----- Sentence Loading
+- DEBUG -  [P-7] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-07/WikiAbstract-SolarSystem-07.stog.amr.ttl (594)
+- DEBUG -  [P-7] --- Export work graph as turtle
+- DEBUG -  [P-7] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-7] ----- Sentence (id): WikiAbstract-SolarSystem-07
+- INFO -  [P-7] ----- Sentence (text): The four outer system planets are giant planets, being substantially more massive than the terrestrials.
+- INFO -  [P-7] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-7] ----- Step number: 3
+- INFO -  [P-7] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-7] ----- Total rule number: 0
+- INFO -  [P-7] -- Step 1: Preprocessing
+- INFO -  [P-7] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-7] ----- fix AMR bug (1): 0/0 new triple (594, 0:00:00.018311)
+- INFO -  [P-7] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-7] ----- reclassify AMR-LD concept (1): 5/5 new triples (599, 0:00:00.078150)
+- INFO -  [P-7] ----- reclassify AMR-LD concept (2): 4/4 new triples (603, 0:00:00.046358)
+- DEBUG -  [P-7] ----- reclassify AMR-LD concept (3): 0/0 new triple (603, 0:00:00.030462)
+- INFO -  [P-7] ----- reclassify AMR-LD concept (4): 24/24 new triples (627, 0:00:00.055353)
+- INFO -  [P-7] ----- reclassify AMR-LD concept (5): 4/4 new triples (631, 0:00:00.029847)
+- INFO -  [P-7] ----- reify roles as concept: 5/5 new triples (636, 0:00:00.044847)
+- INFO -  [P-7] ----- reclassify existing variable: 40/40 new triples (676, 0:00:00.020478)
+- INFO -  [P-7] ----- add new variable for reified concept: 4/4 new triples (680, 0:00:00.060694)
+- INFO -  [P-7] ----- add AMR leaf for reclassified concept: 30/30 new triples (710, 0:00:00.020876)
+- INFO -  [P-7] ----- add AMR leaf for reified concept: 4/4 new triples (714, 0:00:00.013733)
+- INFO -  [P-7] ----- add AMR edge for core relation: 24/24 new triples (738, 0:00:00.087421)
+- INFO -  [P-7] ----- add AMR edge for reified concept: 6/6 new triples (744, 0:00:00.037805)
+- DEBUG -  [P-7] ----- add AMR edge for name relation: 0/0 new triple (744, 0:00:00.022529)
+- INFO -  [P-7] ----- add AMR edge for quant relation: 5/5 new triples (749, 0:00:00.019702)
+- DEBUG -  [P-7] ----- add AMR edge for polarity relation: 0/0 new triple (749, 0:00:00.026571)
+- INFO -  [P-7] ----- update AMR edge role 1: 10/10 new triples (759, 0:00:00.059267)
+- INFO -  [P-7] ----- add AMR root: 5/5 new triples (764, 0:00:00.011082)
+- DEBUG -  [P-7] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-7] ----- step: Preprocessing
+- DEBUG -  [P-7] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-7] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-7] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-7] ----- 170 triples extracted during Preprocessing step
+- INFO -  [P-7] -- Step 2: Transduction
+- INFO -  [P-7] --- Sequence: atomic extraction sequence
+- INFO -  [P-7] ----- extract atom classes: 48/48 new triples (812, 0:00:00.239976)
+- DEBUG -  [P-7] ----- extract atom individuals: 0/0 new triple (812, 0:00:00.015698)
+- INFO -  [P-7] ----- extract atomic properties: 24/24 new triples (836, 0:00:00.076528)
+- INFO -  [P-7] ----- extract atom values: 5/5 new triples (841, 0:00:00.036098)
+- INFO -  [P-7] ----- extract atom phenomena: 7/7 new triples (848, 0:00:00.038125)
+- INFO -  [P-7] ----- propagate atom relations: 18/38 new triples (866, 0:00:00.701454)
+- INFO -  [P-7] --- Sequence: classification sequence (1)
+- DEBUG -  [P-7] ----- classify modality phenomena: 0/0 new triple (866, 0:00:00.020776)
+- DEBUG -  [P-7] ----- reclassify argument property to class: 0/0 new triple (866, 0:00:00.105231)
+- INFO -  [P-7] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-7] ----- analyze "polarity" phenomena (1): 0/0 new triple (866, 0:00:00.008900)
+- DEBUG -  [P-7] ----- analyze "polarity" phenomena (2): 0/0 new triple (866, 0:00:00.019706)
+- DEBUG -  [P-7] ----- analyze "polarity" phenomena (3): 0/0 new triple (866, 0:00:00.019786)
+- DEBUG -  [P-7] ----- analyze "polarity" phenomena (4): 0/0 new triple (866, 0:00:00.038554)
+- DEBUG -  [P-7] ----- analyze "polarity" phenomena (5): 0/0 new triple (866, 0:00:00.042657)
+- INFO -  [P-7] ----- analyze modifier phenomena (mod): 43/50 new triples (909, 0:00:00.203856)
+- DEBUG -  [P-7] ----- classify modality phenomena: 0/0 new triple (909, 0:00:00.027197)
+- INFO -  [P-7] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-7] ----- analyze "or" phenomena (1): 0/0 new triple (909, 0:00:00.015532)
+- DEBUG -  [P-7] ----- analyze "or" phenomena (2): 0/0 new triple (909, 0:00:00.016415)
+- DEBUG -  [P-7] ----- analyze "and" phenomena (1): 0/0 new triple (909, 0:00:00.017922)
+- DEBUG -  [P-7] ----- analyze "and" phenomena (2): 0/0 new triple (909, 0:00:00.013968)
+- INFO -  [P-7] --- Sequence: composite class extraction sequence
+- INFO -  [P-7] ----- extract composite classes (1): 25/27 new triples (934, 0:00:00.135948)
+- DEBUG -  [P-7] ----- extract composite classes (2): 0/0 new triple (934, 0:00:00.031070)
+- INFO -  [P-7] --- Sequence: classification sequence (2)
+- INFO -  [P-7] ----- classify class net as entity from core arguments: 12/45 new triples (946, 0:00:00.130951)
+- DEBUG -  [P-7] ----- classify class net as entity from :part relation: 0/0 new triple (946, 0:00:00.009152)
+- DEBUG -  [P-7] ----- classify class net as entity from degree arguments: 0/0 new triple (946, 0:00:00.018363)
+- INFO -  [P-7] ----- Associate mother to class net from :domain relation: 2/148 new triples (948, 0:00:00.285253)
+- DEBUG -  [P-7] ----- Propagate individuals to net with same base node: 0/4 new triple (948, 0:00:00.043471)
+- DEBUG -  [P-7] ----- Propagate individuals to net with domain link: 0/0 new triple (948, 0:00:00.008543)
+- INFO -  [P-7] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-7] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (948, 0:00:00.026695)
+- DEBUG -  [P-7] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-7] ----- step: Transduction
+- DEBUG -  [P-7] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-7] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-7] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-7] ----- 184 triples extracted during Transduction step
+- INFO -  [P-7] -- Step 3: Generation
+- INFO -  [P-7] --- Sequence: OWL Generation Sequence
+- INFO -  [P-7] ----- generate OWL class: 41/49 new triples (989, 0:00:00.437027)
+- INFO -  [P-7] ----- generate OWL property: 8/8 new triples (997, 0:00:00.078494)
+- INFO -  [P-7] ----- generate OWL individual: 4/8 new triples (1001, 0:00:00.090428)
+- DEBUG -  [P-7] ----- generate OWL relation (property): 0/0 new triple (1001, 0:00:00.007388)
+- DEBUG -  [P-7] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-7] ----- step: Generation
+- DEBUG -  [P-7] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-7] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-7] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-7] ----- 53 triples extracted during Generation step
+- DEBUG -  [P-7] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-7] ----- Number of factoids: 65
+- DEBUG -  [P-7] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-7] Success (65 extracted triple(s))
+- INFO - 
+ [P-8]     *** extraction from sentence 8 *** 
+- INFO -  [P-8] -- Work Structure Preparation
+- DEBUG -  [P-8] --- Graph Initialization
+- DEBUG -  [P-8] ----- Configuration Loading
+- DEBUG -  [P-8] -------- RDF Schema (320)
+- DEBUG -  [P-8] -------- Semantic Net Definition (488)
+- DEBUG -  [P-8] -------- Config Parameter Definition (522)
+- DEBUG -  [P-8] ----- Frame Ontology Loading
+- DEBUG -  [P-8] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-8] --- Source Data Import
+- DEBUG -  [P-8] ----- Sentence Loading
+- DEBUG -  [P-8] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-08/WikiAbstract-SolarSystem-08.stog.amr.ttl (676)
+- DEBUG -  [P-8] --- Export work graph as turtle
+- DEBUG -  [P-8] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-8] ----- Sentence (id): WikiAbstract-SolarSystem-08
+- INFO -  [P-8] ----- Sentence (text): The two largest planets, Jupiter and Saturn, are gas giants, being composed mainly of hydrogen and helium; the two outermost planets, Uranus and Neptune, are ice giants, being composed mostly of substances with relatively high melting points compared with hydrogen and helium, called volatiles, such as water, ammonia and methane.
+- INFO -  [P-8] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-8] ----- Step number: 3
+- INFO -  [P-8] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-8] ----- Total rule number: 0
+- INFO -  [P-8] -- Step 1: Preprocessing
+- INFO -  [P-8] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-8] ----- fix AMR bug (1): 0/0 new triple (676, 0:00:00.016733)
+- INFO -  [P-8] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-8] ----- reclassify AMR-LD concept (1): 15/15 new triples (691, 0:00:00.130704)
+- INFO -  [P-8] ----- reclassify AMR-LD concept (2): 8/8 new triples (699, 0:00:00.055289)
+- INFO -  [P-8] ----- reclassify AMR-LD concept (3): 20/20 new triples (719, 0:00:00.031981)
+- INFO -  [P-8] ----- reclassify AMR-LD concept (4): 52/52 new triples (771, 0:00:00.055611)
+- INFO -  [P-8] ----- reclassify AMR-LD concept (5): 4/4 new triples (775, 0:00:00.031660)
+- DEBUG -  [P-8] ----- reify roles as concept: 0/0 new triple (775, 0:00:00.039299)
+- INFO -  [P-8] ----- reclassify existing variable: 152/152 new triples (927, 0:00:00.029808)
+- DEBUG -  [P-8] ----- add new variable for reified concept: 0/0 new triple (927, 0:00:00.046229)
+- INFO -  [P-8] ----- add AMR leaf for reclassified concept: 111/111 new triples (1038, 0:00:00.143519)
+- DEBUG -  [P-8] ----- add AMR leaf for reified concept: 0/0 new triple (1038, 0:00:00.012494)
+- INFO -  [P-8] ----- add AMR edge for core relation: 108/108 new triples (1146, 0:00:00.211527)
+- DEBUG -  [P-8] ----- add AMR edge for reified concept: 0/0 new triple (1146, 0:00:00.020160)
+- INFO -  [P-8] ----- add AMR edge for name relation: 20/20 new triples (1166, 0:00:00.034053)
+- DEBUG -  [P-8] ----- add AMR edge for quant relation: 0/0 new triple (1166, 0:00:00.041535)
+- DEBUG -  [P-8] ----- add AMR edge for polarity relation: 0/0 new triple (1166, 0:00:00.040016)
+- INFO -  [P-8] ----- update AMR edge role 1: 39/39 new triples (1205, 0:00:00.161359)
+- INFO -  [P-8] ----- add AMR root: 5/5 new triples (1210, 0:00:00.012102)
+- DEBUG -  [P-8] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-8] ----- step: Preprocessing
+- DEBUG -  [P-8] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-8] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-8] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-8] ----- 534 triples extracted during Preprocessing step
+- INFO -  [P-8] -- Step 2: Transduction
+- INFO -  [P-8] --- Sequence: atomic extraction sequence
+- INFO -  [P-8] ----- extract atom classes: 120/120 new triples (1330, 0:00:00.588598)
+- INFO -  [P-8] ----- extract atom individuals: 32/32 new triples (1362, 0:00:00.152798)
+- INFO -  [P-8] ----- extract atomic properties: 109/109 new triples (1471, 0:00:00.326610)
+- INFO -  [P-8] ----- extract atom values: 20/20 new triples (1491, 0:00:00.099976)
+- INFO -  [P-8] ----- extract atom phenomena: 56/56 new triples (1547, 0:00:00.252079)
+- INFO -  [P-8] ----- propagate atom relations: 57/196 new triples (1604, 0:00:03.844547)
+- INFO -  [P-8] --- Sequence: classification sequence (1)
+- DEBUG -  [P-8] ----- classify modality phenomena: 0/0 new triple (1604, 0:00:00.022799)
+- INFO -  [P-8] ----- reclassify argument property to class: 10/12 new triples (1614, 0:00:00.075088)
+- INFO -  [P-8] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-8] ----- analyze "polarity" phenomena (1): 0/0 new triple (1614, 0:00:00.007631)
+- DEBUG -  [P-8] ----- analyze "polarity" phenomena (2): 0/0 new triple (1614, 0:00:00.017651)
+- DEBUG -  [P-8] ----- analyze "polarity" phenomena (3): 0/0 new triple (1614, 0:00:00.021324)
+- DEBUG -  [P-8] ----- analyze "polarity" phenomena (4): 0/0 new triple (1614, 0:00:00.044979)
+- DEBUG -  [P-8] ----- analyze "polarity" phenomena (5): 0/0 new triple (1614, 0:00:00.040674)
+- INFO -  [P-8] ----- analyze modifier phenomena (mod): 45/54 new triples (1659, 0:00:00.178587)
+- DEBUG -  [P-8] ----- classify modality phenomena: 0/0 new triple (1659, 0:00:00.021323)
+- INFO -  [P-8] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-8] ----- analyze "or" phenomena (1): 0/0 new triple (1659, 0:00:00.012484)
+- DEBUG -  [P-8] ----- analyze "or" phenomena (2): 0/0 new triple (1659, 0:00:00.011921)
+- INFO -  [P-8] ----- analyze "and" phenomena (1): 6/54 new triples (1665, 0:00:00.437125)
+- INFO -  [P-8] ----- analyze "and" phenomena (2): 4/44 new triples (1669, 0:00:00.297334)
+- INFO -  [P-8] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-8] ----- extract composite classes (1): 0/0 new triple (1669, 0:00:00.031478)
+- INFO -  [P-8] ----- extract composite classes (2): 87/106 new triples (1756, 0:00:00.417526)
+- INFO -  [P-8] --- Sequence: classification sequence (2)
+- INFO -  [P-8] ----- classify class net as entity from core arguments: 34/159 new triples (1790, 0:00:00.439501)
+- DEBUG -  [P-8] ----- classify class net as entity from :part relation: 0/0 new triple (1790, 0:00:00.011241)
+- DEBUG -  [P-8] ----- classify class net as entity from degree arguments: 0/0 new triple (1790, 0:00:00.021031)
+- DEBUG -  [P-8] ----- Associate mother to class net from :domain relation: 0/0 new triple (1790, 0:00:00.010277)
+- DEBUG -  [P-8] ----- Propagate individuals to net with same base node: 0/52 new triple (1790, 0:00:00.185931)
+- DEBUG -  [P-8] ----- Propagate individuals to net with domain link: 0/0 new triple (1790, 0:00:00.010578)
+- INFO -  [P-8] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-8] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1790, 0:00:00.058660)
+- DEBUG -  [P-8] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-8] ----- step: Transduction
+- DEBUG -  [P-8] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-8] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-8] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-8] ----- 580 triples extracted during Transduction step
+- INFO -  [P-8] -- Step 3: Generation
+- INFO -  [P-8] --- Sequence: OWL Generation Sequence
+- INFO -  [P-8] ----- generate OWL class: 90/102 new triples (1880, 0:00:00.954042)
+- INFO -  [P-8] ----- generate OWL property: 24/32 new triples (1904, 0:00:00.262052)
+- INFO -  [P-8] ----- generate OWL individual: 20/24 new triples (1924, 0:00:00.255994)
+- DEBUG -  [P-8] ----- generate OWL relation (property): 0/0 new triple (1924, 0:00:00.007442)
+- DEBUG -  [P-8] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-8] ----- step: Generation
+- DEBUG -  [P-8] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-8] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-8] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-8] ----- 134 triples extracted during Generation step
+- DEBUG -  [P-8] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-8] ----- Number of factoids: 158
+- DEBUG -  [P-8] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-8] Success (158 extracted triple(s))
+- INFO - 
+ [P-9]     *** extraction from sentence 9 *** 
+- INFO -  [P-9] -- Work Structure Preparation
+- DEBUG -  [P-9] --- Graph Initialization
+- DEBUG -  [P-9] ----- Configuration Loading
+- DEBUG -  [P-9] -------- RDF Schema (320)
+- DEBUG -  [P-9] -------- Semantic Net Definition (488)
+- DEBUG -  [P-9] -------- Config Parameter Definition (522)
+- DEBUG -  [P-9] ----- Frame Ontology Loading
+- DEBUG -  [P-9] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-9] --- Source Data Import
+- DEBUG -  [P-9] ----- Sentence Loading
+- DEBUG -  [P-9] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-09/WikiAbstract-SolarSystem-09.stog.amr.ttl (600)
+- DEBUG -  [P-9] --- Export work graph as turtle
+- DEBUG -  [P-9] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-9] ----- Sentence (id): WikiAbstract-SolarSystem-09
+- INFO -  [P-9] ----- Sentence (text): All eight planets have almost circular orbits that lie within a nearly flat disc called the ecliptic.
+- INFO -  [P-9] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-9] ----- Step number: 3
+- INFO -  [P-9] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-9] ----- Total rule number: 0
+- INFO -  [P-9] -- Step 1: Preprocessing
+- INFO -  [P-9] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-9] ----- fix AMR bug (1): 0/0 new triple (600, 0:00:00.014969)
+- INFO -  [P-9] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- DEBUG -  [P-9] ----- reclassify AMR-LD concept (1): 0/0 new triple (600, 0:00:00.086234)
+- INFO -  [P-9] ----- reclassify AMR-LD concept (2): 8/8 new triples (608, 0:00:00.049507)
+- INFO -  [P-9] ----- reclassify AMR-LD concept (3): 16/16 new triples (624, 0:00:00.030785)
+- INFO -  [P-9] ----- reclassify AMR-LD concept (4): 12/12 new triples (636, 0:00:00.049438)
+- INFO -  [P-9] ----- reclassify AMR-LD concept (5): 8/8 new triples (644, 0:00:00.033777)
+- DEBUG -  [P-9] ----- reify roles as concept: 0/0 new triple (644, 0:00:00.036686)
+- INFO -  [P-9] ----- reclassify existing variable: 45/45 new triples (689, 0:00:00.018159)
+- DEBUG -  [P-9] ----- add new variable for reified concept: 0/0 new triple (689, 0:00:00.051571)
+- INFO -  [P-9] ----- add AMR leaf for reclassified concept: 33/33 new triples (722, 0:00:00.018017)
+- DEBUG -  [P-9] ----- add AMR leaf for reified concept: 0/0 new triple (722, 0:00:00.010628)
+- INFO -  [P-9] ----- add AMR edge for core relation: 30/30 new triples (752, 0:00:00.090081)
+- DEBUG -  [P-9] ----- add AMR edge for reified concept: 0/0 new triple (752, 0:00:00.021604)
+- INFO -  [P-9] ----- add AMR edge for name relation: 5/5 new triples (757, 0:00:00.017817)
+- INFO -  [P-9] ----- add AMR edge for quant relation: 5/5 new triples (762, 0:00:00.022063)
+- DEBUG -  [P-9] ----- add AMR edge for polarity relation: 0/0 new triple (762, 0:00:00.117421)
+- INFO -  [P-9] ----- update AMR edge role 1: 11/11 new triples (773, 0:00:00.075038)
+- INFO -  [P-9] ----- add AMR root: 5/5 new triples (778, 0:00:00.012201)
+- DEBUG -  [P-9] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-9] ----- step: Preprocessing
+- DEBUG -  [P-9] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-9] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-9] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-9] ----- 178 triples extracted during Preprocessing step
+- INFO -  [P-9] -- Step 2: Transduction
+- INFO -  [P-9] --- Sequence: atomic extraction sequence
+- INFO -  [P-9] ----- extract atom classes: 30/30 new triples (808, 0:00:00.232195)
+- INFO -  [P-9] ----- extract atom individuals: 8/8 new triples (816, 0:00:00.070260)
+- INFO -  [P-9] ----- extract atomic properties: 73/73 new triples (889, 0:00:00.303099)
+- INFO -  [P-9] ----- extract atom values: 10/10 new triples (899, 0:00:00.066235)
+- DEBUG -  [P-9] ----- extract atom phenomena: 0/0 new triple (899, 0:00:00.010711)
+- INFO -  [P-9] ----- propagate atom relations: 19/52 new triples (918, 0:00:00.837670)
+- INFO -  [P-9] --- Sequence: classification sequence (1)
+- DEBUG -  [P-9] ----- classify modality phenomena: 0/0 new triple (918, 0:00:00.029678)
+- INFO -  [P-9] ----- reclassify argument property to class: 11/14 new triples (929, 0:00:00.070651)
+- INFO -  [P-9] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-9] ----- analyze "polarity" phenomena (1): 0/0 new triple (929, 0:00:00.009453)
+- DEBUG -  [P-9] ----- analyze "polarity" phenomena (2): 0/0 new triple (929, 0:00:00.020835)
+- DEBUG -  [P-9] ----- analyze "polarity" phenomena (3): 0/0 new triple (929, 0:00:00.017940)
+- DEBUG -  [P-9] ----- analyze "polarity" phenomena (4): 0/0 new triple (929, 0:00:00.041027)
+- DEBUG -  [P-9] ----- analyze "polarity" phenomena (5): 0/0 new triple (929, 0:00:00.042651)
+- INFO -  [P-9] ----- analyze modifier phenomena (mod): 44/52 new triples (973, 0:00:00.180606)
+- DEBUG -  [P-9] ----- classify modality phenomena: 0/0 new triple (973, 0:00:00.022732)
+- INFO -  [P-9] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-9] ----- analyze "or" phenomena (1): 0/0 new triple (973, 0:00:00.012007)
+- DEBUG -  [P-9] ----- analyze "or" phenomena (2): 0/0 new triple (973, 0:00:00.011233)
+- DEBUG -  [P-9] ----- analyze "and" phenomena (1): 0/0 new triple (973, 0:00:00.011061)
+- DEBUG -  [P-9] ----- analyze "and" phenomena (2): 0/0 new triple (973, 0:00:00.010375)
+- INFO -  [P-9] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-9] ----- extract composite classes (1): 0/0 new triple (973, 0:00:00.033258)
+- INFO -  [P-9] ----- extract composite classes (2): 26/29 new triples (999, 0:00:00.127101)
+- INFO -  [P-9] --- Sequence: classification sequence (2)
+- INFO -  [P-9] ----- classify class net as entity from core arguments: 10/107 new triples (1009, 0:00:00.195508)
+- DEBUG -  [P-9] ----- classify class net as entity from :part relation: 0/0 new triple (1009, 0:00:00.011929)
+- DEBUG -  [P-9] ----- classify class net as entity from degree arguments: 0/0 new triple (1009, 0:00:00.017687)
+- DEBUG -  [P-9] ----- Associate mother to class net from :domain relation: 0/0 new triple (1009, 0:00:00.008784)
+- INFO -  [P-9] ----- Propagate individuals to net with same base node: 1/18 new triple (1010, 0:00:00.096008)
+- DEBUG -  [P-9] ----- Propagate individuals to net with domain link: 0/0 new triple (1010, 0:00:00.008532)
+- INFO -  [P-9] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-9] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1010, 0:00:00.023884)
+- DEBUG -  [P-9] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-9] ----- step: Transduction
+- DEBUG -  [P-9] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-9] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-9] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-9] ----- 232 triples extracted during Transduction step
+- INFO -  [P-9] -- Step 3: Generation
+- INFO -  [P-9] --- Sequence: OWL Generation Sequence
+- INFO -  [P-9] ----- generate OWL class: 33/33 new triples (1043, 0:00:00.338456)
+- INFO -  [P-9] ----- generate OWL property: 20/20 new triples (1063, 0:00:00.171307)
+- INFO -  [P-9] ----- generate OWL individual: 9/13 new triples (1072, 0:00:00.145322)
+- DEBUG -  [P-9] ----- generate OWL relation (property): 0/0 new triple (1072, 0:00:00.008098)
+- DEBUG -  [P-9] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-9] ----- step: Generation
+- DEBUG -  [P-9] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-9] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-9] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-9] ----- 62 triples extracted during Generation step
+- DEBUG -  [P-9] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-9] ----- Number of factoids: 66
+- DEBUG -  [P-9] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-9] Success (66 extracted triple(s))
+- INFO - 
+ [P-10]     *** extraction from sentence 10 *** 
+- INFO -  [P-10] -- Work Structure Preparation
+- DEBUG -  [P-10] --- Graph Initialization
+- DEBUG -  [P-10] ----- Configuration Loading
+- DEBUG -  [P-10] -------- RDF Schema (320)
+- DEBUG -  [P-10] -------- Semantic Net Definition (488)
+- DEBUG -  [P-10] -------- Config Parameter Definition (522)
+- DEBUG -  [P-10] ----- Frame Ontology Loading
+- DEBUG -  [P-10] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-10] --- Source Data Import
+- DEBUG -  [P-10] ----- Sentence Loading
+- DEBUG -  [P-10] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-10/WikiAbstract-SolarSystem-10.stog.amr.ttl (585)
+- DEBUG -  [P-10] --- Export work graph as turtle
+- DEBUG -  [P-10] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-10] ----- Sentence (id): WikiAbstract-SolarSystem-10
+- INFO -  [P-10] ----- Sentence (text): The Solar System also contains smaller objects.
+- INFO -  [P-10] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-10] ----- Step number: 3
+- INFO -  [P-10] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-10] ----- Total rule number: 0
+- INFO -  [P-10] -- Step 1: Preprocessing
+- INFO -  [P-10] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-10] ----- fix AMR bug (1): 0/0 new triple (585, 0:00:00.097666)
+- INFO -  [P-10] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-10] ----- reclassify AMR-LD concept (1): 5/5 new triples (590, 0:00:00.084157)
+- INFO -  [P-10] ----- reclassify AMR-LD concept (2): 4/4 new triples (594, 0:00:00.047848)
+- INFO -  [P-10] ----- reclassify AMR-LD concept (3): 4/4 new triples (598, 0:00:00.033370)
+- INFO -  [P-10] ----- reclassify AMR-LD concept (4): 16/16 new triples (614, 0:00:00.050345)
+- DEBUG -  [P-10] ----- reclassify AMR-LD concept (5): 0/0 new triple (614, 0:00:00.028364)
+- DEBUG -  [P-10] ----- reify roles as concept: 0/0 new triple (614, 0:00:00.037740)
+- INFO -  [P-10] ----- reclassify existing variable: 29/29 new triples (643, 0:00:00.016883)
+- DEBUG -  [P-10] ----- add new variable for reified concept: 0/0 new triple (643, 0:00:00.045797)
+- INFO -  [P-10] ----- add AMR leaf for reclassified concept: 21/21 new triples (664, 0:00:00.017695)
+- DEBUG -  [P-10] ----- add AMR leaf for reified concept: 0/0 new triple (664, 0:00:00.012890)
+- INFO -  [P-10] ----- add AMR edge for core relation: 18/18 new triples (682, 0:00:00.074693)
+- DEBUG -  [P-10] ----- add AMR edge for reified concept: 0/0 new triple (682, 0:00:00.024772)
+- INFO -  [P-10] ----- add AMR edge for name relation: 5/5 new triples (687, 0:00:00.017305)
+- DEBUG -  [P-10] ----- add AMR edge for quant relation: 0/0 new triple (687, 0:00:00.017731)
+- DEBUG -  [P-10] ----- add AMR edge for polarity relation: 0/0 new triple (687, 0:00:00.026113)
+- INFO -  [P-10] ----- update AMR edge role 1: 7/7 new triples (694, 0:00:00.042895)
+- INFO -  [P-10] ----- add AMR root: 5/5 new triples (699, 0:00:00.010278)
+- DEBUG -  [P-10] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-10] ----- step: Preprocessing
+- DEBUG -  [P-10] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-10] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-10] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-10] ----- 114 triples extracted during Preprocessing step
+- INFO -  [P-10] -- Step 2: Transduction
+- INFO -  [P-10] --- Sequence: atomic extraction sequence
+- INFO -  [P-10] ----- extract atom classes: 24/24 new triples (723, 0:00:00.139249)
+- INFO -  [P-10] ----- extract atom individuals: 8/8 new triples (731, 0:00:00.050087)
+- INFO -  [P-10] ----- extract atomic properties: 25/25 new triples (756, 0:00:00.092589)
+- INFO -  [P-10] ----- extract atom values: 5/5 new triples (761, 0:00:00.031467)
+- INFO -  [P-10] ----- extract atom phenomena: 7/7 new triples (768, 0:00:00.043369)
+- INFO -  [P-10] ----- propagate atom relations: 15/38 new triples (783, 0:00:00.539420)
+- INFO -  [P-10] --- Sequence: classification sequence (1)
+- DEBUG -  [P-10] ----- classify modality phenomena: 0/0 new triple (783, 0:00:00.021501)
+- DEBUG -  [P-10] ----- reclassify argument property to class: 0/0 new triple (783, 0:00:00.032016)
+- INFO -  [P-10] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-10] ----- analyze "polarity" phenomena (1): 0/0 new triple (783, 0:00:00.007795)
+- DEBUG -  [P-10] ----- analyze "polarity" phenomena (2): 0/0 new triple (783, 0:00:00.017185)
+- DEBUG -  [P-10] ----- analyze "polarity" phenomena (3): 0/0 new triple (783, 0:00:00.018128)
+- DEBUG -  [P-10] ----- analyze "polarity" phenomena (4): 0/0 new triple (783, 0:00:00.046761)
+- DEBUG -  [P-10] ----- analyze "polarity" phenomena (5): 0/0 new triple (783, 0:00:00.040170)
+- DEBUG -  [P-10] ----- analyze modifier phenomena (mod): 0/0 new triple (783, 0:00:00.008676)
+- DEBUG -  [P-10] ----- classify modality phenomena: 0/0 new triple (783, 0:00:00.020084)
+- INFO -  [P-10] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-10] ----- analyze "or" phenomena (1): 0/0 new triple (783, 0:00:00.012623)
+- DEBUG -  [P-10] ----- analyze "or" phenomena (2): 0/0 new triple (783, 0:00:00.014175)
+- DEBUG -  [P-10] ----- analyze "and" phenomena (1): 0/0 new triple (783, 0:00:00.011782)
+- DEBUG -  [P-10] ----- analyze "and" phenomena (2): 0/0 new triple (783, 0:00:00.011804)
+- INFO -  [P-10] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-10] ----- extract composite classes (1): 0/0 new triple (783, 0:00:00.030071)
+- DEBUG -  [P-10] ----- extract composite classes (2): 0/0 new triple (783, 0:00:00.029952)
+- INFO -  [P-10] --- Sequence: classification sequence (2)
+- INFO -  [P-10] ----- classify class net as entity from core arguments: 6/23 new triples (789, 0:00:00.091209)
+- DEBUG -  [P-10] ----- classify class net as entity from :part relation: 0/0 new triple (789, 0:00:00.008969)
+- DEBUG -  [P-10] ----- classify class net as entity from degree arguments: 0/0 new triple (789, 0:00:00.018979)
+- DEBUG -  [P-10] ----- Associate mother to class net from :domain relation: 0/0 new triple (789, 0:00:00.009511)
+- DEBUG -  [P-10] ----- Propagate individuals to net with same base node: 0/12 new triple (789, 0:00:00.043350)
+- DEBUG -  [P-10] ----- Propagate individuals to net with domain link: 0/0 new triple (789, 0:00:00.007964)
+- INFO -  [P-10] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-10] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (789, 0:00:00.009887)
+- DEBUG -  [P-10] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-10] ----- step: Transduction
+- DEBUG -  [P-10] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-10] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-10] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-10] ----- 90 triples extracted during Transduction step
+- INFO -  [P-10] -- Step 3: Generation
+- INFO -  [P-10] --- Sequence: OWL Generation Sequence
+- INFO -  [P-10] ----- generate OWL class: 12/12 new triples (801, 0:00:00.113251)
+- INFO -  [P-10] ----- generate OWL property: 8/8 new triples (809, 0:00:00.072674)
+- INFO -  [P-10] ----- generate OWL individual: 4/4 new triples (813, 0:00:00.045842)
+- DEBUG -  [P-10] ----- generate OWL relation (property): 0/0 new triple (813, 0:00:00.008307)
+- DEBUG -  [P-10] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-10] ----- step: Generation
+- DEBUG -  [P-10] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-10] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-10] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-10] ----- 24 triples extracted during Generation step
+- DEBUG -  [P-10] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-10] ----- Number of factoids: 24
+- DEBUG -  [P-10] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-10] Success (24 extracted triple(s))
+- INFO - 
+ [P-11]     *** extraction from sentence 11 *** 
+- INFO -  [P-11] -- Work Structure Preparation
+- DEBUG -  [P-11] --- Graph Initialization
+- DEBUG -  [P-11] ----- Configuration Loading
+- DEBUG -  [P-11] -------- RDF Schema (320)
+- DEBUG -  [P-11] -------- Semantic Net Definition (488)
+- DEBUG -  [P-11] -------- Config Parameter Definition (522)
+- DEBUG -  [P-11] ----- Frame Ontology Loading
+- DEBUG -  [P-11] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-11] --- Source Data Import
+- DEBUG -  [P-11] ----- Sentence Loading
+- DEBUG -  [P-11] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-11/WikiAbstract-SolarSystem-11.stog.amr.ttl (622)
+- DEBUG -  [P-11] --- Export work graph as turtle
+- DEBUG -  [P-11] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-11] ----- Sentence (id): WikiAbstract-SolarSystem-11
+- INFO -  [P-11] ----- Sentence (text): The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal.
+- INFO -  [P-11] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-11] ----- Step number: 3
+- INFO -  [P-11] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-11] ----- Total rule number: 0
+- INFO -  [P-11] -- Step 1: Preprocessing
+- INFO -  [P-11] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-11] ----- fix AMR bug (1): 0/0 new triple (622, 0:00:00.016781)
+- INFO -  [P-11] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-11] ----- reclassify AMR-LD concept (1): 5/5 new triples (627, 0:00:00.103375)
+- INFO -  [P-11] ----- reclassify AMR-LD concept (2): 8/8 new triples (635, 0:00:00.049029)
+- INFO -  [P-11] ----- reclassify AMR-LD concept (3): 20/20 new triples (655, 0:00:00.030973)
+- INFO -  [P-11] ----- reclassify AMR-LD concept (4): 24/24 new triples (679, 0:00:00.052925)
+- INFO -  [P-11] ----- reclassify AMR-LD concept (5): 4/4 new triples (683, 0:00:00.029579)
+- DEBUG -  [P-11] ----- reify roles as concept: 0/0 new triple (683, 0:00:00.036327)
+- INFO -  [P-11] ----- reclassify existing variable: 74/74 new triples (757, 0:00:00.022786)
+- DEBUG -  [P-11] ----- add new variable for reified concept: 0/0 new triple (757, 0:00:00.048116)
+- INFO -  [P-11] ----- add AMR leaf for reclassified concept: 54/54 new triples (811, 0:00:00.026691)
+- DEBUG -  [P-11] ----- add AMR leaf for reified concept: 0/0 new triple (811, 0:00:00.011299)
+- INFO -  [P-11] ----- add AMR edge for core relation: 51/51 new triples (862, 0:00:00.117184)
+- DEBUG -  [P-11] ----- add AMR edge for reified concept: 0/0 new triple (862, 0:00:00.022016)
+- INFO -  [P-11] ----- add AMR edge for name relation: 10/10 new triples (872, 0:00:00.021352)
+- DEBUG -  [P-11] ----- add AMR edge for quant relation: 0/0 new triple (872, 0:00:00.025362)
+- DEBUG -  [P-11] ----- add AMR edge for polarity relation: 0/0 new triple (872, 0:00:00.031903)
+- INFO -  [P-11] ----- update AMR edge role 1: 19/19 new triples (891, 0:00:00.083221)
+- INFO -  [P-11] ----- add AMR root: 5/5 new triples (896, 0:00:00.010031)
+- DEBUG -  [P-11] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-11] ----- step: Preprocessing
+- DEBUG -  [P-11] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-11] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-11] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-11] ----- 274 triples extracted during Preprocessing step
+- INFO -  [P-11] -- Step 2: Transduction
+- INFO -  [P-11] --- Sequence: atomic extraction sequence
+- INFO -  [P-11] ----- extract atom classes: 54/54 new triples (950, 0:00:00.276717)
+- INFO -  [P-11] ----- extract atom individuals: 16/16 new triples (966, 0:00:00.078843)
+- INFO -  [P-11] ----- extract atomic properties: 101/101 new triples (1067, 0:00:00.301126)
+- INFO -  [P-11] ----- extract atom values: 10/10 new triples (1077, 0:00:00.051857)
+- INFO -  [P-11] ----- extract atom phenomena: 7/7 new triples (1084, 0:00:00.038528)
+- INFO -  [P-11] ----- propagate atom relations: 30/96 new triples (1114, 0:00:01.527702)
+- INFO -  [P-11] --- Sequence: classification sequence (1)
+- DEBUG -  [P-11] ----- classify modality phenomena: 0/0 new triple (1114, 0:00:00.022044)
+- INFO -  [P-11] ----- reclassify argument property to class: 22/28 new triples (1136, 0:00:00.119044)
+- INFO -  [P-11] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-11] ----- analyze "polarity" phenomena (1): 0/0 new triple (1136, 0:00:00.008320)
+- DEBUG -  [P-11] ----- analyze "polarity" phenomena (2): 0/0 new triple (1136, 0:00:00.017123)
+- DEBUG -  [P-11] ----- analyze "polarity" phenomena (3): 0/0 new triple (1136, 0:00:00.023560)
+- DEBUG -  [P-11] ----- analyze "polarity" phenomena (4): 0/0 new triple (1136, 0:00:00.039808)
+- DEBUG -  [P-11] ----- analyze "polarity" phenomena (5): 0/0 new triple (1136, 0:00:00.040810)
+- INFO -  [P-11] ----- analyze modifier phenomena (mod): 43/50 new triples (1179, 0:00:00.253332)
+- DEBUG -  [P-11] ----- classify modality phenomena: 0/0 new triple (1179, 0:00:00.021125)
+- INFO -  [P-11] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-11] ----- analyze "or" phenomena (1): 0/0 new triple (1179, 0:00:00.013015)
+- DEBUG -  [P-11] ----- analyze "or" phenomena (2): 0/0 new triple (1179, 0:00:00.012077)
+- INFO -  [P-11] ----- analyze "and" phenomena (1): 2/18 new triples (1181, 0:00:00.156275)
+- DEBUG -  [P-11] ----- analyze "and" phenomena (2): 0/0 new triple (1181, 0:00:00.012071)
+- INFO -  [P-11] --- Sequence: composite class extraction sequence
+- INFO -  [P-11] ----- extract composite classes (1): 25/27 new triples (1206, 0:00:00.130561)
+- INFO -  [P-11] ----- extract composite classes (2): 27/30 new triples (1233, 0:00:00.132752)
+- INFO -  [P-11] --- Sequence: classification sequence (2)
+- INFO -  [P-11] ----- classify class net as entity from core arguments: 22/132 new triples (1255, 0:00:00.310301)
+- DEBUG -  [P-11] ----- classify class net as entity from :part relation: 0/0 new triple (1255, 0:00:00.009905)
+- DEBUG -  [P-11] ----- classify class net as entity from degree arguments: 0/0 new triple (1255, 0:00:00.018916)
+- DEBUG -  [P-11] ----- Associate mother to class net from :domain relation: 0/0 new triple (1255, 0:00:00.009879)
+- DEBUG -  [P-11] ----- Propagate individuals to net with same base node: 0/28 new triple (1255, 0:00:00.122191)
+- DEBUG -  [P-11] ----- Propagate individuals to net with domain link: 0/0 new triple (1255, 0:00:00.008830)
+- INFO -  [P-11] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-11] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1255, 0:00:00.030527)
+- DEBUG -  [P-11] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-11] ----- step: Transduction
+- DEBUG -  [P-11] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-11] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-11] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-11] ----- 359 triples extracted during Transduction step
+- INFO -  [P-11] -- Step 3: Generation
+- INFO -  [P-11] --- Sequence: OWL Generation Sequence
+- INFO -  [P-11] ----- generate OWL class: 56/56 new triples (1311, 0:00:00.555320)
+- INFO -  [P-11] ----- generate OWL property: 20/24 new triples (1331, 0:00:00.207654)
+- INFO -  [P-11] ----- generate OWL individual: 12/16 new triples (1343, 0:00:00.176681)
+- DEBUG -  [P-11] ----- generate OWL relation (property): 0/0 new triple (1343, 0:00:00.008284)
+- DEBUG -  [P-11] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-11] ----- step: Generation
+- DEBUG -  [P-11] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-11] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-11] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-11] ----- 88 triples extracted during Generation step
+- DEBUG -  [P-11] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-11] ----- Number of factoids: 96
+- DEBUG -  [P-11] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-11] Success (96 extracted triple(s))
+- INFO - 
+ [P-12]     *** extraction from sentence 12 *** 
+- INFO -  [P-12] -- Work Structure Preparation
+- DEBUG -  [P-12] --- Graph Initialization
+- DEBUG -  [P-12] ----- Configuration Loading
+- DEBUG -  [P-12] -------- RDF Schema (320)
+- DEBUG -  [P-12] -------- Semantic Net Definition (488)
+- DEBUG -  [P-12] -------- Config Parameter Definition (522)
+- DEBUG -  [P-12] ----- Frame Ontology Loading
+- DEBUG -  [P-12] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-12] --- Source Data Import
+- DEBUG -  [P-12] ----- Sentence Loading
+- DEBUG -  [P-12] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-12/WikiAbstract-SolarSystem-12.stog.amr.ttl (634)
+- DEBUG -  [P-12] --- Export work graph as turtle
+- DEBUG -  [P-12] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-12] ----- Sentence (id): WikiAbstract-SolarSystem-12
+- INFO -  [P-12] ----- Sentence (text): Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids.
+- INFO -  [P-12] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-12] ----- Step number: 3
+- INFO -  [P-12] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-12] ----- Total rule number: 0
+- INFO -  [P-12] -- Step 1: Preprocessing
+- INFO -  [P-12] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-12] ----- fix AMR bug (1): 0/0 new triple (634, 0:00:00.017605)
+- INFO -  [P-12] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-12] ----- reclassify AMR-LD concept (1): 5/5 new triples (639, 0:00:00.112092)
+- INFO -  [P-12] ----- reclassify AMR-LD concept (2): 4/4 new triples (643, 0:00:00.046786)
+- INFO -  [P-12] ----- reclassify AMR-LD concept (3): 28/28 new triples (671, 0:00:00.033595)
+- INFO -  [P-12] ----- reclassify AMR-LD concept (4): 28/28 new triples (699, 0:00:00.049391)
+- INFO -  [P-12] ----- reclassify AMR-LD concept (5): 4/4 new triples (703, 0:00:00.032056)
+- DEBUG -  [P-12] ----- reify roles as concept: 0/0 new triple (703, 0:00:00.044336)
+- INFO -  [P-12] ----- reclassify existing variable: 82/82 new triples (785, 0:00:00.019964)
+- DEBUG -  [P-12] ----- add new variable for reified concept: 0/0 new triple (785, 0:00:00.128715)
+- INFO -  [P-12] ----- add AMR leaf for reclassified concept: 60/60 new triples (845, 0:00:00.035868)
+- DEBUG -  [P-12] ----- add AMR leaf for reified concept: 0/0 new triple (845, 0:00:00.012597)
+- INFO -  [P-12] ----- add AMR edge for core relation: 63/63 new triples (908, 0:00:00.118470)
+- DEBUG -  [P-12] ----- add AMR edge for reified concept: 0/0 new triple (908, 0:00:00.021623)
+- INFO -  [P-12] ----- add AMR edge for name relation: 10/10 new triples (918, 0:00:00.022964)
+- DEBUG -  [P-12] ----- add AMR edge for quant relation: 0/0 new triple (918, 0:00:00.027937)
+- DEBUG -  [P-12] ----- add AMR edge for polarity relation: 0/0 new triple (918, 0:00:00.030258)
+- INFO -  [P-12] ----- update AMR edge role 1: 21/21 new triples (939, 0:00:00.092814)
+- INFO -  [P-12] ----- add AMR root: 5/5 new triples (944, 0:00:00.010772)
+- DEBUG -  [P-12] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-12] ----- step: Preprocessing
+- DEBUG -  [P-12] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-12] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-12] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-12] ----- 310 triples extracted during Preprocessing step
+- INFO -  [P-12] -- Step 2: Transduction
+- INFO -  [P-12] --- Sequence: atomic extraction sequence
+- INFO -  [P-12] ----- extract atom classes: 60/60 new triples (1004, 0:00:00.304529)
+- INFO -  [P-12] ----- extract atom individuals: 16/16 new triples (1020, 0:00:00.076619)
+- INFO -  [P-12] ----- extract atomic properties: 98/98 new triples (1118, 0:00:00.290534)
+- INFO -  [P-12] ----- extract atom values: 10/10 new triples (1128, 0:00:00.051275)
+- INFO -  [P-12] ----- extract atom phenomena: 14/14 new triples (1142, 0:00:00.066028)
+- INFO -  [P-12] ----- propagate atom relations: 34/112 new triples (1176, 0:00:01.710156)
+- INFO -  [P-12] --- Sequence: classification sequence (1)
+- DEBUG -  [P-12] ----- classify modality phenomena: 0/0 new triple (1176, 0:00:00.027545)
+- INFO -  [P-12] ----- reclassify argument property to class: 10/12 new triples (1186, 0:00:00.073328)
+- INFO -  [P-12] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-12] ----- analyze "polarity" phenomena (1): 0/0 new triple (1186, 0:00:00.009095)
+- DEBUG -  [P-12] ----- analyze "polarity" phenomena (2): 0/0 new triple (1186, 0:00:00.018847)
+- DEBUG -  [P-12] ----- analyze "polarity" phenomena (3): 0/0 new triple (1186, 0:00:00.020023)
+- DEBUG -  [P-12] ----- analyze "polarity" phenomena (4): 0/0 new triple (1186, 0:00:00.045000)
+- DEBUG -  [P-12] ----- analyze "polarity" phenomena (5): 0/0 new triple (1186, 0:00:00.049235)
+- INFO -  [P-12] ----- analyze modifier phenomena (mod): 44/52 new triples (1230, 0:00:00.250577)
+- DEBUG -  [P-12] ----- classify modality phenomena: 0/0 new triple (1230, 0:00:00.022416)
+- INFO -  [P-12] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-12] ----- analyze "or" phenomena (1): 0/0 new triple (1230, 0:00:00.013481)
+- DEBUG -  [P-12] ----- analyze "or" phenomena (2): 0/0 new triple (1230, 0:00:00.011760)
+- INFO -  [P-12] ----- analyze "and" phenomena (1): 2/14 new triples (1232, 0:00:00.150056)
+- INFO -  [P-12] ----- analyze "and" phenomena (2): 2/22 new triples (1234, 0:00:00.150886)
+- INFO -  [P-12] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-12] ----- extract composite classes (1): 0/0 new triple (1234, 0:00:00.031986)
+- INFO -  [P-12] ----- extract composite classes (2): 50/54 new triples (1284, 0:00:00.236865)
+- INFO -  [P-12] --- Sequence: classification sequence (2)
+- INFO -  [P-12] ----- classify class net as entity from core arguments: 20/148 new triples (1304, 0:00:00.284624)
+- DEBUG -  [P-12] ----- classify class net as entity from :part relation: 0/0 new triple (1304, 0:00:00.009463)
+- DEBUG -  [P-12] ----- classify class net as entity from degree arguments: 0/0 new triple (1304, 0:00:00.017424)
+- DEBUG -  [P-12] ----- Associate mother to class net from :domain relation: 0/0 new triple (1304, 0:00:00.009062)
+- DEBUG -  [P-12] ----- Propagate individuals to net with same base node: 0/28 new triple (1304, 0:00:00.121056)
+- DEBUG -  [P-12] ----- Propagate individuals to net with domain link: 0/0 new triple (1304, 0:00:00.009211)
+- INFO -  [P-12] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-12] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1304, 0:00:00.032559)
+- DEBUG -  [P-12] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-12] ----- step: Transduction
+- DEBUG -  [P-12] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-12] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-12] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-12] ----- 360 triples extracted during Transduction step
+- INFO -  [P-12] -- Step 3: Generation
+- INFO -  [P-12] --- Sequence: OWL Generation Sequence
+- INFO -  [P-12] ----- generate OWL class: 49/56 new triples (1353, 0:00:00.619651)
+- INFO -  [P-12] ----- generate OWL property: 28/28 new triples (1381, 0:00:00.238261)
+- INFO -  [P-12] ----- generate OWL individual: 12/16 new triples (1393, 0:00:00.174733)
+- DEBUG -  [P-12] ----- generate OWL relation (property): 0/0 new triple (1393, 0:00:00.008215)
+- DEBUG -  [P-12] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-12] ----- step: Generation
+- DEBUG -  [P-12] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-12] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-12] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-12] ----- 89 triples extracted during Generation step
+- DEBUG -  [P-12] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-12] ----- Number of factoids: 100
+- DEBUG -  [P-12] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-12] Success (100 extracted triple(s))
+- INFO - 
+ [P-13]     *** extraction from sentence 13 *** 
+- INFO -  [P-13] -- Work Structure Preparation
+- DEBUG -  [P-13] --- Graph Initialization
+- DEBUG -  [P-13] ----- Configuration Loading
+- DEBUG -  [P-13] -------- RDF Schema (320)
+- DEBUG -  [P-13] -------- Semantic Net Definition (488)
+- DEBUG -  [P-13] -------- Config Parameter Definition (522)
+- DEBUG -  [P-13] ----- Frame Ontology Loading
+- DEBUG -  [P-13] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-13] --- Source Data Import
+- DEBUG -  [P-13] ----- Sentence Loading
+- DEBUG -  [P-13] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-13/WikiAbstract-SolarSystem-13.stog.amr.ttl (622)
+- DEBUG -  [P-13] --- Export work graph as turtle
+- DEBUG -  [P-13] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-13] ----- Sentence (id): WikiAbstract-SolarSystem-13
+- INFO -  [P-13] ----- Sentence (text): Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be.
+- INFO -  [P-13] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-13] ----- Step number: 3
+- INFO -  [P-13] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-13] ----- Total rule number: 0
+- INFO -  [P-13] -- Step 1: Preprocessing
+- INFO -  [P-13] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-13] ----- fix AMR bug (1): 0/0 new triple (622, 0:00:00.017727)
+- INFO -  [P-13] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-13] ----- reclassify AMR-LD concept (1): 5/5 new triples (627, 0:00:00.102825)
+- DEBUG -  [P-13] ----- reclassify AMR-LD concept (2): 0/0 new triple (627, 0:00:00.052689)
+- INFO -  [P-13] ----- reclassify AMR-LD concept (3): 16/16 new triples (643, 0:00:00.029714)
+- INFO -  [P-13] ----- reclassify AMR-LD concept (4): 40/40 new triples (683, 0:00:00.052076)
+- INFO -  [P-13] ----- reclassify AMR-LD concept (5): 4/4 new triples (687, 0:00:00.032981)
+- DEBUG -  [P-13] ----- reify roles as concept: 0/0 new triple (687, 0:00:00.037979)
+- INFO -  [P-13] ----- reclassify existing variable: 64/64 new triples (751, 0:00:00.018457)
+- DEBUG -  [P-13] ----- add new variable for reified concept: 0/0 new triple (751, 0:00:00.133684)
+- INFO -  [P-13] ----- add AMR leaf for reclassified concept: 48/48 new triples (799, 0:00:00.027269)
+- DEBUG -  [P-13] ----- add AMR leaf for reified concept: 0/0 new triple (799, 0:00:00.011005)
+- INFO -  [P-13] ----- add AMR edge for core relation: 51/51 new triples (850, 0:00:00.105946)
+- DEBUG -  [P-13] ----- add AMR edge for reified concept: 0/0 new triple (850, 0:00:00.022652)
+- DEBUG -  [P-13] ----- add AMR edge for name relation: 0/0 new triple (850, 0:00:00.023094)
+- DEBUG -  [P-13] ----- add AMR edge for quant relation: 0/0 new triple (850, 0:00:00.022574)
+- DEBUG -  [P-13] ----- add AMR edge for polarity relation: 0/0 new triple (850, 0:00:00.027482)
+- INFO -  [P-13] ----- update AMR edge role 1: 13/13 new triples (863, 0:00:00.074126)
+- INFO -  [P-13] ----- add AMR root: 5/5 new triples (868, 0:00:00.011522)
+- DEBUG -  [P-13] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-13] ----- step: Preprocessing
+- DEBUG -  [P-13] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-13] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-13] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-13] ----- 246 triples extracted during Preprocessing step
+- INFO -  [P-13] -- Step 2: Transduction
+- INFO -  [P-13] --- Sequence: atomic extraction sequence
+- INFO -  [P-13] ----- extract atom classes: 66/66 new triples (934, 0:00:00.335447)
+- DEBUG -  [P-13] ----- extract atom individuals: 0/0 new triple (934, 0:00:00.018239)
+- INFO -  [P-13] ----- extract atomic properties: 49/49 new triples (983, 0:00:00.156902)
+- DEBUG -  [P-13] ----- extract atom values: 0/0 new triple (983, 0:00:00.005832)
+- INFO -  [P-13] ----- extract atom phenomena: 7/7 new triples (990, 0:00:00.038571)
+- INFO -  [P-13] ----- propagate atom relations: 20/52 new triples (1010, 0:00:01.066055)
+- INFO -  [P-13] --- Sequence: classification sequence (1)
+- DEBUG -  [P-13] ----- classify modality phenomena: 0/0 new triple (1010, 0:00:00.021543)
+- INFO -  [P-13] ----- reclassify argument property to class: 10/12 new triples (1020, 0:00:00.073137)
+- INFO -  [P-13] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-13] ----- analyze "polarity" phenomena (1): 0/0 new triple (1020, 0:00:00.008739)
+- DEBUG -  [P-13] ----- analyze "polarity" phenomena (2): 0/0 new triple (1020, 0:00:00.017008)
+- DEBUG -  [P-13] ----- analyze "polarity" phenomena (3): 0/0 new triple (1020, 0:00:00.017157)
+- DEBUG -  [P-13] ----- analyze "polarity" phenomena (4): 0/0 new triple (1020, 0:00:00.040812)
+- DEBUG -  [P-13] ----- analyze "polarity" phenomena (5): 0/0 new triple (1020, 0:00:00.043066)
+- INFO -  [P-13] ----- analyze modifier phenomena (mod): 20/22 new triples (1040, 0:00:00.098841)
+- DEBUG -  [P-13] ----- classify modality phenomena: 0/0 new triple (1040, 0:00:00.021276)
+- INFO -  [P-13] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-13] ----- analyze "or" phenomena (1): 0/0 new triple (1040, 0:00:00.014251)
+- DEBUG -  [P-13] ----- analyze "or" phenomena (2): 0/0 new triple (1040, 0:00:00.011913)
+- DEBUG -  [P-13] ----- analyze "and" phenomena (1): 0/0 new triple (1040, 0:00:00.011407)
+- DEBUG -  [P-13] ----- analyze "and" phenomena (2): 0/0 new triple (1040, 0:00:00.016654)
+- INFO -  [P-13] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-13] ----- extract composite classes (1): 0/0 new triple (1040, 0:00:00.030347)
+- DEBUG -  [P-13] ----- extract composite classes (2): 0/0 new triple (1040, 0:00:00.030791)
+- INFO -  [P-13] --- Sequence: classification sequence (2)
+- INFO -  [P-13] ----- classify class net as entity from core arguments: 10/48 new triples (1050, 0:00:00.146839)
+- DEBUG -  [P-13] ----- classify class net as entity from :part relation: 0/0 new triple (1050, 0:00:00.009477)
+- DEBUG -  [P-13] ----- classify class net as entity from degree arguments: 0/0 new triple (1050, 0:00:00.017675)
+- DEBUG -  [P-13] ----- Associate mother to class net from :domain relation: 0/0 new triple (1050, 0:00:00.009270)
+- DEBUG -  [P-13] ----- Propagate individuals to net with same base node: 0/2 new triple (1050, 0:00:00.025244)
+- DEBUG -  [P-13] ----- Propagate individuals to net with domain link: 0/0 new triple (1050, 0:00:00.008073)
+- INFO -  [P-13] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-13] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1050, 0:00:00.012233)
+- DEBUG -  [P-13] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-13] ----- step: Transduction
+- DEBUG -  [P-13] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-13] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-13] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-13] ----- 182 triples extracted during Transduction step
+- INFO -  [P-13] -- Step 3: Generation
+- INFO -  [P-13] --- Sequence: OWL Generation Sequence
+- INFO -  [P-13] ----- generate OWL class: 51/51 new triples (1101, 0:00:00.430345)
+- INFO -  [P-13] ----- generate OWL property: 12/12 new triples (1113, 0:00:00.112289)
+- INFO -  [P-13] ----- generate OWL individual: 2/4 new triples (1115, 0:00:00.125522)
+- DEBUG -  [P-13] ----- generate OWL relation (property): 0/0 new triple (1115, 0:00:00.009122)
+- DEBUG -  [P-13] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-13] ----- step: Generation
+- DEBUG -  [P-13] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-13] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-13] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-13] ----- 65 triples extracted during Generation step
+- DEBUG -  [P-13] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-13] ----- Number of factoids: 67
+- DEBUG -  [P-13] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-13] Success (67 extracted triple(s))
+- INFO - 
+ [P-14]     *** extraction from sentence 14 *** 
+- INFO -  [P-14] -- Work Structure Preparation
+- DEBUG -  [P-14] --- Graph Initialization
+- DEBUG -  [P-14] ----- Configuration Loading
+- DEBUG -  [P-14] -------- RDF Schema (320)
+- DEBUG -  [P-14] -------- Semantic Net Definition (488)
+- DEBUG -  [P-14] -------- Config Parameter Definition (522)
+- DEBUG -  [P-14] ----- Frame Ontology Loading
+- DEBUG -  [P-14] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-14] --- Source Data Import
+- DEBUG -  [P-14] ----- Sentence Loading
+- DEBUG -  [P-14] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-14/WikiAbstract-SolarSystem-14.stog.amr.ttl (575)
+- DEBUG -  [P-14] --- Export work graph as turtle
+- DEBUG -  [P-14] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-14] ----- Sentence (id): WikiAbstract-SolarSystem-14
+- INFO -  [P-14] ----- Sentence (text): Such objects are categorized as dwarf planets.
+- INFO -  [P-14] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-14] ----- Step number: 3
+- INFO -  [P-14] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-14] ----- Total rule number: 0
+- INFO -  [P-14] -- Step 1: Preprocessing
+- INFO -  [P-14] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-14] ----- fix AMR bug (1): 0/0 new triple (575, 0:00:00.014550)
+- INFO -  [P-14] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- DEBUG -  [P-14] ----- reclassify AMR-LD concept (1): 0/0 new triple (575, 0:00:00.068260)
+- DEBUG -  [P-14] ----- reclassify AMR-LD concept (2): 0/0 new triple (575, 0:00:00.045350)
+- INFO -  [P-14] ----- reclassify AMR-LD concept (3): 4/4 new triples (579, 0:00:00.029248)
+- INFO -  [P-14] ----- reclassify AMR-LD concept (4): 12/12 new triples (591, 0:00:00.048430)
+- INFO -  [P-14] ----- reclassify AMR-LD concept (5): 4/4 new triples (595, 0:00:00.037249)
+- DEBUG -  [P-14] ----- reify roles as concept: 0/0 new triple (595, 0:00:00.037523)
+- INFO -  [P-14] ----- reclassify existing variable: 20/20 new triples (615, 0:00:00.016143)
+- DEBUG -  [P-14] ----- add new variable for reified concept: 0/0 new triple (615, 0:00:00.054658)
+- INFO -  [P-14] ----- add AMR leaf for reclassified concept: 15/15 new triples (630, 0:00:00.012858)
+- DEBUG -  [P-14] ----- add AMR leaf for reified concept: 0/0 new triple (630, 0:00:00.010648)
+- INFO -  [P-14] ----- add AMR edge for core relation: 12/12 new triples (642, 0:00:00.079753)
+- DEBUG -  [P-14] ----- add AMR edge for reified concept: 0/0 new triple (642, 0:00:00.023166)
+- DEBUG -  [P-14] ----- add AMR edge for name relation: 0/0 new triple (642, 0:00:00.017879)
+- DEBUG -  [P-14] ----- add AMR edge for quant relation: 0/0 new triple (642, 0:00:00.019170)
+- DEBUG -  [P-14] ----- add AMR edge for polarity relation: 0/0 new triple (642, 0:00:00.031137)
+- INFO -  [P-14] ----- update AMR edge role 1: 4/4 new triples (646, 0:00:00.031161)
+- INFO -  [P-14] ----- add AMR root: 5/5 new triples (651, 0:00:00.010879)
+- DEBUG -  [P-14] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-14] ----- step: Preprocessing
+- DEBUG -  [P-14] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-14] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-14] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-14] ----- 76 triples extracted during Preprocessing step
+- INFO -  [P-14] -- Step 2: Transduction
+- INFO -  [P-14] --- Sequence: atomic extraction sequence
+- INFO -  [P-14] ----- extract atom classes: 24/24 new triples (675, 0:00:00.132336)
+- DEBUG -  [P-14] ----- extract atom individuals: 0/0 new triple (675, 0:00:00.013293)
+- INFO -  [P-14] ----- extract atomic properties: 13/13 new triples (688, 0:00:00.042764)
+- DEBUG -  [P-14] ----- extract atom values: 0/0 new triple (688, 0:00:00.005700)
+- DEBUG -  [P-14] ----- extract atom phenomena: 0/0 new triple (688, 0:00:00.010271)
+- INFO -  [P-14] ----- propagate atom relations: 7/16 new triples (695, 0:00:00.299899)
+- INFO -  [P-14] --- Sequence: classification sequence (1)
+- DEBUG -  [P-14] ----- classify modality phenomena: 0/0 new triple (695, 0:00:00.028387)
+- DEBUG -  [P-14] ----- reclassify argument property to class: 0/0 new triple (695, 0:00:00.026540)
+- INFO -  [P-14] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-14] ----- analyze "polarity" phenomena (1): 0/0 new triple (695, 0:00:00.007598)
+- DEBUG -  [P-14] ----- analyze "polarity" phenomena (2): 0/0 new triple (695, 0:00:00.017926)
+- DEBUG -  [P-14] ----- analyze "polarity" phenomena (3): 0/0 new triple (695, 0:00:00.016946)
+- DEBUG -  [P-14] ----- analyze "polarity" phenomena (4): 0/0 new triple (695, 0:00:00.048557)
+- DEBUG -  [P-14] ----- analyze "polarity" phenomena (5): 0/0 new triple (695, 0:00:00.037979)
+- INFO -  [P-14] ----- analyze modifier phenomena (mod): 42/48 new triples (737, 0:00:00.179303)
+- DEBUG -  [P-14] ----- classify modality phenomena: 0/0 new triple (737, 0:00:00.022035)
+- INFO -  [P-14] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-14] ----- analyze "or" phenomena (1): 0/0 new triple (737, 0:00:00.011987)
+- DEBUG -  [P-14] ----- analyze "or" phenomena (2): 0/0 new triple (737, 0:00:00.017358)
+- DEBUG -  [P-14] ----- analyze "and" phenomena (1): 0/0 new triple (737, 0:00:00.011969)
+- DEBUG -  [P-14] ----- analyze "and" phenomena (2): 0/0 new triple (737, 0:00:00.010821)
+- INFO -  [P-14] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-14] ----- extract composite classes (1): 0/0 new triple (737, 0:00:00.029551)
+- INFO -  [P-14] ----- extract composite classes (2): 27/29 new triples (764, 0:00:00.134985)
+- INFO -  [P-14] --- Sequence: classification sequence (2)
+- INFO -  [P-14] ----- classify class net as entity from core arguments: 8/27 new triples (772, 0:00:00.087786)
+- DEBUG -  [P-14] ----- classify class net as entity from :part relation: 0/0 new triple (772, 0:00:00.009911)
+- DEBUG -  [P-14] ----- classify class net as entity from degree arguments: 0/0 new triple (772, 0:00:00.022209)
+- DEBUG -  [P-14] ----- Associate mother to class net from :domain relation: 0/0 new triple (772, 0:00:00.009417)
+- DEBUG -  [P-14] ----- Propagate individuals to net with same base node: 0/4 new triple (772, 0:00:00.041116)
+- DEBUG -  [P-14] ----- Propagate individuals to net with domain link: 0/0 new triple (772, 0:00:00.009022)
+- INFO -  [P-14] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-14] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (772, 0:00:00.022700)
+- DEBUG -  [P-14] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-14] ----- step: Transduction
+- DEBUG -  [P-14] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-14] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-14] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-14] ----- 121 triples extracted during Transduction step
+- INFO -  [P-14] -- Step 3: Generation
+- INFO -  [P-14] --- Sequence: OWL Generation Sequence
+- INFO -  [P-14] ----- generate OWL class: 29/29 new triples (801, 0:00:00.336482)
+- INFO -  [P-14] ----- generate OWL property: 4/4 new triples (805, 0:00:00.052974)
+- INFO -  [P-14] ----- generate OWL individual: 4/8 new triples (809, 0:00:00.096996)
+- DEBUG -  [P-14] ----- generate OWL relation (property): 0/0 new triple (809, 0:00:00.008018)
+- DEBUG -  [P-14] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-14] ----- step: Generation
+- DEBUG -  [P-14] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-14] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-14] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-14] ----- 37 triples extracted during Generation step
+- DEBUG -  [P-14] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-14] ----- Number of factoids: 41
+- DEBUG -  [P-14] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-14] Success (41 extracted triple(s))
+- INFO - 
+ [P-15]     *** extraction from sentence 15 *** 
+- INFO -  [P-15] -- Work Structure Preparation
+- DEBUG -  [P-15] --- Graph Initialization
+- DEBUG -  [P-15] ----- Configuration Loading
+- DEBUG -  [P-15] -------- RDF Schema (320)
+- DEBUG -  [P-15] -------- Semantic Net Definition (488)
+- DEBUG -  [P-15] -------- Config Parameter Definition (522)
+- DEBUG -  [P-15] ----- Frame Ontology Loading
+- DEBUG -  [P-15] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-15] --- Source Data Import
+- DEBUG -  [P-15] ----- Sentence Loading
+- DEBUG -  [P-15] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-15/WikiAbstract-SolarSystem-15.stog.amr.ttl (637)
+- DEBUG -  [P-15] --- Export work graph as turtle
+- DEBUG -  [P-15] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-15] ----- Sentence (id): WikiAbstract-SolarSystem-15
+- INFO -  [P-15] ----- Sentence (text): Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus.
+- INFO -  [P-15] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-15] ----- Step number: 3
+- INFO -  [P-15] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-15] ----- Total rule number: 0
+- INFO -  [P-15] -- Step 1: Preprocessing
+- INFO -  [P-15] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-15] ----- fix AMR bug (1): 0/0 new triple (637, 0:00:00.018896)
+- INFO -  [P-15] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-15] ----- reclassify AMR-LD concept (1): 5/5 new triples (642, 0:00:00.096623)
+- DEBUG -  [P-15] ----- reclassify AMR-LD concept (2): 0/0 new triple (642, 0:00:00.045696)
+- INFO -  [P-15] ----- reclassify AMR-LD concept (3): 16/16 new triples (658, 0:00:00.032409)
+- INFO -  [P-15] ----- reclassify AMR-LD concept (4): 20/20 new triples (678, 0:00:00.048710)
+- INFO -  [P-15] ----- reclassify AMR-LD concept (5): 8/8 new triples (686, 0:00:00.035937)
+- DEBUG -  [P-15] ----- reify roles as concept: 0/0 new triple (686, 0:00:00.038991)
+- INFO -  [P-15] ----- reclassify existing variable: 89/89 new triples (775, 0:00:00.018663)
+- DEBUG -  [P-15] ----- add new variable for reified concept: 0/0 new triple (775, 0:00:00.049605)
+- INFO -  [P-15] ----- add AMR leaf for reclassified concept: 60/60 new triples (835, 0:00:00.026027)
+- DEBUG -  [P-15] ----- add AMR leaf for reified concept: 0/0 new triple (835, 0:00:00.010942)
+- INFO -  [P-15] ----- add AMR edge for core relation: 57/57 new triples (892, 0:00:00.123319)
+- DEBUG -  [P-15] ----- add AMR edge for reified concept: 0/0 new triple (892, 0:00:00.024149)
+- INFO -  [P-15] ----- add AMR edge for name relation: 45/45 new triples (937, 0:00:00.024661)
+- DEBUG -  [P-15] ----- add AMR edge for quant relation: 0/0 new triple (937, 0:00:00.024390)
+- DEBUG -  [P-15] ----- add AMR edge for polarity relation: 0/0 new triple (937, 0:00:00.030547)
+- INFO -  [P-15] ----- update AMR edge role 1: 28/28 new triples (965, 0:00:00.120517)
+- INFO -  [P-15] ----- add AMR root: 5/5 new triples (970, 0:00:00.010186)
+- DEBUG -  [P-15] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-15] ----- step: Preprocessing
+- DEBUG -  [P-15] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-15] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-15] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-15] ----- 333 triples extracted during Preprocessing step
+- INFO -  [P-15] -- Step 2: Transduction
+- INFO -  [P-15] --- Sequence: atomic extraction sequence
+- INFO -  [P-15] ----- extract atom classes: 90/90 new triples (1060, 0:00:00.439545)
+- INFO -  [P-15] ----- extract atom individuals: 72/72 new triples (1132, 0:00:00.293046)
+- INFO -  [P-15] ----- extract atomic properties: 51/51 new triples (1183, 0:00:00.153340)
+- INFO -  [P-15] ----- extract atom values: 45/45 new triples (1228, 0:00:00.215481)
+- INFO -  [P-15] ----- extract atom phenomena: 7/7 new triples (1235, 0:00:00.041190)
+- INFO -  [P-15] ----- propagate atom relations: 62/202 new triples (1297, 0:00:03.394279)
+- INFO -  [P-15] --- Sequence: classification sequence (1)
+- DEBUG -  [P-15] ----- classify modality phenomena: 0/0 new triple (1297, 0:00:00.036630)
+- INFO -  [P-15] ----- reclassify argument property to class: 12/16 new triples (1309, 0:00:00.117138)
+- INFO -  [P-15] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-15] ----- analyze "polarity" phenomena (1): 0/0 new triple (1309, 0:00:00.012076)
+- DEBUG -  [P-15] ----- analyze "polarity" phenomena (2): 0/0 new triple (1309, 0:00:00.020767)
+- DEBUG -  [P-15] ----- analyze "polarity" phenomena (3): 0/0 new triple (1309, 0:00:00.027956)
+- DEBUG -  [P-15] ----- analyze "polarity" phenomena (4): 0/0 new triple (1309, 0:00:00.045043)
+- DEBUG -  [P-15] ----- analyze "polarity" phenomena (5): 0/0 new triple (1309, 0:00:00.043397)
+- INFO -  [P-15] ----- analyze modifier phenomena (mod): 22/26 new triples (1331, 0:00:00.105781)
+- DEBUG -  [P-15] ----- classify modality phenomena: 0/0 new triple (1331, 0:00:00.020189)
+- INFO -  [P-15] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-15] ----- analyze "or" phenomena (1): 0/0 new triple (1331, 0:00:00.011963)
+- DEBUG -  [P-15] ----- analyze "or" phenomena (2): 0/0 new triple (1331, 0:00:00.012378)
+- INFO -  [P-15] ----- analyze "and" phenomena (1): 9/126 new triples (1340, 0:00:00.157270)
+- DEBUG -  [P-15] ----- analyze "and" phenomena (2): 0/0 new triple (1340, 0:00:00.012828)
+- INFO -  [P-15] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-15] ----- extract composite classes (1): 0/0 new triple (1340, 0:00:00.030482)
+- DEBUG -  [P-15] ----- extract composite classes (2): 0/0 new triple (1340, 0:00:00.054585)
+- INFO -  [P-15] --- Sequence: classification sequence (2)
+- INFO -  [P-15] ----- classify class net as entity from core arguments: 24/147 new triples (1364, 0:00:00.447410)
+- DEBUG -  [P-15] ----- classify class net as entity from :part relation: 0/0 new triple (1364, 0:00:00.019674)
+- DEBUG -  [P-15] ----- classify class net as entity from degree arguments: 0/0 new triple (1364, 0:00:00.033303)
+- DEBUG -  [P-15] ----- Associate mother to class net from :domain relation: 0/0 new triple (1364, 0:00:00.013133)
+- DEBUG -  [P-15] ----- Propagate individuals to net with same base node: 0/110 new triple (1364, 0:00:00.488740)
+- DEBUG -  [P-15] ----- Propagate individuals to net with domain link: 0/0 new triple (1364, 0:00:00.011660)
+- INFO -  [P-15] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-15] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1364, 0:00:00.010165)
+- DEBUG -  [P-15] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-15] ----- step: Transduction
+- DEBUG -  [P-15] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-15] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-15] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-15] ----- 394 triples extracted during Transduction step
+- INFO -  [P-15] -- Step 3: Generation
+- INFO -  [P-15] --- Sequence: OWL Generation Sequence
+- INFO -  [P-15] ----- generate OWL class: 31/31 new triples (1395, 0:00:00.328145)
+- INFO -  [P-15] ----- generate OWL property: 12/12 new triples (1407, 0:00:00.129196)
+- INFO -  [P-15] ----- generate OWL individual: 38/40 new triples (1445, 0:00:00.606184)
+- DEBUG -  [P-15] ----- generate OWL relation (property): 0/0 new triple (1445, 0:00:00.008809)
+- DEBUG -  [P-15] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-15] ----- step: Generation
+- DEBUG -  [P-15] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-15] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-15] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-15] ----- 81 triples extracted during Generation step
+- DEBUG -  [P-15] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-15] ----- Number of factoids: 83
+- DEBUG -  [P-15] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-15] Success (83 extracted triple(s))
+- INFO - 
+ [P-16]     *** extraction from sentence 16 *** 
+- INFO -  [P-16] -- Work Structure Preparation
+- DEBUG -  [P-16] --- Graph Initialization
+- DEBUG -  [P-16] ----- Configuration Loading
+- DEBUG -  [P-16] -------- RDF Schema (320)
+- DEBUG -  [P-16] -------- Semantic Net Definition (488)
+- DEBUG -  [P-16] -------- Config Parameter Definition (522)
+- DEBUG -  [P-16] ----- Frame Ontology Loading
+- DEBUG -  [P-16] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-16] --- Source Data Import
+- DEBUG -  [P-16] ----- Sentence Loading
+- DEBUG -  [P-16] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-16/WikiAbstract-SolarSystem-16.stog.amr.ttl (623)
+- DEBUG -  [P-16] --- Export work graph as turtle
+- DEBUG -  [P-16] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-16] ----- Sentence (id): WikiAbstract-SolarSystem-16
+- INFO -  [P-16] ----- Sentence (text): In addition to these two regions, various other small-body populations, including comets, centaurs and interplanetary dust clouds, freely travel between regions.
+- INFO -  [P-16] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-16] ----- Step number: 3
+- INFO -  [P-16] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-16] ----- Total rule number: 0
+- INFO -  [P-16] -- Step 1: Preprocessing
+- INFO -  [P-16] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-16] ----- fix AMR bug (1): 0/0 new triple (623, 0:00:00.017311)
+- INFO -  [P-16] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-16] ----- reclassify AMR-LD concept (1): 5/5 new triples (628, 0:00:00.101197)
+- INFO -  [P-16] ----- reclassify AMR-LD concept (2): 4/4 new triples (632, 0:00:00.049494)
+- INFO -  [P-16] ----- reclassify AMR-LD concept (3): 12/12 new triples (644, 0:00:00.036139)
+- INFO -  [P-16] ----- reclassify AMR-LD concept (4): 48/48 new triples (692, 0:00:00.051530)
+- DEBUG -  [P-16] ----- reclassify AMR-LD concept (5): 0/0 new triple (692, 0:00:00.032490)
+- DEBUG -  [P-16] ----- reify roles as concept: 0/0 new triple (692, 0:00:00.038990)
+- INFO -  [P-16] ----- reclassify existing variable: 76/76 new triples (768, 0:00:00.019323)
+- DEBUG -  [P-16] ----- add new variable for reified concept: 0/0 new triple (768, 0:00:00.049244)
+- INFO -  [P-16] ----- add AMR leaf for reclassified concept: 57/57 new triples (825, 0:00:00.030489)
+- DEBUG -  [P-16] ----- add AMR leaf for reified concept: 0/0 new triple (825, 0:00:00.012380)
+- INFO -  [P-16] ----- add AMR edge for core relation: 54/54 new triples (879, 0:00:00.113271)
+- DEBUG -  [P-16] ----- add AMR edge for reified concept: 0/0 new triple (879, 0:00:00.025038)
+- DEBUG -  [P-16] ----- add AMR edge for name relation: 0/0 new triple (879, 0:00:00.021201)
+- INFO -  [P-16] ----- add AMR edge for quant relation: 5/5 new triples (884, 0:00:00.022291)
+- DEBUG -  [P-16] ----- add AMR edge for polarity relation: 0/0 new triple (884, 0:00:00.031807)
+- INFO -  [P-16] ----- update AMR edge role 1: 17/17 new triples (901, 0:00:00.083900)
+- INFO -  [P-16] ----- add AMR root: 5/5 new triples (906, 0:00:00.011179)
+- DEBUG -  [P-16] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-16] ----- step: Preprocessing
+- DEBUG -  [P-16] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-16] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-16] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-16] ----- 283 triples extracted during Preprocessing step
+- INFO -  [P-16] -- Step 2: Transduction
+- INFO -  [P-16] --- Sequence: atomic extraction sequence
+- INFO -  [P-16] ----- extract atom classes: 78/78 new triples (984, 0:00:00.403792)
+- DEBUG -  [P-16] ----- extract atom individuals: 0/0 new triple (984, 0:00:00.022844)
+- INFO -  [P-16] ----- extract atomic properties: 50/50 new triples (1034, 0:00:00.161572)
+- INFO -  [P-16] ----- extract atom values: 5/5 new triples (1039, 0:00:00.027341)
+- INFO -  [P-16] ----- extract atom phenomena: 14/14 new triples (1053, 0:00:00.073065)
+- INFO -  [P-16] ----- propagate atom relations: 26/66 new triples (1079, 0:00:01.392157)
+- INFO -  [P-16] --- Sequence: classification sequence (1)
+- DEBUG -  [P-16] ----- classify modality phenomena: 0/0 new triple (1079, 0:00:00.022320)
+- INFO -  [P-16] ----- reclassify argument property to class: 10/12 new triples (1089, 0:00:00.076766)
+- INFO -  [P-16] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-16] ----- analyze "polarity" phenomena (1): 0/0 new triple (1089, 0:00:00.008702)
+- DEBUG -  [P-16] ----- analyze "polarity" phenomena (2): 0/0 new triple (1089, 0:00:00.017931)
+- DEBUG -  [P-16] ----- analyze "polarity" phenomena (3): 0/0 new triple (1089, 0:00:00.017570)
+- DEBUG -  [P-16] ----- analyze "polarity" phenomena (4): 0/0 new triple (1089, 0:00:00.041429)
+- DEBUG -  [P-16] ----- analyze "polarity" phenomena (5): 0/0 new triple (1089, 0:00:00.042823)
+- INFO -  [P-16] ----- analyze modifier phenomena (mod): 108/128 new triples (1197, 0:00:00.441737)
+- DEBUG -  [P-16] ----- classify modality phenomena: 0/0 new triple (1197, 0:00:00.025035)
+- INFO -  [P-16] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-16] ----- analyze "or" phenomena (1): 0/0 new triple (1197, 0:00:00.013330)
+- DEBUG -  [P-16] ----- analyze "or" phenomena (2): 0/0 new triple (1197, 0:00:00.012034)
+- INFO -  [P-16] ----- analyze "and" phenomena (1): 4/52 new triples (1201, 0:00:00.154592)
+- DEBUG -  [P-16] ----- analyze "and" phenomena (2): 0/0 new triple (1201, 0:00:00.019057)
+- INFO -  [P-16] --- Sequence: composite class extraction sequence
+- INFO -  [P-16] ----- extract composite classes (1): 42/58 new triples (1243, 0:00:00.316469)
+- DEBUG -  [P-16] ----- extract composite classes (2): 0/0 new triple (1243, 0:00:00.050201)
+- INFO -  [P-16] --- Sequence: classification sequence (2)
+- INFO -  [P-16] ----- classify class net as entity from core arguments: 16/101 new triples (1259, 0:00:00.295904)
+- DEBUG -  [P-16] ----- classify class net as entity from :part relation: 0/0 new triple (1259, 0:00:00.010765)
+- DEBUG -  [P-16] ----- classify class net as entity from degree arguments: 0/0 new triple (1259, 0:00:00.024544)
+- DEBUG -  [P-16] ----- Associate mother to class net from :domain relation: 0/0 new triple (1259, 0:00:00.010230)
+- DEBUG -  [P-16] ----- Propagate individuals to net with same base node: 0/10 new triple (1259, 0:00:00.101840)
+- DEBUG -  [P-16] ----- Propagate individuals to net with domain link: 0/0 new triple (1259, 0:00:00.009746)
+- INFO -  [P-16] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-16] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1259, 0:00:00.031911)
+- DEBUG -  [P-16] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-16] ----- step: Transduction
+- DEBUG -  [P-16] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-16] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-16] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-16] ----- 353 triples extracted during Transduction step
+- INFO -  [P-16] -- Step 3: Generation
+- INFO -  [P-16] --- Sequence: OWL Generation Sequence
+- INFO -  [P-16] ----- generate OWL class: 81/85 new triples (1340, 0:00:00.923291)
+- INFO -  [P-16] ----- generate OWL property: 12/12 new triples (1352, 0:00:00.134577)
+- INFO -  [P-16] ----- generate OWL individual: 10/20 new triples (1362, 0:00:00.263084)
+- DEBUG -  [P-16] ----- generate OWL relation (property): 0/0 new triple (1362, 0:00:00.009130)
+- DEBUG -  [P-16] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-16] ----- step: Generation
+- DEBUG -  [P-16] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-16] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-16] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-16] ----- 103 triples extracted during Generation step
+- DEBUG -  [P-16] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-16] ----- Number of factoids: 117
+- DEBUG -  [P-16] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-16] Success (117 extracted triple(s))
+- INFO - 
+ [P-17]     *** extraction from sentence 17 *** 
+- INFO -  [P-17] -- Work Structure Preparation
+- DEBUG -  [P-17] --- Graph Initialization
+- DEBUG -  [P-17] ----- Configuration Loading
+- DEBUG -  [P-17] -------- RDF Schema (320)
+- DEBUG -  [P-17] -------- Semantic Net Definition (488)
+- DEBUG -  [P-17] -------- Config Parameter Definition (522)
+- DEBUG -  [P-17] ----- Frame Ontology Loading
+- DEBUG -  [P-17] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-17] --- Source Data Import
+- DEBUG -  [P-17] ----- Sentence Loading
+- DEBUG -  [P-17] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-17/WikiAbstract-SolarSystem-17.stog.amr.ttl (643)
+- DEBUG -  [P-17] --- Export work graph as turtle
+- DEBUG -  [P-17] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-17] ----- Sentence (id): WikiAbstract-SolarSystem-17
+- INFO -  [P-17] ----- Sentence (text): Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed "moons" after the Moon.
+- INFO -  [P-17] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-17] ----- Step number: 3
+- INFO -  [P-17] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-17] ----- Total rule number: 0
+- INFO -  [P-17] -- Step 1: Preprocessing
+- INFO -  [P-17] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-17] ----- fix AMR bug (1): 0/0 new triple (643, 0:00:00.021893)
+- INFO -  [P-17] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-17] ----- reclassify AMR-LD concept (1): 15/15 new triples (658, 0:00:00.136864)
+- INFO -  [P-17] ----- reclassify AMR-LD concept (2): 12/12 new triples (670, 0:00:00.062920)
+- INFO -  [P-17] ----- reclassify AMR-LD concept (3): 16/16 new triples (686, 0:00:00.036050)
+- INFO -  [P-17] ----- reclassify AMR-LD concept (4): 28/28 new triples (714, 0:00:00.060341)
+- INFO -  [P-17] ----- reclassify AMR-LD concept (5): 8/8 new triples (722, 0:00:00.031280)
+- DEBUG -  [P-17] ----- reify roles as concept: 0/0 new triple (722, 0:00:00.044021)
+- INFO -  [P-17] ----- reclassify existing variable: 92/92 new triples (814, 0:00:00.027188)
+- DEBUG -  [P-17] ----- add new variable for reified concept: 0/0 new triple (814, 0:00:00.045627)
+- INFO -  [P-17] ----- add AMR leaf for reclassified concept: 69/69 new triples (883, 0:00:00.037370)
+- DEBUG -  [P-17] ----- add AMR leaf for reified concept: 0/0 new triple (883, 0:00:00.011589)
+- INFO -  [P-17] ----- add AMR edge for core relation: 72/72 new triples (955, 0:00:00.138349)
+- DEBUG -  [P-17] ----- add AMR edge for reified concept: 0/0 new triple (955, 0:00:00.021650)
+- DEBUG -  [P-17] ----- add AMR edge for name relation: 0/0 new triple (955, 0:00:00.023558)
+- INFO -  [P-17] ----- add AMR edge for quant relation: 8/10 new triples (963, 0:00:00.025835)
+- DEBUG -  [P-17] ----- add AMR edge for polarity relation: 0/0 new triple (963, 0:00:00.036464)
+- INFO -  [P-17] ----- update AMR edge role 1: 25/25 new triples (988, 0:00:00.129568)
+- INFO -  [P-17] ----- add AMR root: 5/5 new triples (993, 0:00:00.017441)
+- DEBUG -  [P-17] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-17] ----- step: Preprocessing
+- DEBUG -  [P-17] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-17] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-17] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-17] ----- 350 triples extracted during Preprocessing step
+- INFO -  [P-17] -- Step 2: Transduction
+- INFO -  [P-17] --- Sequence: atomic extraction sequence
+- INFO -  [P-17] ----- extract atom classes: 66/66 new triples (1059, 0:00:00.531116)
+- DEBUG -  [P-17] ----- extract atom individuals: 0/0 new triple (1059, 0:00:00.035015)
+- INFO -  [P-17] ----- extract atomic properties: 100/100 new triples (1159, 0:00:00.334278)
+- INFO -  [P-17] ----- extract atom values: 5/5 new triples (1164, 0:00:00.031279)
+- INFO -  [P-17] ----- extract atom phenomena: 28/28 new triples (1192, 0:00:00.134326)
+- INFO -  [P-17] ----- propagate atom relations: 34/96 new triples (1226, 0:00:01.948936)
+- INFO -  [P-17] --- Sequence: classification sequence (1)
+- INFO -  [P-17] ----- classify modality phenomena: 1/3 new triple (1227, 0:00:00.043660)
+- DEBUG -  [P-17] ----- reclassify argument property to class: 0/0 new triple (1227, 0:00:00.032819)
+- INFO -  [P-17] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-17] ----- analyze "polarity" phenomena (1): 0/0 new triple (1227, 0:00:00.011787)
+- DEBUG -  [P-17] ----- analyze "polarity" phenomena (2): 0/0 new triple (1227, 0:00:00.026611)
+- DEBUG -  [P-17] ----- analyze "polarity" phenomena (3): 0/0 new triple (1227, 0:00:00.021531)
+- DEBUG -  [P-17] ----- analyze "polarity" phenomena (4): 0/0 new triple (1227, 0:00:00.045941)
+- DEBUG -  [P-17] ----- analyze "polarity" phenomena (5): 0/0 new triple (1227, 0:00:00.042303)
+- INFO -  [P-17] ----- analyze modifier phenomena (mod): 22/26 new triples (1249, 0:00:00.099885)
+- DEBUG -  [P-17] ----- classify modality phenomena: 0/3 new triple (1249, 0:00:00.039922)
+- INFO -  [P-17] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-17] ----- analyze "or" phenomena (1): 0/0 new triple (1249, 0:00:00.014496)
+- DEBUG -  [P-17] ----- analyze "or" phenomena (2): 0/0 new triple (1249, 0:00:00.013762)
+- INFO -  [P-17] ----- analyze "and" phenomena (1): 2/14 new triples (1251, 0:00:00.153910)
+- DEBUG -  [P-17] ----- analyze "and" phenomena (2): 0/0 new triple (1251, 0:00:00.012501)
+- INFO -  [P-17] --- Sequence: composite class extraction sequence
+- INFO -  [P-17] ----- extract composite classes (1): 45/48 new triples (1296, 0:00:00.237227)
+- INFO -  [P-17] ----- extract composite classes (2): 50/54 new triples (1346, 0:00:00.267242)
+- INFO -  [P-17] --- Sequence: classification sequence (2)
+- INFO -  [P-17] ----- classify class net as entity from core arguments: 18/135 new triples (1364, 0:00:00.360841)
+- DEBUG -  [P-17] ----- classify class net as entity from :part relation: 0/0 new triple (1364, 0:00:00.010596)
+- DEBUG -  [P-17] ----- classify class net as entity from degree arguments: 0/0 new triple (1364, 0:00:00.020341)
+- DEBUG -  [P-17] ----- Associate mother to class net from :domain relation: 0/0 new triple (1364, 0:00:00.009965)
+- DEBUG -  [P-17] ----- Propagate individuals to net with same base node: 0/2 new triple (1364, 0:00:00.031895)
+- DEBUG -  [P-17] ----- Propagate individuals to net with domain link: 0/0 new triple (1364, 0:00:00.008392)
+- INFO -  [P-17] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-17] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1364, 0:00:00.056134)
+- DEBUG -  [P-17] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-17] ----- step: Transduction
+- DEBUG -  [P-17] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-17] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-17] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-17] ----- 371 triples extracted during Transduction step
+- INFO -  [P-17] -- Step 3: Generation
+- INFO -  [P-17] --- Sequence: OWL Generation Sequence
+- INFO -  [P-17] ----- generate OWL class: 67/75 new triples (1431, 0:00:00.886812)
+- INFO -  [P-17] ----- generate OWL property: 28/32 new triples (1459, 0:00:00.309184)
+- INFO -  [P-17] ----- generate OWL individual: 2/4 new triples (1461, 0:00:00.052311)
+- DEBUG -  [P-17] ----- generate OWL relation (property): 0/0 new triple (1461, 0:00:00.011213)
+- DEBUG -  [P-17] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-17] ----- step: Generation
+- DEBUG -  [P-17] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-17] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-17] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-17] ----- 97 triples extracted during Generation step
+- DEBUG -  [P-17] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-17] ----- Number of factoids: 111
+- DEBUG -  [P-17] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-17] Success (111 extracted triple(s))
+- INFO - 
+ [P-18]     *** extraction from sentence 18 *** 
+- INFO -  [P-18] -- Work Structure Preparation
+- DEBUG -  [P-18] --- Graph Initialization
+- DEBUG -  [P-18] ----- Configuration Loading
+- DEBUG -  [P-18] -------- RDF Schema (320)
+- DEBUG -  [P-18] -------- Semantic Net Definition (488)
+- DEBUG -  [P-18] -------- Config Parameter Definition (522)
+- DEBUG -  [P-18] ----- Frame Ontology Loading
+- DEBUG -  [P-18] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-18] --- Source Data Import
+- DEBUG -  [P-18] ----- Sentence Loading
+- DEBUG -  [P-18] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-18/WikiAbstract-SolarSystem-18.stog.amr.ttl (595)
+- DEBUG -  [P-18] --- Export work graph as turtle
+- DEBUG -  [P-18] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-18] ----- Sentence (id): WikiAbstract-SolarSystem-18
+- INFO -  [P-18] ----- Sentence (text): Each of the outer planets is encircled by planetary rings of dust and other small objects.
+- INFO -  [P-18] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-18] ----- Step number: 3
+- INFO -  [P-18] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-18] ----- Total rule number: 0
+- INFO -  [P-18] -- Step 1: Preprocessing
+- INFO -  [P-18] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-18] ----- fix AMR bug (1): 0/0 new triple (595, 0:00:00.013915)
+- INFO -  [P-18] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-18] ----- reclassify AMR-LD concept (1): 5/5 new triples (600, 0:00:00.090823)
+- DEBUG -  [P-18] ----- reclassify AMR-LD concept (2): 0/0 new triple (600, 0:00:00.128190)
+- INFO -  [P-18] ----- reclassify AMR-LD concept (3): 4/4 new triples (604, 0:00:00.032938)
+- INFO -  [P-18] ----- reclassify AMR-LD concept (4): 28/28 new triples (632, 0:00:00.048973)
+- INFO -  [P-18] ----- reclassify AMR-LD concept (5): 4/4 new triples (636, 0:00:00.034588)
+- DEBUG -  [P-18] ----- reify roles as concept: 0/0 new triple (636, 0:00:00.037041)
+- INFO -  [P-18] ----- reclassify existing variable: 44/44 new triples (680, 0:00:00.017036)
+- DEBUG -  [P-18] ----- add new variable for reified concept: 0/0 new triple (680, 0:00:00.052702)
+- INFO -  [P-18] ----- add AMR leaf for reclassified concept: 33/33 new triples (713, 0:00:00.017404)
+- DEBUG -  [P-18] ----- add AMR leaf for reified concept: 0/0 new triple (713, 0:00:00.010606)
+- INFO -  [P-18] ----- add AMR edge for core relation: 30/30 new triples (743, 0:00:00.088527)
+- DEBUG -  [P-18] ----- add AMR edge for reified concept: 0/0 new triple (743, 0:00:00.021812)
+- DEBUG -  [P-18] ----- add AMR edge for name relation: 0/0 new triple (743, 0:00:00.017836)
+- DEBUG -  [P-18] ----- add AMR edge for quant relation: 0/0 new triple (743, 0:00:00.025050)
+- DEBUG -  [P-18] ----- add AMR edge for polarity relation: 0/0 new triple (743, 0:00:00.026397)
+- INFO -  [P-18] ----- update AMR edge role 1: 9/9 new triples (752, 0:00:00.051725)
+- INFO -  [P-18] ----- add AMR root: 5/5 new triples (757, 0:00:00.009598)
+- DEBUG -  [P-18] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-18] ----- step: Preprocessing
+- DEBUG -  [P-18] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-18] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-18] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-18] ----- 162 triples extracted during Preprocessing step
+- INFO -  [P-18] -- Step 2: Transduction
+- INFO -  [P-18] --- Sequence: atomic extraction sequence
+- INFO -  [P-18] ----- extract atom classes: 54/54 new triples (811, 0:00:00.301526)
+- DEBUG -  [P-18] ----- extract atom individuals: 0/0 new triple (811, 0:00:00.028719)
+- INFO -  [P-18] ----- extract atomic properties: 13/13 new triples (824, 0:00:00.084533)
+- DEBUG -  [P-18] ----- extract atom values: 0/0 new triple (824, 0:00:00.011139)
+- INFO -  [P-18] ----- extract atom phenomena: 7/7 new triples (831, 0:00:00.084734)
+- INFO -  [P-18] ----- propagate atom relations: 14/36 new triples (845, 0:00:01.397160)
+- INFO -  [P-18] --- Sequence: classification sequence (1)
+- DEBUG -  [P-18] ----- classify modality phenomena: 0/0 new triple (845, 0:00:00.031022)
+- DEBUG -  [P-18] ----- reclassify argument property to class: 0/0 new triple (845, 0:00:00.048299)
+- INFO -  [P-18] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-18] ----- analyze "polarity" phenomena (1): 0/0 new triple (845, 0:00:00.013078)
+- DEBUG -  [P-18] ----- analyze "polarity" phenomena (2): 0/0 new triple (845, 0:00:00.027526)
+- DEBUG -  [P-18] ----- analyze "polarity" phenomena (3): 0/0 new triple (845, 0:00:00.032025)
+- DEBUG -  [P-18] ----- analyze "polarity" phenomena (4): 0/0 new triple (845, 0:00:00.068466)
+- DEBUG -  [P-18] ----- analyze "polarity" phenomena (5): 0/0 new triple (845, 0:00:00.060056)
+- INFO -  [P-18] ----- analyze modifier phenomena (mod): 107/128 new triples (952, 0:00:00.933340)
+- DEBUG -  [P-18] ----- classify modality phenomena: 0/0 new triple (952, 0:00:00.051322)
+- INFO -  [P-18] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-18] ----- analyze "or" phenomena (1): 0/0 new triple (952, 0:00:00.022810)
+- DEBUG -  [P-18] ----- analyze "or" phenomena (2): 0/0 new triple (952, 0:00:00.023798)
+- DEBUG -  [P-18] ----- analyze "and" phenomena (1): 0/0 new triple (952, 0:00:00.033103)
+- DEBUG -  [P-18] ----- analyze "and" phenomena (2): 0/0 new triple (952, 0:00:00.024032)
+- INFO -  [P-18] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-18] ----- extract composite classes (1): 0/0 new triple (952, 0:00:00.085527)
+- INFO -  [P-18] ----- extract composite classes (2): 53/58 new triples (1005, 0:00:00.579212)
+- INFO -  [P-18] --- Sequence: classification sequence (2)
+- INFO -  [P-18] ----- classify class net as entity from core arguments: 10/39 new triples (1015, 0:00:00.253244)
+- DEBUG -  [P-18] ----- classify class net as entity from :part relation: 0/0 new triple (1015, 0:00:00.021819)
+- DEBUG -  [P-18] ----- classify class net as entity from degree arguments: 0/0 new triple (1015, 0:00:00.050042)
+- DEBUG -  [P-18] ----- Associate mother to class net from :domain relation: 0/0 new triple (1015, 0:00:00.018575)
+- DEBUG -  [P-18] ----- Propagate individuals to net with same base node: 0/10 new triple (1015, 0:00:00.204585)
+- DEBUG -  [P-18] ----- Propagate individuals to net with domain link: 0/0 new triple (1015, 0:00:00.016293)
+- INFO -  [P-18] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-18] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1015, 0:00:00.082815)
+- DEBUG -  [P-18] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-18] ----- step: Transduction
+- DEBUG -  [P-18] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-18] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-18] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-18] ----- 258 triples extracted during Transduction step
+- INFO -  [P-18] -- Step 3: Generation
+- INFO -  [P-18] --- Sequence: OWL Generation Sequence
+- INFO -  [P-18] ----- generate OWL class: 62/65 new triples (1077, 0:00:01.610146)
+- INFO -  [P-18] ----- generate OWL property: 4/4 new triples (1081, 0:00:00.102838)
+- INFO -  [P-18] ----- generate OWL individual: 10/20 new triples (1091, 0:00:00.475042)
+- DEBUG -  [P-18] ----- generate OWL relation (property): 0/0 new triple (1091, 0:00:00.021572)
+- DEBUG -  [P-18] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-18] ----- step: Generation
+- DEBUG -  [P-18] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-18] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-18] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-18] ----- 76 triples extracted during Generation step
+- DEBUG -  [P-18] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-18] ----- Number of factoids: 89
+- DEBUG -  [P-18] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-18] Success (89 extracted triple(s))
+- INFO - 
+ [P-19]     *** extraction from sentence 19 *** 
+- INFO -  [P-19] -- Work Structure Preparation
+- DEBUG -  [P-19] --- Graph Initialization
+- DEBUG -  [P-19] ----- Configuration Loading
+- DEBUG -  [P-19] -------- RDF Schema (320)
+- DEBUG -  [P-19] -------- Semantic Net Definition (488)
+- DEBUG -  [P-19] -------- Config Parameter Definition (522)
+- DEBUG -  [P-19] ----- Frame Ontology Loading
+- DEBUG -  [P-19] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-19] --- Source Data Import
+- DEBUG -  [P-19] ----- Sentence Loading
+- DEBUG -  [P-19] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-19/WikiAbstract-SolarSystem-19.stog.amr.ttl (617)
+- DEBUG -  [P-19] --- Export work graph as turtle
+- DEBUG -  [P-19] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-19] ----- Sentence (id): WikiAbstract-SolarSystem-19
+- INFO -  [P-19] ----- Sentence (text): The solar wind, a stream of charged particles flowing outwards from the Sun, creates a bubble-like region in the interstellar medium known as the heliosphere.
+- INFO -  [P-19] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-19] ----- Step number: 3
+- INFO -  [P-19] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-19] ----- Total rule number: 0
+- INFO -  [P-19] -- Step 1: Preprocessing
+- INFO -  [P-19] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-19] ----- fix AMR bug (1): 0/0 new triple (617, 0:00:00.033913)
+- INFO -  [P-19] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- DEBUG -  [P-19] ----- reclassify AMR-LD concept (1): 0/0 new triple (617, 0:00:00.235205)
+- INFO -  [P-19] ----- reclassify AMR-LD concept (2): 4/4 new triples (621, 0:00:00.107006)
+- INFO -  [P-19] ----- reclassify AMR-LD concept (3): 24/24 new triples (645, 0:00:00.077501)
+- INFO -  [P-19] ----- reclassify AMR-LD concept (4): 32/32 new triples (677, 0:00:00.107911)
+- DEBUG -  [P-19] ----- reclassify AMR-LD concept (5): 0/0 new triple (677, 0:00:00.055329)
+- DEBUG -  [P-19] ----- reify roles as concept: 0/0 new triple (677, 0:00:00.049445)
+- INFO -  [P-19] ----- reclassify existing variable: 60/60 new triples (737, 0:00:00.021708)
+- DEBUG -  [P-19] ----- add new variable for reified concept: 0/0 new triple (737, 0:00:00.080423)
+- INFO -  [P-19] ----- add AMR leaf for reclassified concept: 45/45 new triples (782, 0:00:00.033618)
+- DEBUG -  [P-19] ----- add AMR leaf for reified concept: 0/0 new triple (782, 0:00:00.015718)
+- INFO -  [P-19] ----- add AMR edge for core relation: 45/45 new triples (827, 0:00:00.119334)
+- DEBUG -  [P-19] ----- add AMR edge for reified concept: 0/0 new triple (827, 0:00:00.022694)
+- DEBUG -  [P-19] ----- add AMR edge for name relation: 0/0 new triple (827, 0:00:00.022258)
+- DEBUG -  [P-19] ----- add AMR edge for quant relation: 0/0 new triple (827, 0:00:00.023507)
+- DEBUG -  [P-19] ----- add AMR edge for polarity relation: 0/0 new triple (827, 0:00:00.033406)
+- INFO -  [P-19] ----- update AMR edge role 1: 12/12 new triples (839, 0:00:00.077681)
+- INFO -  [P-19] ----- add AMR root: 5/5 new triples (844, 0:00:00.011553)
+- DEBUG -  [P-19] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-19] ----- step: Preprocessing
+- DEBUG -  [P-19] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-19] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-19] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-19] ----- 227 triples extracted during Preprocessing step
+- INFO -  [P-19] -- Step 2: Transduction
+- INFO -  [P-19] --- Sequence: atomic extraction sequence
+- INFO -  [P-19] ----- extract atom classes: 48/48 new triples (892, 0:00:00.300740)
+- DEBUG -  [P-19] ----- extract atom individuals: 0/0 new triple (892, 0:00:00.020428)
+- INFO -  [P-19] ----- extract atomic properties: 88/88 new triples (980, 0:00:00.286869)
+- DEBUG -  [P-19] ----- extract atom values: 0/0 new triple (980, 0:00:00.007861)
+- DEBUG -  [P-19] ----- extract atom phenomena: 0/0 new triple (980, 0:00:00.011423)
+- INFO -  [P-19] ----- propagate atom relations: 16/48 new triples (996, 0:00:01.122447)
+- INFO -  [P-19] --- Sequence: classification sequence (1)
+- DEBUG -  [P-19] ----- classify modality phenomena: 0/0 new triple (996, 0:00:00.022334)
+- INFO -  [P-19] ----- reclassify argument property to class: 10/12 new triples (1006, 0:00:00.070999)
+- INFO -  [P-19] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-19] ----- analyze "polarity" phenomena (1): 0/0 new triple (1006, 0:00:00.012713)
+- DEBUG -  [P-19] ----- analyze "polarity" phenomena (2): 0/0 new triple (1006, 0:00:00.019166)
+- DEBUG -  [P-19] ----- analyze "polarity" phenomena (3): 0/0 new triple (1006, 0:00:00.017137)
+- DEBUG -  [P-19] ----- analyze "polarity" phenomena (4): 0/0 new triple (1006, 0:00:00.041178)
+- DEBUG -  [P-19] ----- analyze "polarity" phenomena (5): 0/0 new triple (1006, 0:00:00.043803)
+- INFO -  [P-19] ----- analyze modifier phenomena (mod): 22/26 new triples (1028, 0:00:00.101000)
+- DEBUG -  [P-19] ----- classify modality phenomena: 0/0 new triple (1028, 0:00:00.023376)
+- INFO -  [P-19] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-19] ----- analyze "or" phenomena (1): 0/0 new triple (1028, 0:00:00.011485)
+- DEBUG -  [P-19] ----- analyze "or" phenomena (2): 0/0 new triple (1028, 0:00:00.012808)
+- DEBUG -  [P-19] ----- analyze "and" phenomena (1): 0/0 new triple (1028, 0:00:00.010595)
+- DEBUG -  [P-19] ----- analyze "and" phenomena (2): 0/0 new triple (1028, 0:00:00.016631)
+- INFO -  [P-19] --- Sequence: composite class extraction sequence
+- INFO -  [P-19] ----- extract composite classes (1): 25/27 new triples (1053, 0:00:00.134310)
+- INFO -  [P-19] ----- extract composite classes (2): 45/48 new triples (1098, 0:00:00.275173)
+- INFO -  [P-19] --- Sequence: classification sequence (2)
+- INFO -  [P-19] ----- classify class net as entity from core arguments: 14/101 new triples (1112, 0:00:00.302775)
+- DEBUG -  [P-19] ----- classify class net as entity from :part relation: 0/0 new triple (1112, 0:00:00.013582)
+- DEBUG -  [P-19] ----- classify class net as entity from degree arguments: 0/0 new triple (1112, 0:00:00.026785)
+- DEBUG -  [P-19] ----- Associate mother to class net from :domain relation: 0/0 new triple (1112, 0:00:00.013488)
+- DEBUG -  [P-19] ----- Propagate individuals to net with same base node: 0/2 new triple (1112, 0:00:00.043321)
+- DEBUG -  [P-19] ----- Propagate individuals to net with domain link: 0/0 new triple (1112, 0:00:00.014199)
+- INFO -  [P-19] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-19] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1112, 0:00:00.064637)
+- DEBUG -  [P-19] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-19] ----- step: Transduction
+- DEBUG -  [P-19] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-19] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-19] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-19] ----- 268 triples extracted during Transduction step
+- INFO -  [P-19] -- Step 3: Generation
+- INFO -  [P-19] --- Sequence: OWL Generation Sequence
+- INFO -  [P-19] ----- generate OWL class: 60/60 new triples (1172, 0:00:00.613052)
+- INFO -  [P-19] ----- generate OWL property: 24/24 new triples (1196, 0:00:00.208347)
+- INFO -  [P-19] ----- generate OWL individual: 2/4 new triples (1198, 0:00:00.077681)
+- DEBUG -  [P-19] ----- generate OWL relation (property): 0/0 new triple (1198, 0:00:00.013420)
+- DEBUG -  [P-19] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-19] ----- step: Generation
+- DEBUG -  [P-19] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-19] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-19] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-19] ----- 86 triples extracted during Generation step
+- DEBUG -  [P-19] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-19] ----- Number of factoids: 88
+- DEBUG -  [P-19] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-19] Success (88 extracted triple(s))
+- INFO - 
+ [P-20]     *** extraction from sentence 20 *** 
+- INFO -  [P-20] -- Work Structure Preparation
+- DEBUG -  [P-20] --- Graph Initialization
+- DEBUG -  [P-20] ----- Configuration Loading
+- DEBUG -  [P-20] -------- RDF Schema (320)
+- DEBUG -  [P-20] -------- Semantic Net Definition (488)
+- DEBUG -  [P-20] -------- Config Parameter Definition (522)
+- DEBUG -  [P-20] ----- Frame Ontology Loading
+- DEBUG -  [P-20] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-20] --- Source Data Import
+- DEBUG -  [P-20] ----- Sentence Loading
+- DEBUG -  [P-20] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-20/WikiAbstract-SolarSystem-20.stog.amr.ttl (611)
+- DEBUG -  [P-20] --- Export work graph as turtle
+- DEBUG -  [P-20] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-20] ----- Sentence (id): WikiAbstract-SolarSystem-20
+- INFO -  [P-20] ----- Sentence (text): The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc.
+- INFO -  [P-20] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-20] ----- Step number: 3
+- INFO -  [P-20] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-20] ----- Total rule number: 0
+- INFO -  [P-20] -- Step 1: Preprocessing
+- INFO -  [P-20] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-20] ----- fix AMR bug (1): 0/0 new triple (611, 0:00:00.023537)
+- INFO -  [P-20] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- DEBUG -  [P-20] ----- reclassify AMR-LD concept (1): 0/0 new triple (611, 0:00:00.233783)
+- INFO -  [P-20] ----- reclassify AMR-LD concept (2): 4/4 new triples (615, 0:00:00.258101)
+- INFO -  [P-20] ----- reclassify AMR-LD concept (3): 20/20 new triples (635, 0:00:00.071165)
+- INFO -  [P-20] ----- reclassify AMR-LD concept (4): 32/32 new triples (667, 0:00:00.088144)
+- DEBUG -  [P-20] ----- reclassify AMR-LD concept (5): 0/0 new triple (667, 0:00:00.049865)
+- INFO -  [P-20] ----- reify roles as concept: 5/5 new triples (672, 0:00:00.072522)
+- INFO -  [P-20] ----- reclassify existing variable: 60/60 new triples (732, 0:00:00.023570)
+- INFO -  [P-20] ----- add new variable for reified concept: 4/4 new triples (736, 0:00:00.062707)
+- INFO -  [P-20] ----- add AMR leaf for reclassified concept: 45/45 new triples (781, 0:00:00.032291)
+- INFO -  [P-20] ----- add AMR leaf for reified concept: 4/4 new triples (785, 0:00:00.013849)
+- INFO -  [P-20] ----- add AMR edge for core relation: 39/39 new triples (824, 0:00:00.119111)
+- INFO -  [P-20] ----- add AMR edge for reified concept: 6/6 new triples (830, 0:00:00.066323)
+- DEBUG -  [P-20] ----- add AMR edge for name relation: 0/0 new triple (830, 0:00:00.020882)
+- DEBUG -  [P-20] ----- add AMR edge for quant relation: 0/0 new triple (830, 0:00:00.025645)
+- DEBUG -  [P-20] ----- add AMR edge for polarity relation: 0/0 new triple (830, 0:00:00.029582)
+- INFO -  [P-20] ----- update AMR edge role 1: 14/14 new triples (844, 0:00:00.075809)
+- INFO -  [P-20] ----- add AMR root: 5/5 new triples (849, 0:00:00.011162)
+- DEBUG -  [P-20] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-20] ----- step: Preprocessing
+- DEBUG -  [P-20] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-20] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-20] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-20] ----- 238 triples extracted during Preprocessing step
+- INFO -  [P-20] -- Step 2: Transduction
+- INFO -  [P-20] --- Sequence: atomic extraction sequence
+- INFO -  [P-20] ----- extract atom classes: 48/48 new triples (897, 0:00:00.256556)
+- DEBUG -  [P-20] ----- extract atom individuals: 0/0 new triple (897, 0:00:00.017390)
+- INFO -  [P-20] ----- extract atomic properties: 100/100 new triples (997, 0:00:00.291231)
+- DEBUG -  [P-20] ----- extract atom values: 0/0 new triple (997, 0:00:00.005719)
+- DEBUG -  [P-20] ----- extract atom phenomena: 0/0 new triple (997, 0:00:00.009477)
+- INFO -  [P-20] ----- propagate atom relations: 20/56 new triples (1017, 0:00:01.075022)
+- INFO -  [P-20] --- Sequence: classification sequence (1)
+- DEBUG -  [P-20] ----- classify modality phenomena: 0/0 new triple (1017, 0:00:00.022613)
+- INFO -  [P-20] ----- reclassify argument property to class: 31/52 new triples (1048, 0:00:00.213149)
+- INFO -  [P-20] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-20] ----- analyze "polarity" phenomena (1): 0/0 new triple (1048, 0:00:00.010526)
+- DEBUG -  [P-20] ----- analyze "polarity" phenomena (2): 0/0 new triple (1048, 0:00:00.023942)
+- DEBUG -  [P-20] ----- analyze "polarity" phenomena (3): 0/0 new triple (1048, 0:00:00.021509)
+- DEBUG -  [P-20] ----- analyze "polarity" phenomena (4): 0/0 new triple (1048, 0:00:00.041685)
+- DEBUG -  [P-20] ----- analyze "polarity" phenomena (5): 0/0 new triple (1048, 0:00:00.042420)
+- INFO -  [P-20] ----- analyze modifier phenomena (mod): 43/50 new triples (1091, 0:00:00.196062)
+- DEBUG -  [P-20] ----- classify modality phenomena: 0/0 new triple (1091, 0:00:00.021719)
+- INFO -  [P-20] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-20] ----- analyze "or" phenomena (1): 0/0 new triple (1091, 0:00:00.015191)
+- DEBUG -  [P-20] ----- analyze "or" phenomena (2): 0/0 new triple (1091, 0:00:00.012742)
+- DEBUG -  [P-20] ----- analyze "and" phenomena (1): 0/0 new triple (1091, 0:00:00.012024)
+- DEBUG -  [P-20] ----- analyze "and" phenomena (2): 0/0 new triple (1091, 0:00:00.011481)
+- INFO -  [P-20] --- Sequence: composite class extraction sequence
+- INFO -  [P-20] ----- extract composite classes (1): 23/24 new triples (1114, 0:00:00.137422)
+- INFO -  [P-20] ----- extract composite classes (2): 49/56 new triples (1163, 0:00:00.316959)
+- INFO -  [P-20] --- Sequence: classification sequence (2)
+- INFO -  [P-20] ----- classify class net as entity from core arguments: 18/174 new triples (1181, 0:00:00.374920)
+- DEBUG -  [P-20] ----- classify class net as entity from :part relation: 0/0 new triple (1181, 0:00:00.012648)
+- DEBUG -  [P-20] ----- classify class net as entity from degree arguments: 0/0 new triple (1181, 0:00:00.023414)
+- INFO -  [P-20] ----- Associate mother to class net from :domain relation: 3/24 new triples (1184, 0:00:00.082918)
+- DEBUG -  [P-20] ----- Propagate individuals to net with same base node: 0/4 new triple (1184, 0:00:00.043082)
+- DEBUG -  [P-20] ----- Propagate individuals to net with domain link: 0/0 new triple (1184, 0:00:00.009789)
+- INFO -  [P-20] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-20] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1184, 0:00:00.047296)
+- DEBUG -  [P-20] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-20] ----- step: Transduction
+- DEBUG -  [P-20] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-20] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-20] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-20] ----- 335 triples extracted during Transduction step
+- INFO -  [P-20] -- Step 3: Generation
+- INFO -  [P-20] --- Sequence: OWL Generation Sequence
+- INFO -  [P-20] ----- generate OWL class: 67/71 new triples (1251, 0:00:00.741901)
+- INFO -  [P-20] ----- generate OWL property: 20/20 new triples (1271, 0:00:00.197191)
+- INFO -  [P-20] ----- generate OWL individual: 4/8 new triples (1275, 0:00:00.097385)
+- DEBUG -  [P-20] ----- generate OWL relation (property): 0/0 new triple (1275, 0:00:00.008614)
+- DEBUG -  [P-20] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-20] ----- step: Generation
+- DEBUG -  [P-20] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-20] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-20] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-20] ----- 91 triples extracted during Generation step
+- DEBUG -  [P-20] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-20] ----- Number of factoids: 99
+- DEBUG -  [P-20] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-20] Success (99 extracted triple(s))
+- INFO - 
+ [P-21]     *** extraction from sentence 21 *** 
+- INFO -  [P-21] -- Work Structure Preparation
+- DEBUG -  [P-21] --- Graph Initialization
+- DEBUG -  [P-21] ----- Configuration Loading
+- DEBUG -  [P-21] -------- RDF Schema (320)
+- DEBUG -  [P-21] -------- Semantic Net Definition (488)
+- DEBUG -  [P-21] -------- Config Parameter Definition (522)
+- DEBUG -  [P-21] ----- Frame Ontology Loading
+- DEBUG -  [P-21] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-21] --- Source Data Import
+- DEBUG -  [P-21] ----- Sentence Loading
+- DEBUG -  [P-21] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-21/WikiAbstract-SolarSystem-21.stog.amr.ttl (615)
+- DEBUG -  [P-21] --- Export work graph as turtle
+- DEBUG -  [P-21] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-21] ----- Sentence (id): WikiAbstract-SolarSystem-21
+- INFO -  [P-21] ----- Sentence (text): The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere.
+- INFO -  [P-21] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-21] ----- Step number: 3
+- INFO -  [P-21] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-21] ----- Total rule number: 0
+- INFO -  [P-21] -- Step 1: Preprocessing
+- INFO -  [P-21] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-21] ----- fix AMR bug (1): 0/0 new triple (615, 0:00:00.015038)
+- INFO -  [P-21] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-21] ----- reclassify AMR-LD concept (1): 10/10 new triples (625, 0:00:00.100170)
+- DEBUG -  [P-21] ----- reclassify AMR-LD concept (2): 0/0 new triple (625, 0:00:00.051725)
+- INFO -  [P-21] ----- reclassify AMR-LD concept (3): 20/20 new triples (645, 0:00:00.031799)
+- INFO -  [P-21] ----- reclassify AMR-LD concept (4): 28/28 new triples (673, 0:00:00.050932)
+- DEBUG -  [P-21] ----- reclassify AMR-LD concept (5): 0/0 new triple (673, 0:00:00.030955)
+- DEBUG -  [P-21] ----- reify roles as concept: 0/0 new triple (673, 0:00:00.049183)
+- INFO -  [P-21] ----- reclassify existing variable: 57/57 new triples (730, 0:00:00.027704)
+- DEBUG -  [P-21] ----- add new variable for reified concept: 0/0 new triple (730, 0:00:00.053553)
+- INFO -  [P-21] ----- add AMR leaf for reclassified concept: 42/42 new triples (772, 0:00:00.028960)
+- DEBUG -  [P-21] ----- add AMR leaf for reified concept: 0/0 new triple (772, 0:00:00.013268)
+- INFO -  [P-21] ----- add AMR edge for core relation: 42/42 new triples (814, 0:00:00.102941)
+- DEBUG -  [P-21] ----- add AMR edge for reified concept: 0/0 new triple (814, 0:00:00.022437)
+- INFO -  [P-21] ----- add AMR edge for name relation: 5/5 new triples (819, 0:00:00.019799)
+- DEBUG -  [P-21] ----- add AMR edge for quant relation: 0/0 new triple (819, 0:00:00.026122)
+- DEBUG -  [P-21] ----- add AMR edge for polarity relation: 0/0 new triple (819, 0:00:00.031574)
+- INFO -  [P-21] ----- update AMR edge role 1: 14/14 new triples (833, 0:00:00.084280)
+- INFO -  [P-21] ----- add AMR root: 5/5 new triples (838, 0:00:00.010225)
+- DEBUG -  [P-21] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-21] ----- step: Preprocessing
+- DEBUG -  [P-21] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-21] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-21] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-21] ----- 223 triples extracted during Preprocessing step
+- INFO -  [P-21] -- Step 2: Transduction
+- INFO -  [P-21] --- Sequence: atomic extraction sequence
+- INFO -  [P-21] ----- extract atom classes: 42/42 new triples (880, 0:00:00.300404)
+- INFO -  [P-21] ----- extract atom individuals: 8/8 new triples (888, 0:00:00.046846)
+- INFO -  [P-21] ----- extract atomic properties: 61/61 new triples (949, 0:00:00.184328)
+- INFO -  [P-21] ----- extract atom values: 5/5 new triples (954, 0:00:00.028303)
+- INFO -  [P-21] ----- extract atom phenomena: 14/14 new triples (968, 0:00:00.070742)
+- INFO -  [P-21] ----- propagate atom relations: 26/82 new triples (994, 0:00:01.089306)
+- INFO -  [P-21] --- Sequence: classification sequence (1)
+- INFO -  [P-21] ----- classify modality phenomena: 1/3 new triple (995, 0:00:00.037198)
+- INFO -  [P-21] ----- reclassify argument property to class: 12/16 new triples (1007, 0:00:00.074053)
+- INFO -  [P-21] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-21] ----- analyze "polarity" phenomena (1): 0/0 new triple (1007, 0:00:00.009899)
+- DEBUG -  [P-21] ----- analyze "polarity" phenomena (2): 0/0 new triple (1007, 0:00:00.018432)
+- DEBUG -  [P-21] ----- analyze "polarity" phenomena (3): 0/0 new triple (1007, 0:00:00.018935)
+- DEBUG -  [P-21] ----- analyze "polarity" phenomena (4): 0/0 new triple (1007, 0:00:00.039649)
+- DEBUG -  [P-21] ----- analyze "polarity" phenomena (5): 0/0 new triple (1007, 0:00:00.042396)
+- INFO -  [P-21] ----- analyze modifier phenomena (mod): 22/26 new triples (1029, 0:00:00.098677)
+- DEBUG -  [P-21] ----- classify modality phenomena: 0/3 new triple (1029, 0:00:00.038306)
+- INFO -  [P-21] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-21] ----- analyze "or" phenomena (1): 0/0 new triple (1029, 0:00:00.012769)
+- DEBUG -  [P-21] ----- analyze "or" phenomena (2): 0/0 new triple (1029, 0:00:00.016380)
+- DEBUG -  [P-21] ----- analyze "and" phenomena (1): 0/0 new triple (1029, 0:00:00.011963)
+- DEBUG -  [P-21] ----- analyze "and" phenomena (2): 0/0 new triple (1029, 0:00:00.010851)
+- INFO -  [P-21] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-21] ----- extract composite classes (1): 0/0 new triple (1029, 0:00:00.033142)
+- DEBUG -  [P-21] ----- extract composite classes (2): 0/0 new triple (1029, 0:00:00.030560)
+- INFO -  [P-21] --- Sequence: classification sequence (2)
+- INFO -  [P-21] ----- classify class net as entity from core arguments: 10/106 new triples (1039, 0:00:00.198268)
+- DEBUG -  [P-21] ----- classify class net as entity from :part relation: 0/0 new triple (1039, 0:00:00.010035)
+- DEBUG -  [P-21] ----- classify class net as entity from degree arguments: 0/0 new triple (1039, 0:00:00.018762)
+- DEBUG -  [P-21] ----- Associate mother to class net from :domain relation: 0/0 new triple (1039, 0:00:00.009160)
+- DEBUG -  [P-21] ----- Propagate individuals to net with same base node: 0/28 new triple (1039, 0:00:00.081084)
+- DEBUG -  [P-21] ----- Propagate individuals to net with domain link: 0/0 new triple (1039, 0:00:00.008232)
+- INFO -  [P-21] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-21] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1039, 0:00:00.008920)
+- DEBUG -  [P-21] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-21] ----- step: Transduction
+- DEBUG -  [P-21] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-21] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-21] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-21] ----- 201 triples extracted during Transduction step
+- INFO -  [P-21] -- Step 3: Generation
+- INFO -  [P-21] --- Sequence: OWL Generation Sequence
+- INFO -  [P-21] ----- generate OWL class: 31/31 new triples (1070, 0:00:00.280751)
+- INFO -  [P-21] ----- generate OWL property: 16/16 new triples (1086, 0:00:00.144126)
+- INFO -  [P-21] ----- generate OWL individual: 6/8 new triples (1092, 0:00:00.096180)
+- DEBUG -  [P-21] ----- generate OWL relation (property): 0/0 new triple (1092, 0:00:00.011589)
+- DEBUG -  [P-21] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-21] ----- step: Generation
+- DEBUG -  [P-21] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-21] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-21] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-21] ----- 53 triples extracted during Generation step
+- DEBUG -  [P-21] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-21] ----- Number of factoids: 55
+- DEBUG -  [P-21] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-21] Success (55 extracted triple(s))
+- INFO - 
+ [P-22]     *** extraction from sentence 22 *** 
+- INFO -  [P-22] -- Work Structure Preparation
+- DEBUG -  [P-22] --- Graph Initialization
+- DEBUG -  [P-22] ----- Configuration Loading
+- DEBUG -  [P-22] -------- RDF Schema (320)
+- DEBUG -  [P-22] -------- Semantic Net Definition (488)
+- DEBUG -  [P-22] -------- Config Parameter Definition (522)
+- DEBUG -  [P-22] ----- Frame Ontology Loading
+- DEBUG -  [P-22] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-22] --- Source Data Import
+- DEBUG -  [P-22] ----- Sentence Loading
+- DEBUG -  [P-22] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-22/WikiAbstract-SolarSystem-22.stog.amr.ttl (630)
+- DEBUG -  [P-22] --- Export work graph as turtle
+- DEBUG -  [P-22] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-22] ----- Sentence (id): WikiAbstract-SolarSystem-22
+- INFO -  [P-22] ----- Sentence (text): The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky.
+- INFO -  [P-22] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-22] ----- Step number: 3
+- INFO -  [P-22] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-22] ----- Total rule number: 0
+- INFO -  [P-22] -- Step 1: Preprocessing
+- INFO -  [P-22] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-22] ----- fix AMR bug (1): 0/0 new triple (630, 0:00:00.020659)
+- INFO -  [P-22] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-22] ----- reclassify AMR-LD concept (1): 5/5 new triples (635, 0:00:00.116977)
+- INFO -  [P-22] ----- reclassify AMR-LD concept (2): 8/8 new triples (643, 0:00:00.054229)
+- INFO -  [P-22] ----- reclassify AMR-LD concept (3): 16/16 new triples (659, 0:00:00.035632)
+- INFO -  [P-22] ----- reclassify AMR-LD concept (4): 36/36 new triples (695, 0:00:00.058413)
+- INFO -  [P-22] ----- reclassify AMR-LD concept (5): 4/4 new triples (699, 0:00:00.027724)
+- INFO -  [P-22] ----- reify roles as concept: 5/5 new triples (704, 0:00:00.037744)
+- INFO -  [P-22] ----- reclassify existing variable: 75/75 new triples (779, 0:00:00.024202)
+- INFO -  [P-22] ----- add new variable for reified concept: 4/4 new triples (783, 0:00:00.048999)
+- INFO -  [P-22] ----- add AMR leaf for reclassified concept: 54/54 new triples (837, 0:00:00.031451)
+- INFO -  [P-22] ----- add AMR leaf for reified concept: 4/4 new triples (841, 0:00:00.014188)
+- INFO -  [P-22] ----- add AMR edge for core relation: 48/48 new triples (889, 0:00:00.114321)
+- INFO -  [P-22] ----- add AMR edge for reified concept: 6/6 new triples (895, 0:00:00.081017)
+- INFO -  [P-22] ----- add AMR edge for name relation: 15/15 new triples (910, 0:00:00.025470)
+- INFO -  [P-22] ----- add AMR edge for quant relation: 5/5 new triples (915, 0:00:00.022544)
+- DEBUG -  [P-22] ----- add AMR edge for polarity relation: 0/0 new triple (915, 0:00:00.033614)
+- INFO -  [P-22] ----- update AMR edge role 1: 17/17 new triples (932, 0:00:00.094758)
+- INFO -  [P-22] ----- add AMR root: 5/5 new triples (937, 0:00:00.010199)
+- DEBUG -  [P-22] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-22] ----- step: Preprocessing
+- DEBUG -  [P-22] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-22] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-22] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-22] ----- 307 triples extracted during Preprocessing step
+- INFO -  [P-22] -- Step 2: Transduction
+- INFO -  [P-22] --- Sequence: atomic extraction sequence
+- INFO -  [P-22] ----- extract atom classes: 66/66 new triples (1003, 0:00:00.349841)
+- INFO -  [P-22] ----- extract atom individuals: 24/24 new triples (1027, 0:00:00.121042)
+- INFO -  [P-22] ----- extract atomic properties: 87/87 new triples (1114, 0:00:00.274376)
+- INFO -  [P-22] ----- extract atom values: 20/20 new triples (1134, 0:00:00.111541)
+- INFO -  [P-22] ----- extract atom phenomena: 7/7 new triples (1141, 0:00:00.043152)
+- INFO -  [P-22] ----- propagate atom relations: 30/96 new triples (1171, 0:00:01.917773)
+- INFO -  [P-22] --- Sequence: classification sequence (1)
+- INFO -  [P-22] ----- classify modality phenomena: 1/3 new triple (1172, 0:00:00.044257)
+- DEBUG -  [P-22] ----- reclassify argument property to class: 0/0 new triple (1172, 0:00:00.027186)
+- INFO -  [P-22] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-22] ----- analyze "polarity" phenomena (1): 0/0 new triple (1172, 0:00:00.008438)
+- DEBUG -  [P-22] ----- analyze "polarity" phenomena (2): 0/0 new triple (1172, 0:00:00.018902)
+- DEBUG -  [P-22] ----- analyze "polarity" phenomena (3): 0/0 new triple (1172, 0:00:00.017205)
+- DEBUG -  [P-22] ----- analyze "polarity" phenomena (4): 0/0 new triple (1172, 0:00:00.046377)
+- DEBUG -  [P-22] ----- analyze "polarity" phenomena (5): 0/0 new triple (1172, 0:00:00.040549)
+- DEBUG -  [P-22] ----- analyze modifier phenomena (mod): 0/0 new triple (1172, 0:00:00.009369)
+- DEBUG -  [P-22] ----- classify modality phenomena: 0/3 new triple (1172, 0:00:00.038213)
+- INFO -  [P-22] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-22] ----- analyze "or" phenomena (1): 0/0 new triple (1172, 0:00:00.013373)
+- DEBUG -  [P-22] ----- analyze "or" phenomena (2): 0/0 new triple (1172, 0:00:00.013950)
+- DEBUG -  [P-22] ----- analyze "and" phenomena (1): 0/0 new triple (1172, 0:00:00.010723)
+- DEBUG -  [P-22] ----- analyze "and" phenomena (2): 0/0 new triple (1172, 0:00:00.010622)
+- INFO -  [P-22] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-22] ----- extract composite classes (1): 0/0 new triple (1172, 0:00:00.032477)
+- INFO -  [P-22] ----- extract composite classes (2): 23/24 new triples (1195, 0:00:00.171613)
+- INFO -  [P-22] --- Sequence: classification sequence (2)
+- INFO -  [P-22] ----- classify class net as entity from core arguments: 14/61 new triples (1209, 0:00:00.204402)
+- DEBUG -  [P-22] ----- classify class net as entity from :part relation: 0/0 new triple (1209, 0:00:00.010583)
+- DEBUG -  [P-22] ----- classify class net as entity from degree arguments: 0/0 new triple (1209, 0:00:00.018726)
+- DEBUG -  [P-22] ----- Associate mother to class net from :domain relation: 0/0 new triple (1209, 0:00:00.010014)
+- DEBUG -  [P-22] ----- Propagate individuals to net with same base node: 0/36 new triple (1209, 0:00:00.114684)
+- DEBUG -  [P-22] ----- Propagate individuals to net with domain link: 0/0 new triple (1209, 0:00:00.008320)
+- INFO -  [P-22] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-22] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1209, 0:00:00.022371)
+- DEBUG -  [P-22] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-22] ----- step: Transduction
+- DEBUG -  [P-22] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-22] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-22] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-22] ----- 272 triples extracted during Transduction step
+- INFO -  [P-22] -- Step 3: Generation
+- INFO -  [P-22] --- Sequence: OWL Generation Sequence
+- INFO -  [P-22] ----- generate OWL class: 35/39 new triples (1244, 0:00:00.462064)
+- INFO -  [P-22] ----- generate OWL property: 28/28 new triples (1272, 0:00:00.243741)
+- INFO -  [P-22] ----- generate OWL individual: 12/12 new triples (1284, 0:00:00.135649)
+- DEBUG -  [P-22] ----- generate OWL relation (property): 0/0 new triple (1284, 0:00:00.007319)
+- DEBUG -  [P-22] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-22] ----- step: Generation
+- DEBUG -  [P-22] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-22] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-22] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-22] ----- 75 triples extracted during Generation step
+- DEBUG -  [P-22] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-22] ----- Number of factoids: 79
+- DEBUG -  [P-22] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-22] Success (79 extracted triple(s))
+- INFO - 
+ [P-23]     *** extraction from sentence 23 *** 
+- INFO -  [P-23] -- Work Structure Preparation
+- DEBUG -  [P-23] --- Graph Initialization
+- DEBUG -  [P-23] ----- Configuration Loading
+- DEBUG -  [P-23] -------- RDF Schema (320)
+- DEBUG -  [P-23] -------- Semantic Net Definition (488)
+- DEBUG -  [P-23] -------- Config Parameter Definition (522)
+- DEBUG -  [P-23] ----- Frame Ontology Loading
+- DEBUG -  [P-23] -------- Base Ontology produced as output (552)
+- DEBUG -  [P-23] --- Source Data Import
+- DEBUG -  [P-23] ----- Sentence Loading
+- DEBUG -  [P-23] -------- /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_data/amrDocuments/prod/SolarSystem-20230731/WikiAbstract-SolarSystem-23/WikiAbstract-SolarSystem-23.stog.amr.ttl (614)
+- DEBUG -  [P-23] --- Export work graph as turtle
+- DEBUG -  [P-23] ----- Work graph file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl 
+- INFO -  [P-23] ----- Sentence (id): WikiAbstract-SolarSystem-23
+- INFO -  [P-23] ----- Sentence (text): The nearest stars are within the so-called Local Bubble, with the closest, Proxima Centauri, at 4.25 light-years..
+- INFO -  [P-23] -- Loading Extraction Scheme (owl_amr_scheme_1)
+- DEBUG -  [P-23] ----- Step number: 3
+- INFO -  [P-23] -- Loading Extraction Rules (amr_master_rule/*)
+- DEBUG -  [P-23] ----- Total rule number: 0
+- INFO -  [P-23] -- Step 1: Preprocessing
+- INFO -  [P-23] --- Sequence: Bug fixing for some known anomalies of AMR-LD data
+- DEBUG -  [P-23] ----- fix AMR bug (1): 0/0 new triple (614, 0:00:00.020651)
+- INFO -  [P-23] --- Sequence: AMR reification from AMR-Linked-Data to AMR (tenet) structure
+- INFO -  [P-23] ----- reclassify AMR-LD concept (1): 5/5 new triples (619, 0:00:00.105309)
+- INFO -  [P-23] ----- reclassify AMR-LD concept (2): 4/4 new triples (623, 0:00:00.062000)
+- INFO -  [P-23] ----- reclassify AMR-LD concept (3): 16/16 new triples (639, 0:00:00.034982)
+- INFO -  [P-23] ----- reclassify AMR-LD concept (4): 16/16 new triples (655, 0:00:00.049236)
+- INFO -  [P-23] ----- reclassify AMR-LD concept (5): 4/4 new triples (659, 0:00:00.034392)
+- DEBUG -  [P-23] ----- reify roles as concept: 0/0 new triple (659, 0:00:00.040619)
+- INFO -  [P-23] ----- reclassify existing variable: 57/57 new triples (716, 0:00:00.018621)
+- DEBUG -  [P-23] ----- add new variable for reified concept: 0/0 new triple (716, 0:00:00.052761)
+- INFO -  [P-23] ----- add AMR leaf for reclassified concept: 42/42 new triples (758, 0:00:00.019853)
+- DEBUG -  [P-23] ----- add AMR leaf for reified concept: 0/0 new triple (758, 0:00:00.011197)
+- INFO -  [P-23] ----- add AMR edge for core relation: 48/48 new triples (806, 0:00:00.104500)
+- DEBUG -  [P-23] ----- add AMR edge for reified concept: 0/0 new triple (806, 0:00:00.024056)
+- INFO -  [P-23] ----- add AMR edge for name relation: 5/5 new triples (811, 0:00:00.021989)
+- DEBUG -  [P-23] ----- add AMR edge for quant relation: 0/0 new triple (811, 0:00:00.021264)
+- DEBUG -  [P-23] ----- add AMR edge for polarity relation: 0/0 new triple (811, 0:00:00.026680)
+- INFO -  [P-23] ----- update AMR edge role 1: 14/14 new triples (825, 0:00:00.075709)
+- INFO -  [P-23] ----- add AMR root: 5/5 new triples (830, 0:00:00.010337)
+- DEBUG -  [P-23] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing 
+- DEBUG -  [P-23] ----- step: Preprocessing
+- DEBUG -  [P-23] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-23] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
+- DEBUG -  [P-23] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Preprocessing
+- INFO -  [P-23] ----- 216 triples extracted during Preprocessing step
+- INFO -  [P-23] -- Step 2: Transduction
+- INFO -  [P-23] --- Sequence: atomic extraction sequence
+- INFO -  [P-23] ----- extract atom classes: 36/36 new triples (866, 0:00:00.281449)
+- INFO -  [P-23] ----- extract atom individuals: 8/8 new triples (874, 0:00:00.054385)
+- INFO -  [P-23] ----- extract atomic properties: 72/72 new triples (946, 0:00:00.219742)
+- INFO -  [P-23] ----- extract atom values: 5/5 new triples (951, 0:00:00.029493)
+- INFO -  [P-23] ----- extract atom phenomena: 14/14 new triples (965, 0:00:00.071021)
+- INFO -  [P-23] ----- propagate atom relations: 23/82 new triples (988, 0:00:01.218097)
+- INFO -  [P-23] --- Sequence: classification sequence (1)
+- DEBUG -  [P-23] ----- classify modality phenomena: 0/0 new triple (988, 0:00:00.027065)
+- DEBUG -  [P-23] ----- reclassify argument property to class: 0/0 new triple (988, 0:00:00.029541)
+- INFO -  [P-23] --- Sequence: phenomena analyze sequence (1)
+- DEBUG -  [P-23] ----- analyze "polarity" phenomena (1): 0/0 new triple (988, 0:00:00.008019)
+- DEBUG -  [P-23] ----- analyze "polarity" phenomena (2): 0/0 new triple (988, 0:00:00.016952)
+- DEBUG -  [P-23] ----- analyze "polarity" phenomena (3): 0/0 new triple (988, 0:00:00.018079)
+- DEBUG -  [P-23] ----- analyze "polarity" phenomena (4): 0/0 new triple (988, 0:00:00.040808)
+- DEBUG -  [P-23] ----- analyze "polarity" phenomena (5): 0/0 new triple (988, 0:00:00.039580)
+- INFO -  [P-23] ----- analyze modifier phenomena (mod): 21/24 new triples (1009, 0:00:00.098421)
+- DEBUG -  [P-23] ----- classify modality phenomena: 0/0 new triple (1009, 0:00:00.020744)
+- INFO -  [P-23] --- Sequence: phenomena analyze sequence (2)
+- DEBUG -  [P-23] ----- analyze "or" phenomena (1): 0/0 new triple (1009, 0:00:00.012395)
+- DEBUG -  [P-23] ----- analyze "or" phenomena (2): 0/0 new triple (1009, 0:00:00.014421)
+- DEBUG -  [P-23] ----- analyze "and" phenomena (1): 0/0 new triple (1009, 0:00:00.012489)
+- DEBUG -  [P-23] ----- analyze "and" phenomena (2): 0/0 new triple (1009, 0:00:00.011765)
+- INFO -  [P-23] --- Sequence: composite class extraction sequence
+- DEBUG -  [P-23] ----- extract composite classes (1): 0/0 new triple (1009, 0:00:00.030940)
+- DEBUG -  [P-23] ----- extract composite classes (2): 0/0 new triple (1009, 0:00:00.032831)
+- INFO -  [P-23] --- Sequence: classification sequence (2)
+- INFO -  [P-23] ----- classify class net as entity from core arguments: 8/86 new triples (1017, 0:00:00.186420)
+- DEBUG -  [P-23] ----- classify class net as entity from :part relation: 0/0 new triple (1017, 0:00:00.010551)
+- DEBUG -  [P-23] ----- classify class net as entity from degree arguments: 0/0 new triple (1017, 0:00:00.020794)
+- DEBUG -  [P-23] ----- Associate mother to class net from :domain relation: 0/0 new triple (1017, 0:00:00.010973)
+- DEBUG -  [P-23] ----- Propagate individuals to net with same base node: 0/22 new triple (1017, 0:00:00.061815)
+- DEBUG -  [P-23] ----- Propagate individuals to net with domain link: 0/0 new triple (1017, 0:00:00.008189)
+- INFO -  [P-23] --- Sequence: heuristic deduction sequence
+- DEBUG -  [P-23] ----- deduce individual and relation from restriction (recursively): 0/0 new triple (1017, 0:00:00.009671)
+- DEBUG -  [P-23] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction 
+- DEBUG -  [P-23] ----- step: Transduction
+- DEBUG -  [P-23] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-23] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
+- DEBUG -  [P-23] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Transduction
+- INFO -  [P-23] ----- 187 triples extracted during Transduction step
+- INFO -  [P-23] -- Step 3: Generation
+- INFO -  [P-23] --- Sequence: OWL Generation Sequence
+- INFO -  [P-23] ----- generate OWL class: 23/23 new triples (1040, 0:00:00.233547)
+- INFO -  [P-23] ----- generate OWL property: 20/24 new triples (1060, 0:00:00.205281)
+- INFO -  [P-23] ----- generate OWL individual: 6/8 new triples (1066, 0:00:00.095618)
+- DEBUG -  [P-23] ----- generate OWL relation (property): 0/0 new triple (1066, 0:00:00.008697)
+- DEBUG -  [P-23] --- Serializing graph to tenet.tetras-libre.fr_demo_SolarSystemProd_Generation 
+- DEBUG -  [P-23] ----- step: Generation
+- DEBUG -  [P-23] ----- id: https://tenet.tetras-libre.fr/demo/SolarSystemProd/
+- DEBUG -  [P-23] ----- work_file: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
+- DEBUG -  [P-23] ----- base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//Generation
+- INFO -  [P-23] ----- 49 triples extracted during Generation step
+- DEBUG -  [P-23] --- Serializing graph to factoid file (/home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl)
+- DEBUG -  [P-23] ----- Number of factoids: 55
+- DEBUG -  [P-23] ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO -  [P-23] Success (55 extracted triple(s))
+- INFO - 
+ === Final Ontology Generation  === 
+- INFO - -- Making complete factoid graph by merging the result factoids
+- INFO - ----- Total factoid number: 1886
+- INFO - -- Serializing graph to factoid string
+- INFO - ----- Graph base: http://https://tenet.tetras-libre.fr/demo/SolarSystemProd//factoid
+- INFO - -- Serializing graph to factoid file
+- INFO - ----- Ontology Turtle File: /home/lamenji/Workspace/Tetras/tenet/tests/main_tests/test_owl_output/SolarSystemProd-20230911/SolarSystemProd_factoid.ttl
+- INFO - 
+ === Done === 
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..8a832c25285ba3c04964f0d35d7609d8bce42d26
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,835 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#b> a ns2:bind-01 ;
+    ns2:bind-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#g> ;
+    ns2:bind-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o2> a ns2:orbit-01 ;
+    ns2:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> ;
+    ns2:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> ;
+    ns11:manner <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-01" ;
+    ns3:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:bind-01.ARG0 a ns2:FrameRole .
+
+ns2:bind-01.ARG1 a ns2:FrameRole .
+
+ns2:orbit-01.ARG0 a ns2:FrameRole .
+
+ns2:orbit-01.ARG1 a ns2:FrameRole .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:manner a ns3:Role .
+
+ns11:op1 a ns3:Role .
+
+ns11:op2 a ns3:Role .
+
+ns11:part a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#a> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d> a ns2:direct-02 .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d2> a ns2:direct-02 ;
+    ns11:polarity "-" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#g> a ns11:gravitation .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o3> a ns3:or ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Solar System" .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity .
+
+ns2:bind-01 a ns3:Frame .
+
+ns2:orbit-01 a ns3:Frame .
+
+ns11:gravitation a ns3:Concept .
+
+ns11:object a ns3:Concept .
+
+ns11:sun a ns3:Concept .
+
+ns11:system a ns3:Concept .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept .
+
+ns3:or a ns3:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> a ns11:object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> a ns11:system ;
+    ns11:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#p> ;
+    ns11:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> a ns11:sun .
+
+ns2:direct-02 a ns3:Frame .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..3b03c97affd7832c2075c9136fa0d73ab97ea661
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1778 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <https://tenet.tetras-libre.fr/extract-result#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:bind-01.ARG0 a ns2:FrameRole .
+
+ns2:bind-01.ARG1 a ns2:FrameRole .
+
+ns2:orbit-01.ARG0 a ns2:FrameRole .
+
+ns2:orbit-01.ARG1 a ns2:FrameRole .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:op1 a ns3:Role .
+
+ns11:op2 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_o a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_s2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d2_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_m9_ARG0_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m9_ARG1_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_d a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_o3_d2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_s_p a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-01 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#root01> ;
+    :hasRootLeaf :leaf_system_s ;
+    :hasSentenceID "WikiAbstract-SolarSystem-01" ;
+    :hasSentenceStatement "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+ns1:direct a owl:ObjectProperty ;
+    rdfs:label "direct" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:gravitation-WikiAbstract-SolarSystem-01 a owl:Individual,
+        ns1:gravitation-bind-system ;
+    rdfs:label "any gravitation" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" ;
+    ns1:bind ns1:SolarSystem .
+
+ns1:hasManner a owl:ObjectProperty ;
+    rdfs:label "hasManner" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:not-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:axiom_disjointProperty_direct_not-direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_direct_not-direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:axiom_disjointProperty_not-direct_direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_not-direct_direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:relation_SolarSystem-hasPart-object-WikiAbstract-SolarSystem-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_object-WikiAbstract-SolarSystem-01_o ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-object-WikiAbstract-SolarSystem-01" ;
+    net:hasObjectNet net:individual_object-WikiAbstract-SolarSystem-01_o ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_SolarSystem-hasPart-sun-WikiAbstract-SolarSystem-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_sun-WikiAbstract-SolarSystem-01_s2 ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-sun-WikiAbstract-SolarSystem-01" ;
+    net:hasObjectNet net:individual_sun-WikiAbstract-SolarSystem-01_s2 ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_gravitation-WikiAbstract-SolarSystem-01-bind-SolarSystem_g a net:Relation_Net ;
+    net:composeFrom net:atomProperty_bind_b,
+        net:individual_SolarSystem_p,
+        net:individual_gravitation-WikiAbstract-SolarSystem-01_g ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_p,
+        :leaf_system_s ;
+    net:hasNaming "gravitation-WikiAbstract-SolarSystem-01-bind-SolarSystem" ;
+    net:hasObjectNet net:individual_SolarSystem_p ;
+    net:hasPredicateNet net:atomProperty_bind_b ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasSubjectNet net:individual_gravitation-WikiAbstract-SolarSystem-01_g .
+
+net:relation_object-WikiAbstract-SolarSystem-01-orbit-hasManner-direct-sun-WikiAbstract-SolarSystem-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-direct_o2,
+        net:individual_object-WikiAbstract-SolarSystem-01_o,
+        net:individual_sun-WikiAbstract-SolarSystem-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-WikiAbstract-SolarSystem-01-orbit-hasManner-direct-sun-WikiAbstract-SolarSystem-01" ;
+    net:hasObjectNet net:individual_sun-WikiAbstract-SolarSystem-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasSubjectNet net:individual_object-WikiAbstract-SolarSystem-01_o .
+
+net:relation_object-WikiAbstract-SolarSystem-01-orbit-hasManner-not-direct-sun-WikiAbstract-SolarSystem-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-not-direct_o2,
+        net:individual_object-WikiAbstract-SolarSystem-01_o,
+        net:individual_sun-WikiAbstract-SolarSystem-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-WikiAbstract-SolarSystem-01-orbit-hasManner-not-direct-sun-WikiAbstract-SolarSystem-01" ;
+    net:hasObjectNet net:individual_sun-WikiAbstract-SolarSystem-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasSubjectNet net:individual_object-WikiAbstract-SolarSystem-01_o .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#b> a ns2:bind-01 ;
+    ns2:bind-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#g> ;
+    ns2:bind-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o2> a ns2:orbit-01 ;
+    ns2:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> ;
+    ns2:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> ;
+    ns11:manner <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-01" ;
+    ns3:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:comment "bug" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_bind-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:bind-01 ;
+    :label "bind-01" .
+
+:concept_gravitation rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:gravitation ;
+    :label "gravitation" .
+
+:concept_manner rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:manner ;
+    :isReifiedConcept true ;
+    :label "hasManner" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:object ;
+    :label "object" .
+
+:concept_or rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:or ;
+    :hasPhenomenaLink :phenomena_conjunction_or ;
+    :label "or" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sun ;
+    :label "sun" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_polarity a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#g> ;
+    :label "g" .
+
+:variable_m9 a ns11:manner,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "m9" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#p> ;
+    :label "p" ;
+    :name "Solar System" .
+
+:variable_p9 a ns11:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> ;
+    :label "s2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+ns1:SolarSystem a owl:Individual,
+        ns1:system,
+        ns1:system-hasPart-object,
+        ns1:system-hasPart-sun ;
+    rdfs:label "SolarSystem" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" ;
+    ns1:hasPart ns1:object-WikiAbstract-SolarSystem-01,
+        ns1:sun-WikiAbstract-SolarSystem-01 .
+
+ns1:bind a owl:ObjectProperty ;
+    rdfs:label "bind" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:gravitation a owl:Class ;
+    rdfs:label "gravitation" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:gravitation-bind-system a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:bind ;
+            owl:someValuesFrom ns1:system ],
+        ns1:gravitation ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:object-WikiAbstract-SolarSystem-01 a owl:Individual,
+        ns1:object,
+        ns1:object-orbit-hasManner-direct-sun,
+        ns1:object-orbit-hasManner-not-direct-sun ;
+    rdfs:label "any object" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" ;
+    ns1:orbit-hasManner-direct ns1:sun-WikiAbstract-SolarSystem-01 ;
+    ns1:orbit-hasManner-not-direct ns1:sun-WikiAbstract-SolarSystem-01 .
+
+ns1:object-orbit-hasManner-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:orbit-hasManner-direct ;
+            owl:someValuesFrom ns1:sun ],
+        ns1:object ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:object-orbit-hasManner-not-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:orbit-hasManner-not-direct ;
+            owl:someValuesFrom ns1:sun ],
+        ns1:object ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:orbit-hasManner-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns1:orbit ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:orbit-hasManner-not-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns1:orbit ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:system-hasPart-object a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:hasPart ;
+            owl:someValuesFrom ns1:object ],
+        ns1:system ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:system-hasPart-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:hasPart ;
+            owl:someValuesFrom ns1:sun ],
+        ns1:system ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_orbit_o2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:compositeClass_gravitation-bind-system_g a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_gravitation_g,
+        net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_gravitation_g ;
+    net:hasNaming "gravitation-bind-system" ;
+    net:hasRestriction net:restriction_bind-system_b ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:compositeClass_object-orbit-hasManner-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-direct-sun_o2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:compositeClass_object-orbit-hasManner-not-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-not-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-not-direct-sun_o2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:compositeClass_system-hasPart-object_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-object" ;
+    net:hasRestriction net:restriction_hasPart-object_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:compositeClass_system-hasPart-sun_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-sun" ;
+    net:hasRestriction net:restriction_hasPart-sun_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_sun_s2 ;
+    :role_op2 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:phenomena_conjunction-OR_o3 a net:Phenomena_Net ;
+    :role_op1 net:atomProperty_direct_d ;
+    :role_op2 net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_or_o3 ;
+    net:coverNode :leaf_or_o3 ;
+    net:hasNaming "conjunction-OR" ;
+    net:hasPhenomenaRef "or" ;
+    net:hasPhenomenaType :phenomena_conjunction_or ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_bind-system_b a net:Restriction_Net ;
+    net:composeFrom net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_system_s ;
+    net:hasNaming "bind-system" ;
+    net:hasRestrictionNetValue net:atomClass_system_s ;
+    net:hasRestrictionOnProperty net:atomProperty_bind_b ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_hasManner-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-direct" ;
+    net:hasRestrictionNetValue net:atomProperty_direct_d,
+        net:atomProperty_direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_hasManner-not-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-not-direct" ;
+    net:hasRestrictionNetValue net:compositeProperty_not-direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_hasPart-object_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o ;
+    net:hasNaming "hasPart-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_hasPart-sun_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2 ;
+    net:hasNaming "hasPart-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_orbit-hasManner-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_orbit-hasManner-not-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-not-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#a> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d> a ns2:direct-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d2> a ns2:direct-02 ;
+    ns11:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#g> a ns11:gravitation ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o3> a ns3:or ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#p> a <http://amr.isi.edu/entity-types#planet>,
+        <http://amr.isi.edu/entity-types#system> ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#system> a ns3:NamedEntity ;
+    rdfs:label "system" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:bind-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:gravitation a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:manner a ns3:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:part a ns3:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:or a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:direct-02 ;
+    :label "direct-02" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#system>,
+        ns11:system ;
+    :label "system" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+ns1:hasPart a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:orbit a owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:individual_gravitation-WikiAbstract-SolarSystem-01_g a net:Individual_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasIndividualLabel "any gravitation" ;
+    net:hasMotherClassNet net:compositeClass_gravitation-bind-system_g ;
+    net:hasNaming "gravitation-WikiAbstract-SolarSystem-01" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasValueLabel "SolarSystem" .
+
+net:value_negative_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_negative ;
+    net:hasNaming "negative" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasValueLabel "negative" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> a ns11:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> a ns11:system ;
+    ns11:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#p> ;
+    ns11:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> a ns11:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:direct-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+ns1:sun-WikiAbstract-SolarSystem-01 a owl:Individual,
+        ns1:sun ;
+    rdfs:label "any sun" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_gravitation_g a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_gravitation_g ;
+    net:hasClassName "gravitation" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "gravitation" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_o :leaf_object_o ;
+    :edge_a_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_or_o3 a :AMR_Leaf ;
+    :edge_o3_d :leaf_direct-02_d ;
+    :edge_o3_d2 :leaf_direct-02_d2 ;
+    :hasConcept :concept_or ;
+    :hasVariable :variable_o3 .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+ns1:object a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:sun a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:system a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-01" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_direct_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:isCoreRoleLinked "true" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_bind_b a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_gravitation_g ;
+    :role_ARG1 net:atomClass_system_s ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b ;
+    net:hasNaming "bind" ;
+    net:hasPropertyName "bind" ;
+    net:hasPropertyName01 "binding" ;
+    net:hasPropertyName10 "bind-by" ;
+    net:hasPropertyName12 "bind-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_gravitation_g,
+        :leaf_system_s .
+
+net:compositeProperty_orbit-hasManner-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-direct_m9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:compositeProperty_orbit-hasManner-not-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-not-direct_m9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomProperty_hasManner_m9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_orbit_o2,
+        net:atomProperty_orbit_o2 ;
+    :role_ARG1 net:phenomena_conjunction-OR_o3 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner" ;
+    net:hasPropertyName "hasManner" ;
+    net:hasPropertyName01 "hasMannering" ;
+    net:hasPropertyName10 "hasManner-by" ;
+    net:hasPropertyName12 "hasManner-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_or_o3,
+        :leaf_orbit-01_o2 .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_sun_s2 .
+
+net:individual_object-WikiAbstract-SolarSystem-01_o a net:Individual_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasIndividualLabel "any object" ;
+    net:hasMotherClassNet net:atomClass_object_o,
+        net:compositeClass_object-orbit-hasManner-direct-sun_o,
+        net:compositeClass_object-orbit-hasManner-not-direct-sun_o ;
+    net:hasNaming "object-WikiAbstract-SolarSystem-01" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:individual_sun-WikiAbstract-SolarSystem-01_s2 a net:Individual_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasIndividualLabel "any sun" ;
+    net:hasMotherClassNet net:atomClass_sun_s2 ;
+    net:hasNaming "sun-WikiAbstract-SolarSystem-01" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_bind-01_b a :AMR_Leaf ;
+    :edge_b_g :leaf_gravitation_g ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_bind-01 ;
+    :hasVariable :variable_b .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_system_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:compositeProperty_not-direct_d2 a net:Composite_Property_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:composeFrom net:atomProperty_direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:atomProperty_direct_d2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :value_negative .
+
+net:individual_SolarSystem_p a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s,
+        net:compositeClass_system-hasPart-object_s,
+        net:compositeClass_system-hasPart-sun_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_gravitation_g a :AMR_Leaf ;
+    :hasConcept :concept_gravitation ;
+    :hasVariable :variable_g .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_a :leaf_and_a ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_system_p a :AMR_Leaf ;
+    :edge_p_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_p .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_system_p ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s ;
+    :role_ARG1 net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:phenomena_conjunction-AND_a ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_system_s .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasManner_m9 a :AMR_Leaf ;
+    :edge_m9_ARG0_o2 :leaf_orbit-01_o2 ;
+    :edge_m9_ARG1_o3 :leaf_or_o3 ;
+    :hasConcept :concept_manner ;
+    :hasVariable :variable_m9 ;
+    :isReifiedLeaf true .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_p :leaf_system_p ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+net:atomClass_sun_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_direct-02_d2 a :AMR_Leaf ;
+    :edge_d2_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d2 .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..a715644ff4122d7d1522072ae245c21353aa2f02
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1109 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:bind-01.ARG0 a ns2:FrameRole .
+
+ns2:bind-01.ARG1 a ns2:FrameRole .
+
+ns2:orbit-01.ARG0 a ns2:FrameRole .
+
+ns2:orbit-01.ARG1 a ns2:FrameRole .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:op1 a ns3:Role .
+
+ns11:op2 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_o a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_s2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d2_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_m9_ARG0_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m9_ARG1_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_d a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_o3_d2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_s_p a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_bind-01_b a :AMR_Leaf ;
+    :edge_b_g :leaf_gravitation_g ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_bind-01 ;
+    :hasVariable :variable_b .
+
+:leaf_hasManner_m9 a :AMR_Leaf ;
+    :edge_m9_ARG0_o2 :leaf_orbit-01_o2 ;
+    :edge_m9_ARG1_o3 :leaf_or_o3 ;
+    :hasConcept :concept_manner ;
+    :hasVariable :variable_m9 ;
+    :isReifiedLeaf true .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_a :leaf_and_a ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-01 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#root01> ;
+    :hasRootLeaf :leaf_system_s ;
+    :hasSentenceID "WikiAbstract-SolarSystem-01" ;
+    :hasSentenceStatement "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#b> a ns2:bind-01 ;
+    ns2:bind-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#g> ;
+    ns2:bind-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o2> a ns2:orbit-01 ;
+    ns2:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> ;
+    ns2:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> ;
+    ns11:manner <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-01" ;
+    ns3:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:comment "bug" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_bind-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:bind-01 ;
+    :label "bind-01" .
+
+:concept_gravitation rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:gravitation ;
+    :label "gravitation" .
+
+:concept_manner rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:manner ;
+    :isReifiedConcept true ;
+    :label "hasManner" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:object ;
+    :label "object" .
+
+:concept_or rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:or ;
+    :hasPhenomenaLink :phenomena_conjunction_or ;
+    :label "or" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sun ;
+    :label "sun" .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_o :leaf_object_o ;
+    :edge_a_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_direct-02_d2 a :AMR_Leaf ;
+    :edge_d2_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d2 .
+
+:leaf_gravitation_g a :AMR_Leaf ;
+    :hasConcept :concept_gravitation ;
+    :hasVariable :variable_g .
+
+:leaf_or_o3 a :AMR_Leaf ;
+    :edge_o3_d :leaf_direct-02_d ;
+    :edge_o3_d2 :leaf_direct-02_d2 ;
+    :hasConcept :concept_or ;
+    :hasVariable :variable_o3 .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_system_p a :AMR_Leaf ;
+    :edge_p_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_p .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#g> ;
+    :label "g" .
+
+:variable_m9 a ns11:manner,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "m9" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#p> ;
+    :label "p" ;
+    :name "Solar System" .
+
+:variable_p9 a ns11:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> ;
+    :label "s2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#a> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d> a ns2:direct-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d2> a ns2:direct-02 ;
+    ns11:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#g> a ns11:gravitation ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o3> a ns3:or ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#p> a <http://amr.isi.edu/entity-types#planet>,
+        <http://amr.isi.edu/entity-types#system> ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#system> a ns3:NamedEntity ;
+    rdfs:label "system" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:bind-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:gravitation a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:manner a ns3:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:part a ns3:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:or a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:direct-02 ;
+    :label "direct-02" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#system>,
+        ns11:system ;
+    :label "system" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> a ns11:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> a ns11:system ;
+    ns11:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#p> ;
+    ns11:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> a ns11:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:direct-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_p :leaf_system_p ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..a4d7d84bfe49b2d972629f1c474bce66b275c407
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1656 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:bind-01.ARG0 a ns2:FrameRole .
+
+ns2:bind-01.ARG1 a ns2:FrameRole .
+
+ns2:orbit-01.ARG0 a ns2:FrameRole .
+
+ns2:orbit-01.ARG1 a ns2:FrameRole .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:op1 a ns3:Role .
+
+ns11:op2 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_o a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_s2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d2_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_m9_ARG0_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m9_ARG1_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_d a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_o3_d2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_s_p a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-01 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#root01> ;
+    :hasRootLeaf :leaf_system_s ;
+    :hasSentenceID "WikiAbstract-SolarSystem-01" ;
+    :hasSentenceStatement "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:axiom_disjointProperty_direct_not-direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_direct_not-direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:axiom_disjointProperty_not-direct_direct_d2 a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_not-direct_direct" ;
+    net:hasNetArgument net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:relation_SolarSystem-hasPart-object-WikiAbstract-SolarSystem-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_object-WikiAbstract-SolarSystem-01_o ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-object-WikiAbstract-SolarSystem-01" ;
+    net:hasObjectNet net:individual_object-WikiAbstract-SolarSystem-01_o ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_SolarSystem-hasPart-sun-WikiAbstract-SolarSystem-01_p a net:Relation_Net ;
+    net:composeFrom net:atomProperty_hasPart_p9,
+        net:individual_SolarSystem_p,
+        net:individual_sun-WikiAbstract-SolarSystem-01_s2 ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_p ;
+    net:hasNaming "SolarSystem-hasPart-sun-WikiAbstract-SolarSystem-01" ;
+    net:hasObjectNet net:individual_sun-WikiAbstract-SolarSystem-01_s2 ;
+    net:hasPredicateNet net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasSubjectNet net:individual_SolarSystem_p .
+
+net:relation_gravitation-WikiAbstract-SolarSystem-01-bind-SolarSystem_g a net:Relation_Net ;
+    net:composeFrom net:atomProperty_bind_b,
+        net:individual_SolarSystem_p,
+        net:individual_gravitation-WikiAbstract-SolarSystem-01_g ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_p,
+        :leaf_system_s ;
+    net:hasNaming "gravitation-WikiAbstract-SolarSystem-01-bind-SolarSystem" ;
+    net:hasObjectNet net:individual_SolarSystem_p ;
+    net:hasPredicateNet net:atomProperty_bind_b ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasSubjectNet net:individual_gravitation-WikiAbstract-SolarSystem-01_g .
+
+net:relation_object-WikiAbstract-SolarSystem-01-orbit-hasManner-direct-sun-WikiAbstract-SolarSystem-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-direct_o2,
+        net:individual_object-WikiAbstract-SolarSystem-01_o,
+        net:individual_sun-WikiAbstract-SolarSystem-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-WikiAbstract-SolarSystem-01-orbit-hasManner-direct-sun-WikiAbstract-SolarSystem-01" ;
+    net:hasObjectNet net:individual_sun-WikiAbstract-SolarSystem-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasSubjectNet net:individual_object-WikiAbstract-SolarSystem-01_o .
+
+net:relation_object-WikiAbstract-SolarSystem-01-orbit-hasManner-not-direct-sun-WikiAbstract-SolarSystem-01_o a net:Relation_Net ;
+    net:composeFrom net:compositeProperty_orbit-hasManner-not-direct_o2,
+        net:individual_object-WikiAbstract-SolarSystem-01_o,
+        net:individual_sun-WikiAbstract-SolarSystem-01_s2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "object-WikiAbstract-SolarSystem-01-orbit-hasManner-not-direct-sun-WikiAbstract-SolarSystem-01" ;
+    net:hasObjectNet net:individual_sun-WikiAbstract-SolarSystem-01_s2 ;
+    net:hasPredicateNet net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasSubjectNet net:individual_object-WikiAbstract-SolarSystem-01_o .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#b> a ns2:bind-01 ;
+    ns2:bind-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#g> ;
+    ns2:bind-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o2> a ns2:orbit-01 ;
+    ns2:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> ;
+    ns2:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> ;
+    ns11:manner <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-01" ;
+    ns3:has-sentence "The Solar System is the gravitationally bound system of the Sun and the objects that orbit it, either directly or indirectly." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:comment "bug" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_bind-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:bind-01 ;
+    :label "bind-01" .
+
+:concept_gravitation rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:gravitation ;
+    :label "gravitation" .
+
+:concept_manner rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:manner ;
+    :isReifiedConcept true ;
+    :label "hasManner" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:object ;
+    :label "object" .
+
+:concept_or rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:or ;
+    :hasPhenomenaLink :phenomena_conjunction_or ;
+    :label "or" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sun ;
+    :label "sun" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_polarity a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#g> ;
+    :label "g" .
+
+:variable_m9 a ns11:manner,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "m9" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#p> ;
+    :label "p" ;
+    :name "Solar System" .
+
+:variable_p9 a ns11:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> ;
+    :label "s2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_orbit_o2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:compositeClass_gravitation-bind-system_g a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_gravitation_g,
+        net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_gravitation_g ;
+    net:hasNaming "gravitation-bind-system" ;
+    net:hasRestriction net:restriction_bind-system_b ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:compositeClass_object-orbit-hasManner-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-direct-sun_o2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:compositeClass_object-orbit-hasManner-not-direct-sun_o a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_object_o,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-orbit-hasManner-not-direct-sun" ;
+    net:hasRestriction net:restriction_orbit-hasManner-not-direct-sun_o2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:compositeClass_system-hasPart-object_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-object" ;
+    net:hasRestriction net:restriction_hasPart-object_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:compositeClass_system-hasPart-sun_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-sun" ;
+    net:hasRestriction net:restriction_hasPart-sun_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_sun_s2 ;
+    :role_op2 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:phenomena_conjunction-OR_o3 a net:Phenomena_Net ;
+    :role_op1 net:atomProperty_direct_d ;
+    :role_op2 net:atomProperty_direct_d2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_or_o3 ;
+    net:coverNode :leaf_or_o3 ;
+    net:hasNaming "conjunction-OR" ;
+    net:hasPhenomenaRef "or" ;
+    net:hasPhenomenaType :phenomena_conjunction_or ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_bind-system_b a net:Restriction_Net ;
+    net:composeFrom net:atomClass_system_s,
+        net:atomProperty_bind_b ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_system_s ;
+    net:hasNaming "bind-system" ;
+    net:hasRestrictionNetValue net:atomClass_system_s ;
+    net:hasRestrictionOnProperty net:atomProperty_bind_b ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_hasManner-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-direct" ;
+    net:hasRestrictionNetValue net:atomProperty_direct_d,
+        net:atomProperty_direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_hasManner-not-direct_m9 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner-not-direct" ;
+    net:hasRestrictionNetValue net:compositeProperty_not-direct_d2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasManner_m9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_hasPart-object_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_object_o ;
+    net:hasNaming "hasPart-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_hasPart-sun_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_sun_s2 ;
+    net:hasNaming "hasPart-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_orbit-hasManner-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-direct_o2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:restriction_orbit-hasManner-not-direct-sun_o2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2,
+        :leaf_sun_s2 ;
+    net:hasNaming "orbit-hasManner-not-direct-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:compositeProperty_orbit-hasManner-not-direct_o2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#a> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d> a ns2:direct-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d2> a ns2:direct-02 ;
+    ns11:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#g> a ns11:gravitation ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o3> a ns3:or ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#p> a <http://amr.isi.edu/entity-types#planet>,
+        <http://amr.isi.edu/entity-types#system> ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#system> a ns3:NamedEntity ;
+    rdfs:label "system" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:bind-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:gravitation a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:manner a ns3:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:part a ns3:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:or a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:direct-02 ;
+    :label "direct-02" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#system>,
+        ns11:system ;
+    :label "system" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:individual_gravitation-WikiAbstract-SolarSystem-01_g a net:Individual_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_bind-01_b,
+        :leaf_gravitation_g,
+        :leaf_system_s ;
+    net:hasIndividualLabel "any gravitation" ;
+    net:hasMotherClassNet net:compositeClass_gravitation-bind-system_g ;
+    net:hasNaming "gravitation-WikiAbstract-SolarSystem-01" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasValueLabel "SolarSystem" .
+
+net:value_negative_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_negative ;
+    net:hasNaming "negative" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:hasValueLabel "negative" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#o> a ns11:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s> a ns11:system ;
+    ns11:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#p> ;
+    ns11:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-01#s2> a ns11:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:direct-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_gravitation_g a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_gravitation_g ;
+    net:coverNode :leaf_gravitation_g ;
+    net:hasClassName "gravitation" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "gravitation" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_o :leaf_object_o ;
+    :edge_a_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_or_o3 a :AMR_Leaf ;
+    :edge_o3_d :leaf_direct-02_d ;
+    :edge_o3_d2 :leaf_direct-02_d2 ;
+    :hasConcept :concept_or ;
+    :hasVariable :variable_o3 .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_direct_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:isCoreRoleLinked "true" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_bind_b a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_gravitation_g ;
+    :role_ARG1 net:atomClass_system_s ;
+    net:coverBaseNode :leaf_bind-01_b ;
+    net:coverNode :leaf_bind-01_b ;
+    net:hasNaming "bind" ;
+    net:hasPropertyName "bind" ;
+    net:hasPropertyName01 "binding" ;
+    net:hasPropertyName10 "bind-by" ;
+    net:hasPropertyName12 "bind-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_gravitation_g,
+        :leaf_system_s .
+
+net:compositeProperty_orbit-hasManner-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:atomProperty_direct_d2,
+        net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d,
+        :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-direct_m9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:compositeProperty_orbit-hasManner-not-direct_o2 a net:Composite_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:composeFrom net:atomProperty_hasManner_m9,
+        net:atomProperty_orbit_o2,
+        net:compositeProperty_not-direct_d2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_direct-02_d2,
+        :leaf_hasManner_m9,
+        :leaf_orbit-01_o2 ;
+    net:hasMotherPropertyNet net:atomProperty_orbit_o2 ;
+    net:hasNaming "orbit-hasManner-not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasRestriction net:restriction_hasManner-not-direct_m9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomProperty_hasManner_m9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_orbit_o2,
+        net:atomProperty_orbit_o2 ;
+    :role_ARG1 net:phenomena_conjunction-OR_o3 ;
+    net:coverBaseNode :leaf_hasManner_m9 ;
+    net:coverNode :leaf_hasManner_m9 ;
+    net:hasNaming "hasManner" ;
+    net:hasPropertyName "hasManner" ;
+    net:hasPropertyName01 "hasMannering" ;
+    net:hasPropertyName10 "hasManner-by" ;
+    net:hasPropertyName12 "hasManner-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_or_o3,
+        :leaf_orbit-01_o2 .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_sun_s2 .
+
+net:individual_object-WikiAbstract-SolarSystem-01_o a net:Individual_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasIndividualLabel "any object" ;
+    net:hasMotherClassNet net:atomClass_object_o,
+        net:compositeClass_object-orbit-hasManner-direct-sun_o,
+        net:compositeClass_object-orbit-hasManner-not-direct-sun_o ;
+    net:hasNaming "object-WikiAbstract-SolarSystem-01" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:individual_sun-WikiAbstract-SolarSystem-01_s2 a net:Individual_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasIndividualLabel "any sun" ;
+    net:hasMotherClassNet net:atomClass_sun_s2 ;
+    net:hasNaming "sun-WikiAbstract-SolarSystem-01" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_bind-01_b a :AMR_Leaf ;
+    :edge_b_g :leaf_gravitation_g ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_bind-01 ;
+    :hasVariable :variable_b .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_system_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+net:compositeProperty_not-direct_d2 a net:Composite_Property_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:composeFrom net:atomProperty_direct_d2 ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:atomProperty_direct_d2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_polarity net:value_negative_blankNode ;
+    net:coverBaseNode :leaf_direct-02_d2 ;
+    net:coverNode :leaf_direct-02_d2 ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :value_negative .
+
+net:individual_SolarSystem_p a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_p ;
+    net:coverNode :leaf_system_p ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_p,
+        net:atomClass_system_s,
+        net:compositeClass_system-hasPart-object_s,
+        net:compositeClass_system-hasPart-sun_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_gravitation_g a :AMR_Leaf ;
+    :hasConcept :concept_gravitation ;
+    :hasVariable :variable_g .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_a :leaf_and_a ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_system_p a :AMR_Leaf ;
+    :edge_p_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_p .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:atomClass_system_p,
+        net:individual_SolarSystem_p ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_system_p ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s ;
+    :role_ARG1 net:atomClass_object_o,
+        net:atomClass_sun_s2,
+        net:phenomena_conjunction-AND_a ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_system_s .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasManner_m9 a :AMR_Leaf ;
+    :edge_m9_ARG0_o2 :leaf_orbit-01_o2 ;
+    :edge_m9_ARG1_o3 :leaf_or_o3 ;
+    :hasConcept :concept_manner ;
+    :hasVariable :variable_m9 ;
+    :isReifiedLeaf true .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_p :leaf_system_p ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+net:atomClass_sun_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-01" .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_direct-02_d2 a :AMR_Leaf ;
+    :edge_d2_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d2 .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..8061259d310798eb704a2940bc205b7d086d8d18
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-1/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,126 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/extract-result#> .
+@prefix ns2: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+ns1:direct a owl:ObjectProperty ;
+    rdfs:label "direct" ;
+    rdfs:subPropertyOf ns2:Out_ObjectProperty ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:gravitation-WikiAbstract-SolarSystem-01 a owl:Individual,
+        ns1:gravitation-bind-system ;
+    rdfs:label "any gravitation" ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" ;
+    ns1:bind ns1:SolarSystem .
+
+ns1:hasManner a owl:ObjectProperty ;
+    rdfs:label "hasManner" ;
+    rdfs:subPropertyOf ns2:Out_ObjectProperty ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:not-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns2:Out_ObjectProperty ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:SolarSystem a owl:Individual,
+        ns1:system,
+        ns1:system-hasPart-object,
+        ns1:system-hasPart-sun ;
+    rdfs:label "SolarSystem" ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" ;
+    ns1:hasPart ns1:object-WikiAbstract-SolarSystem-01,
+        ns1:sun-WikiAbstract-SolarSystem-01 .
+
+ns1:bind a owl:ObjectProperty ;
+    rdfs:label "bind" ;
+    rdfs:subPropertyOf ns2:Out_ObjectProperty ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:gravitation a owl:Class ;
+    rdfs:label "gravitation" ;
+    rdfs:subClassOf ns2:Entity ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:gravitation-bind-system a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:bind ;
+            owl:someValuesFrom ns1:system ],
+        ns1:gravitation ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:object-WikiAbstract-SolarSystem-01 a owl:Individual,
+        ns1:object,
+        ns1:object-orbit-hasManner-direct-sun,
+        ns1:object-orbit-hasManner-not-direct-sun ;
+    rdfs:label "any object" ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" ;
+    ns1:orbit-hasManner-direct ns1:sun-WikiAbstract-SolarSystem-01 ;
+    ns1:orbit-hasManner-not-direct ns1:sun-WikiAbstract-SolarSystem-01 .
+
+ns1:object-orbit-hasManner-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:orbit-hasManner-direct ;
+            owl:someValuesFrom ns1:sun ],
+        ns1:object ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:object-orbit-hasManner-not-direct-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:orbit-hasManner-not-direct ;
+            owl:someValuesFrom ns1:sun ],
+        ns1:object ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:orbit-hasManner-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns1:orbit ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:orbit-hasManner-not-direct a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns1:orbit ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:system-hasPart-object a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:hasPart ;
+            owl:someValuesFrom ns1:object ],
+        ns1:system ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:system-hasPart-sun a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty ns1:hasPart ;
+            owl:someValuesFrom ns1:sun ],
+        ns1:system ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:hasPart a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns2:Out_ObjectProperty ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:orbit a owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subPropertyOf ns2:Out_ObjectProperty ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:sun-WikiAbstract-SolarSystem-01 a owl:Individual,
+        ns1:sun ;
+    rdfs:label "any sun" ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:object a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns2:Entity ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:sun a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns2:Entity ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
+ns1:system a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf ns2:Entity ;
+    ns2:fromStructure "WikiAbstract-SolarSystem-01" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..2d14d53e56b6b29d8ed7839e1231ec8f177c1152
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,811 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s2> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#m> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-10" ;
+    ns1:has-sentence "The Solar System also contains smaller objects." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#c> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:contain-01.ARG0 a ns3:FrameRole .
+
+ns3:contain-01.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#a> a ns2:also .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#c> a ns3:contain-01 ;
+    ns3:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s> ;
+    ns3:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#m> a ns1:more .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s> a ns2:system ;
+    rdfs:label "Solar System" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s2> a ns2:small .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:contain-01 a ns1:Frame .
+
+ns3:have-degree-91 a ns1:Frame .
+
+ns2:also a ns1:Concept .
+
+ns2:object a ns1:Concept .
+
+ns2:small a ns1:Concept .
+
+ns2:system a ns1:Concept .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:more a ns1:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> a ns2:object .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..8f25b9fb66c6eac54549f1b06eba1e2d14c54a8f
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1084 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:contain-01.ARG0 a ns3:FrameRole .
+
+ns3:contain-01.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_c_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-10 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#root01> ;
+    :hasRootLeaf :leaf_contain-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-10" ;
+    :hasSentenceStatement "The Solar System also contains smaller objects." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-10" .
+
+<https://tenet.tetras-libre.fr/extract-result#also> a owl:Class ;
+    rdfs:label "also" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-10" .
+
+<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
+    rdfs:label "contain" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-10" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-10" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-10" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-10" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_contain_c a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s,
+        net:individual_SolarSystem_s ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_mod net:atomClass_also_a ;
+    net:coverBaseNode :leaf_contain-01_c ;
+    net:coverNode :leaf_contain-01_c ;
+    net:hasNaming "contain" ;
+    net:hasPropertyName "contain" ;
+    net:hasPropertyName01 "containing" ;
+    net:hasPropertyName10 "contain-by" ;
+    net:hasPropertyName12 "contain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_also_a,
+        :leaf_object_o,
+        :leaf_system_s .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_small_s2 ;
+    :role_ARG3 net:atomProperty_more_m ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s2> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-10" ;
+    ns1:has-sentence "The Solar System also contains smaller objects." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_also rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:also ;
+    :label "also" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:contain-01 ;
+    :label "contain-01" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#a> ;
+    :label "a" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#c> ;
+    :label "c" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#h> ;
+    :label "h" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#m> ;
+    :label "m" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> ;
+    :label "o" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s> ;
+    :label "s" ;
+    :name "Solar System" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s2> ;
+    :label "s2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_also_a a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_also_a ;
+    net:coverNode :leaf_also_a ;
+    net:hasClassName "also" ;
+    net:hasNaming "also" ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" .
+
+net:atomClass_small_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s2 ;
+    net:coverNode :leaf_small_s2 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" .
+
+net:atomProperty_more_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m ;
+    net:coverNode :leaf_more_m ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_SolarSystem_s a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#a> a ns2:also ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#c> a ns3:contain-01 ;
+    ns3:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s> ;
+    ns3:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#m> a ns1:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s> a ns2:system ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s2> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:contain-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:also a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:more a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_m :leaf_more_m ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_contain-01_c a :AMR_Leaf ;
+    :edge_c_a :leaf_also_a ;
+    :edge_c_o :leaf_object_o ;
+    :edge_c_s :leaf_system_s ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c .
+
+:leaf_more_m a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_also_a a :AMR_Leaf ;
+    :hasConcept :concept_also ;
+    :hasVariable :variable_a .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..ccec35d5caad33bb4dc26d3a1f47e1926ddceb57
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,955 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:contain-01.ARG0 a ns3:FrameRole .
+
+ns3:contain-01.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_c_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_m :leaf_more_m ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-10 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#root01> ;
+    :hasRootLeaf :leaf_contain-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-10" ;
+    :hasSentenceStatement "The Solar System also contains smaller objects." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s2> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-10" ;
+    ns1:has-sentence "The Solar System also contains smaller objects." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_also rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:also ;
+    :label "also" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:contain-01 ;
+    :label "contain-01" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:leaf_also_a a :AMR_Leaf ;
+    :hasConcept :concept_also ;
+    :hasVariable :variable_a .
+
+:leaf_contain-01_c a :AMR_Leaf ;
+    :edge_c_a :leaf_also_a ;
+    :edge_c_o :leaf_object_o ;
+    :edge_c_s :leaf_system_s ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c .
+
+:leaf_more_m a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#a> ;
+    :label "a" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#c> ;
+    :label "c" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#h> ;
+    :label "h" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#m> ;
+    :label "m" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> ;
+    :label "o" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s> ;
+    :label "s" ;
+    :name "Solar System" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s2> ;
+    :label "s2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#a> a ns2:also ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#c> a ns3:contain-01 ;
+    ns3:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s> ;
+    ns3:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#m> a ns1:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s> a ns2:system ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s2> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:contain-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:also a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:more a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..79355d632171312e423f200a0cdf2ce1feefe5d4
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1054 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:contain-01.ARG0 a ns3:FrameRole .
+
+ns3:contain-01.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_c_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-10 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#root01> ;
+    :hasRootLeaf :leaf_contain-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-10" ;
+    :hasSentenceStatement "The Solar System also contains smaller objects." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_contain_c a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s,
+        net:individual_SolarSystem_s ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_mod net:atomClass_also_a ;
+    net:coverBaseNode :leaf_contain-01_c ;
+    net:coverNode :leaf_contain-01_c ;
+    net:hasNaming "contain" ;
+    net:hasPropertyName "contain" ;
+    net:hasPropertyName01 "containing" ;
+    net:hasPropertyName10 "contain-by" ;
+    net:hasPropertyName12 "contain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_also_a,
+        :leaf_object_o,
+        :leaf_system_s .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_small_s2 ;
+    :role_ARG3 net:atomProperty_more_m ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s2> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-10" ;
+    ns1:has-sentence "The Solar System also contains smaller objects." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_also rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:also ;
+    :label "also" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:contain-01 ;
+    :label "contain-01" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#a> ;
+    :label "a" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#c> ;
+    :label "c" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#h> ;
+    :label "h" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#m> ;
+    :label "m" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> ;
+    :label "o" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s> ;
+    :label "s" ;
+    :name "Solar System" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s2> ;
+    :label "s2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_also_a a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_also_a ;
+    net:coverNode :leaf_also_a ;
+    net:hasClassName "also" ;
+    net:hasNaming "also" ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" .
+
+net:atomClass_small_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s2 ;
+    net:coverNode :leaf_small_s2 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" .
+
+net:atomProperty_more_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m ;
+    net:coverNode :leaf_more_m ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_SolarSystem_s a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#a> a ns2:also ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#c> a ns3:contain-01 ;
+    ns3:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s> ;
+    ns3:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#m> a ns1:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s> a ns2:system ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#s2> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:contain-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:also a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:more a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_m :leaf_more_m ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-10" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-10#o> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_contain-01_c a :AMR_Leaf ;
+    :edge_c_a :leaf_also_a ;
+    :edge_c_o :leaf_object_o ;
+    :edge_c_s :leaf_system_s ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c .
+
+:leaf_more_m a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_also_a a :AMR_Leaf ;
+    :hasConcept :concept_also ;
+    :hasVariable :variable_a .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..c4def477ecceba035a671cf6b1bea8cca2b8c3fa
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-10/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,34 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-10" .
+
+<https://tenet.tetras-libre.fr/extract-result#also> a owl:Class ;
+    rdfs:label "also" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-10" .
+
+<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
+    rdfs:label "contain" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-10" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-10" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-10" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-10" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..e87383cab11b455e31605a7819a5ab76fff5b80d
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,873 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#l> a ns11:lie-07 ;
+    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r2> a ns11:resemble-01 ;
+    ns11:resemble-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> ;
+    ns11:resemble-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-11" ;
+    ns3:has-sentence "The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:compose-01.ARG1 a ns11:FrameRole .
+
+ns11:compose-01.ARG2 a ns11:FrameRole .
+
+ns11:contain-01.ARG0 a ns11:FrameRole .
+
+ns11:contain-01.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG2 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:resemble-01.ARG1 a ns11:FrameRole .
+
+ns11:resemble-01.ARG2 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> a ns2:asteroid .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> a ns3:between ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> a ns11:contain-01 ;
+    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> a ns11:compose-01 ;
+    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
+    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> a ns2:metal .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> a ns3:most .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mars" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> a ns2:rock .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> a ns2:terrestrial .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns11:compose-01 a ns3:Frame .
+
+ns11:contain-01 a ns3:Frame .
+
+ns11:lie-07 a ns3:Frame .
+
+ns11:resemble-01 a ns3:Frame .
+
+ns2:asteroid a ns3:Concept .
+
+ns2:belt a ns3:Concept .
+
+ns2:metal a ns3:Concept .
+
+ns2:object a ns3:Concept .
+
+ns2:rock a ns3:Concept .
+
+ns2:terrestrial a ns3:Concept .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept .
+
+ns3:between a ns3:Concept .
+
+ns3:most a ns3:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> a ns2:belt ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> a ns2:object .
+
+ns11:orbit-01 a ns3:Frame .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..cfbae05c229bb288cb26da85da3db72bb9f9bdae
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1717 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:compose-01.ARG1 a ns11:FrameRole .
+
+ns11:compose-01.ARG2 a ns11:FrameRole .
+
+ns11:contain-01.ARG0 a ns11:FrameRole .
+
+ns11:contain-01.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG2 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:resemble-01.ARG1 a ns11:FrameRole .
+
+ns11:resemble-01.ARG2 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_m a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a2_r a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b2_o a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b2_o2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_c_m2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_o2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_name_Jupiter a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p3_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_name_Mars a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_r2_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r2_p3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-11 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#root01> ;
+    :hasRootLeaf :leaf_contain-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-11" ;
+    :hasSentenceStatement "The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#Jupiter> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Jupiter" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#Mars> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Mars" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#asteroid-belt-contain-object> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#contain> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#object> ],
+        <https://tenet.tetras-libre.fr/extract-result#asteroid-belt> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#between> a owl:Class ;
+    rdfs:label "between" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#compose-resemble-terrestrial-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#resemble> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#terrestrial-planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#compose> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#lie> a owl:ObjectProperty ;
+    rdfs:label "lie" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#metal> a owl:Class ;
+    rdfs:label "metal" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#rock> a owl:Class ;
+    rdfs:label "rock" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_lie_l a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_belt_b,
+        net:compositeClass_asteroid-belt_b ;
+    :role_ARG2 net:atomClass_between_b2,
+        net:atomProperty_between_b2 ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_lie-07_l ;
+    net:hasNaming "lie" ;
+    net:hasPropertyName "lie" ;
+    net:hasPropertyName01 "lieing" ;
+    net:hasPropertyName10 "lie-by" ;
+    net:hasPropertyName12 "lie-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_belt_b,
+        :leaf_between_b2 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_asteroid-belt-contain-object_b a net:Composite_Class_Net ;
+    :role_mod net:atomClass_asteroid_a ;
+    net:composeFrom net:atomClass_object_o3,
+        net:atomProperty_contain_c,
+        net:compositeClass_asteroid-belt_b ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_asteroid_a,
+        :leaf_belt_b,
+        :leaf_contain-01_c,
+        :leaf_object_o3 ;
+    net:hasMotherClassNet net:compositeClass_asteroid-belt_b ;
+    net:hasNaming "asteroid-belt-contain-object" ;
+    net:hasRestriction net:restriction_contain-object_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:compositeClass_compose-resemble-terrestrial-planet_c2 a net:Composite_Class_Net ;
+    :role_ARG1 net:atomClass_object_o3 ;
+    :role_ARG2 net:phenomena_conjunction-AND_a2 ;
+    net:composeFrom net:atomClass_compose_c2,
+        net:atomProperty_resemble_r2,
+        net:compositeClass_terrestrial-planet_p3 ;
+    net:coverBaseNode :leaf_compose-01_c2 ;
+    net:coverNode :leaf_compose-01_c2,
+        :leaf_planet_p3,
+        :leaf_resemble-01_r2,
+        :leaf_terrestrial_t ;
+    net:hasMotherClassNet net:atomClass_compose_c2 ;
+    net:hasNaming "compose-resemble-terrestrial-planet" ;
+    net:hasRestriction net:restriction_resemble-terrestrial-planet_r2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_asteroid_a a net:Individual_Net ;
+    net:composeFrom net:atomClass_asteroid_a ;
+    net:coverBaseNode :leaf_asteroid_a ;
+    net:coverNode :leaf_asteroid_a ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "asteroid" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:individual_terrestrial_t a net:Individual_Net ;
+    net:composeFrom net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_terrestrial_t ;
+    net:coverNode :leaf_terrestrial_t ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "terrestrial" ;
+    net:hasMotherClassNet net:atomClass_terrestrial_t ;
+    net:hasNaming "terrestrial" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#l> a ns11:lie-07 ;
+    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r2> a ns11:resemble-01 ;
+    ns11:resemble-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> ;
+    ns11:resemble-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-11" ;
+    ns3:has-sentence "The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_asteroid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:asteroid ;
+    :label "asteroid" .
+
+:concept_belt rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:belt ;
+    :label "belt" .
+
+:concept_between rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:between ;
+    :label "between" .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:compose-01 ;
+    :label "compose-01" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:contain-01 ;
+    :label "contain-01" .
+
+:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:lie-07 ;
+    :label "lie-07" .
+
+:concept_metal rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:metal ;
+    :label "metal" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_resemble-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:resemble-01 ;
+    :label "resemble-01" .
+
+:concept_rock rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:rock ;
+    :label "rock" .
+
+:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:terrestrial ;
+    :label "terrestrial" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    :label "b" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> ;
+    :label "b2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> ;
+    :label "c2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> ;
+    :label "p" ;
+    :name "Mars" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> ;
+    :label "p2" ;
+    :name "Jupiter" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> ;
+    :label "p3" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> ;
+    :label "r" .
+
+:variable_r2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r2> ;
+    :label "r2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#asteroid> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "asteroid" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#asteroid-belt> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#belt> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#belt> a owl:Class ;
+    rdfs:label "belt" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#compose> a owl:Class ;
+    rdfs:label "compose" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
+    rdfs:label "contain" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#resemble> a owl:ObjectProperty ;
+    rdfs:label "resemble" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#terrestrial> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#terrestrial> ;
+    rdfs:label "terrestrial" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#terrestrial-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_between_b2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_op1 net:atomProperty_orbit_o ;
+    :role_op2 net:atomProperty_orbit_o2 ;
+    net:composeFrom net:atomProperty_between_b2 ;
+    net:coverBaseNode :leaf_between_b2 ;
+    net:coverNode :leaf_between_b2 ;
+    net:hasClassName "between" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "between" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomProperty_most_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m2 ;
+    net:coverNode :leaf_most_m2 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_Jupiter_p2 a net:Individual_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasIndividualLabel "Jupiter" ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:individual_Mars_p a net:Individual_Net ;
+    :role_name net:value_Mars_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Mars" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Mars" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_contain-object_c a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o3,
+        net:atomProperty_contain_c ;
+    net:coverBaseNode :leaf_contain-01_c ;
+    net:coverNode :leaf_contain-01_c,
+        :leaf_object_o3 ;
+    net:hasNaming "contain-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o3 ;
+    net:hasRestrictionOnProperty net:atomProperty_contain_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:restriction_resemble-terrestrial-planet_r2 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_resemble_r2,
+        net:compositeClass_terrestrial-planet_p3 ;
+    net:coverBaseNode :leaf_resemble-01_r2 ;
+    net:coverNode :leaf_planet_p3,
+        :leaf_resemble-01_r2,
+        :leaf_terrestrial_t ;
+    net:hasNaming "resemble-terrestrial-planet" ;
+    net:hasRestrictionNetValue net:compositeClass_terrestrial-planet_p3 ;
+    net:hasRestrictionOnProperty net:atomProperty_resemble_r2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> a ns2:asteroid ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> a ns3:between ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> a ns11:contain-01 ;
+    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> a ns11:compose-01 ;
+    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
+    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> a ns2:metal ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mars" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> a ns2:rock ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> a ns2:terrestrial ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:compose-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:contain-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:lie-07 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:resemble-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:asteroid a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:belt a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:metal a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:rock a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:terrestrial a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:between a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_lie-07_l a :AMR_Leaf ;
+    :edge_l_b :leaf_belt_b ;
+    :edge_l_b2 :leaf_between_b2 ;
+    :hasConcept :concept_lie-07 ;
+    :hasVariable :variable_l .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_Jupiter a :AMR_Value ;
+    rdfs:label "Jupiter" .
+
+:value_Mars a :AMR_Value ;
+    rdfs:label "Mars" .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_metal_m a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_metal_m ;
+    net:coverNode :leaf_metal_m ;
+    net:hasClassName "metal" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "metal" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Mars_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomClass_rock_r a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_rock_r ;
+    net:coverNode :leaf_rock_r ;
+    net:hasClassName "rock" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "rock" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomProperty_between_b2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_op1 net:atomProperty_orbit_o ;
+    :role_op2 net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_between_b2 ;
+    net:coverNode :leaf_between_b2 ;
+    net:hasNaming "between" ;
+    net:hasPropertyName "between" ;
+    net:hasPropertyName01 "betweening" ;
+    net:hasPropertyName10 "between-by" ;
+    net:hasPropertyName12 "between-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_orbit-01_o,
+        :leaf_orbit-01_o2 .
+
+net:atomProperty_compose_c2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_object_o3 ;
+    :role_ARG2 net:atomClass_metal_m,
+        net:atomClass_rock_r,
+        net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_compose-01_c2 ;
+    net:coverNode :leaf_compose-01_c2 ;
+    net:hasNaming "compose" ;
+    net:hasPropertyName "compose" ;
+    net:hasPropertyName01 "composeing" ;
+    net:hasPropertyName10 "compose-by" ;
+    net:hasPropertyName12 "compose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2,
+        :leaf_object_o3 .
+
+net:atomProperty_orbit_o a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_planet_p,
+        net:individual_Mars_p ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_planet_p .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_planet_p2,
+        net:individual_Jupiter_p2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_planet_p2 .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Jupiter_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Jupiter ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:hasValueLabel "Jupiter" .
+
+net:value_Mars_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Mars ;
+    net:hasNaming "Mars" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:hasValueLabel "Mars" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> a ns2:belt ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_metal_m a :AMR_Leaf ;
+    :hasConcept :concept_metal ;
+    :hasVariable :variable_m .
+
+:leaf_rock_r a :AMR_Leaf ;
+    :hasConcept :concept_rock ;
+    :hasVariable :variable_r .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-11" .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_compose_c2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_object_o3 ;
+    :role_ARG2 net:phenomena_conjunction-AND_a2 ;
+    net:composeFrom net:atomProperty_compose_c2 ;
+    net:coverBaseNode :leaf_compose-01_c2 ;
+    net:coverNode :leaf_compose-01_c2 ;
+    net:hasClassName "compose" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "compose" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomClass_planet_p3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_planet_p3 ;
+    net:coverNode :leaf_planet_p3 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomProperty_contain_c a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_belt_b,
+        net:compositeClass_asteroid-belt_b ;
+    :role_ARG1 net:atomClass_object_o3 ;
+    :role_mod net:atomProperty_most_m2 ;
+    net:coverBaseNode :leaf_contain-01_c ;
+    net:coverNode :leaf_contain-01_c ;
+    net:hasNaming "contain" ;
+    net:hasPropertyName "contain" ;
+    net:hasPropertyName01 "containing" ;
+    net:hasPropertyName10 "contain-by" ;
+    net:hasPropertyName12 "contain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_belt_b,
+        :leaf_most_m2,
+        :leaf_object_o3 .
+
+net:atomProperty_resemble_r2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_compose_c2,
+        net:atomProperty_compose_c2 ;
+    :role_ARG2 net:atomClass_planet_p3,
+        net:compositeClass_terrestrial-planet_p3 ;
+    net:coverBaseNode :leaf_resemble-01_r2 ;
+    net:coverNode :leaf_resemble-01_r2 ;
+    net:hasNaming "resemble" ;
+    net:hasPropertyName "resemble" ;
+    net:hasPropertyName01 "resembleing" ;
+    net:hasPropertyName10 "resemble-by" ;
+    net:hasPropertyName12 "resemble-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_compose-01_c2,
+        :leaf_planet_p3 .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_rock_r ;
+    :role_op2 net:atomClass_metal_m ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_m :leaf_metal_m ;
+    :edge_a2_r :leaf_rock_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_most_m2 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m2 .
+
+:leaf_orbit-01_o a :AMR_Leaf ;
+    :edge_o_p :leaf_planet_p ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_belt_b a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_asteroid_a ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_belt_b ;
+    net:hasClassName "belt" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "belt" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:compositeClass_asteroid-belt_b a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_asteroid_a ;
+    net:composeFrom net:atomClass_asteroid_a,
+        net:atomClass_belt_b ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_asteroid_a,
+        :leaf_belt_b ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_belt_b ;
+    net:hasNaming "asteroid-belt" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:compositeClass_terrestrial-planet_p3 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_terrestrial_t ;
+    net:composeFrom net:atomClass_planet_p3,
+        net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_planet_p3 ;
+    net:coverNode :leaf_planet_p3,
+        :leaf_terrestrial_t ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p3 ;
+    net:hasNaming "terrestrial-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_resemble-01_r2 a :AMR_Leaf ;
+    :edge_r2_c2 :leaf_compose-01_c2 ;
+    :edge_r2_p3 :leaf_planet_p3 ;
+    :hasConcept :concept_resemble-01 ;
+    :hasVariable :variable_r2 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_terrestrial_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_terrestrial_t ;
+    net:coverNode :leaf_terrestrial_t ;
+    net:hasClassName "terrestrial" ;
+    net:hasNaming "terrestrial" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_between_b2 a :AMR_Leaf ;
+    :edge_b2_o :leaf_orbit-01_o ;
+    :edge_b2_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_between ;
+    :hasVariable :variable_b2 .
+
+:leaf_contain-01_c a :AMR_Leaf ;
+    :edge_c_b :leaf_belt_b ;
+    :edge_c_m2 :leaf_most_m2 ;
+    :edge_c_o3 :leaf_object_o3 ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mars :value_Mars ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Jupiter :value_Jupiter ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_asteroid_a a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_asteroid_a ;
+    net:coverNode :leaf_asteroid_a ;
+    net:hasClassName "asteroid" ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_asteroid_a a :AMR_Leaf ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_object_o3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+:leaf_compose-01_c2 a :AMR_Leaf ;
+    :edge_c2_a2 :leaf_and_a2 ;
+    :edge_c2_o3 :leaf_object_o3 ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:leaf_planet_p3 a :AMR_Leaf ;
+    :edge_p3_t :leaf_terrestrial_t ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p3 .
+
+:leaf_terrestrial_t a :AMR_Leaf ;
+    :hasConcept :concept_terrestrial ;
+    :hasVariable :variable_t .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_belt_b a :AMR_Leaf ;
+    :edge_b_a :leaf_asteroid_a ;
+    :hasConcept :concept_belt ;
+    :hasVariable :variable_b .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..1725f13ca810aa76f3bf2927179c287847708b92
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1220 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:compose-01.ARG1 a ns11:FrameRole .
+
+ns11:compose-01.ARG2 a ns11:FrameRole .
+
+ns11:contain-01.ARG0 a ns11:FrameRole .
+
+ns11:contain-01.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG2 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:resemble-01.ARG1 a ns11:FrameRole .
+
+ns11:resemble-01.ARG2 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_m a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a2_r a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b2_o a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b2_o2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_c_m2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_o2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_name_Jupiter a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p3_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_name_Mars a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_r2_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r2_p3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_lie-07_l a :AMR_Leaf ;
+    :edge_l_b :leaf_belt_b ;
+    :edge_l_b2 :leaf_between_b2 ;
+    :hasConcept :concept_lie-07 ;
+    :hasVariable :variable_l .
+
+:leaf_resemble-01_r2 a :AMR_Leaf ;
+    :edge_r2_c2 :leaf_compose-01_c2 ;
+    :edge_r2_p3 :leaf_planet_p3 ;
+    :hasConcept :concept_resemble-01 ;
+    :hasVariable :variable_r2 .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-11 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#root01> ;
+    :hasRootLeaf :leaf_contain-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-11" ;
+    :hasSentenceStatement "The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#l> a ns11:lie-07 ;
+    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r2> a ns11:resemble-01 ;
+    ns11:resemble-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> ;
+    ns11:resemble-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-11" ;
+    ns3:has-sentence "The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_asteroid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:asteroid ;
+    :label "asteroid" .
+
+:concept_belt rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:belt ;
+    :label "belt" .
+
+:concept_between rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:between ;
+    :label "between" .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:compose-01 ;
+    :label "compose-01" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:contain-01 ;
+    :label "contain-01" .
+
+:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:lie-07 ;
+    :label "lie-07" .
+
+:concept_metal rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:metal ;
+    :label "metal" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_resemble-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:resemble-01 ;
+    :label "resemble-01" .
+
+:concept_rock rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:rock ;
+    :label "rock" .
+
+:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:terrestrial ;
+    :label "terrestrial" .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_m :leaf_metal_m ;
+    :edge_a2_r :leaf_rock_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_asteroid_a a :AMR_Leaf ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a .
+
+:leaf_between_b2 a :AMR_Leaf ;
+    :edge_b2_o :leaf_orbit-01_o ;
+    :edge_b2_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_between ;
+    :hasVariable :variable_b2 .
+
+:leaf_compose-01_c2 a :AMR_Leaf ;
+    :edge_c2_a2 :leaf_and_a2 ;
+    :edge_c2_o3 :leaf_object_o3 ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_contain-01_c a :AMR_Leaf ;
+    :edge_c_b :leaf_belt_b ;
+    :edge_c_m2 :leaf_most_m2 ;
+    :edge_c_o3 :leaf_object_o3 ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c .
+
+:leaf_metal_m a :AMR_Leaf ;
+    :hasConcept :concept_metal ;
+    :hasVariable :variable_m .
+
+:leaf_most_m2 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m2 .
+
+:leaf_orbit-01_o a :AMR_Leaf ;
+    :edge_o_p :leaf_planet_p ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mars :value_Mars ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Jupiter :value_Jupiter ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_planet_p3 a :AMR_Leaf ;
+    :edge_p3_t :leaf_terrestrial_t ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p3 .
+
+:leaf_rock_r a :AMR_Leaf ;
+    :hasConcept :concept_rock ;
+    :hasVariable :variable_r .
+
+:leaf_terrestrial_t a :AMR_Leaf ;
+    :hasConcept :concept_terrestrial ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:value_Jupiter a :AMR_Value ;
+    rdfs:label "Jupiter" .
+
+:value_Mars a :AMR_Value ;
+    rdfs:label "Mars" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    :label "b" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> ;
+    :label "b2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> ;
+    :label "c2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> ;
+    :label "p" ;
+    :name "Mars" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> ;
+    :label "p2" ;
+    :name "Jupiter" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> ;
+    :label "p3" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> ;
+    :label "r" .
+
+:variable_r2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r2> ;
+    :label "r2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> a ns2:asteroid ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> a ns3:between ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> a ns11:contain-01 ;
+    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> a ns11:compose-01 ;
+    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
+    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> a ns2:metal ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mars" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> a ns2:rock ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> a ns2:terrestrial ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:compose-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:contain-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:lie-07 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:resemble-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:asteroid a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:belt a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:metal a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:rock a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:terrestrial a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:between a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_belt_b a :AMR_Leaf ;
+    :edge_b_a :leaf_asteroid_a ;
+    :hasConcept :concept_belt ;
+    :hasVariable :variable_b .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> a ns2:belt ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..5b4334dfbd03a53a0af010ddc8610de175088774
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1611 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:compose-01.ARG1 a ns11:FrameRole .
+
+ns11:compose-01.ARG2 a ns11:FrameRole .
+
+ns11:contain-01.ARG0 a ns11:FrameRole .
+
+ns11:contain-01.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG2 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:resemble-01.ARG1 a ns11:FrameRole .
+
+ns11:resemble-01.ARG2 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_m a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a2_r a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b2_o a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b2_o2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_c_m2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_o2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_name_Jupiter a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p3_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_name_Mars a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_r2_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r2_p3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-11 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#root01> ;
+    :hasRootLeaf :leaf_contain-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-11" ;
+    :hasSentenceStatement "The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_lie_l a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_belt_b,
+        net:compositeClass_asteroid-belt_b ;
+    :role_ARG2 net:atomClass_between_b2,
+        net:atomProperty_between_b2 ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_lie-07_l ;
+    net:hasNaming "lie" ;
+    net:hasPropertyName "lie" ;
+    net:hasPropertyName01 "lieing" ;
+    net:hasPropertyName10 "lie-by" ;
+    net:hasPropertyName12 "lie-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_belt_b,
+        :leaf_between_b2 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_asteroid-belt-contain-object_b a net:Composite_Class_Net ;
+    :role_mod net:atomClass_asteroid_a ;
+    net:composeFrom net:atomClass_object_o3,
+        net:atomProperty_contain_c,
+        net:compositeClass_asteroid-belt_b ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_asteroid_a,
+        :leaf_belt_b,
+        :leaf_contain-01_c,
+        :leaf_object_o3 ;
+    net:hasMotherClassNet net:compositeClass_asteroid-belt_b ;
+    net:hasNaming "asteroid-belt-contain-object" ;
+    net:hasRestriction net:restriction_contain-object_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:compositeClass_compose-resemble-terrestrial-planet_c2 a net:Composite_Class_Net ;
+    :role_ARG1 net:atomClass_object_o3 ;
+    :role_ARG2 net:phenomena_conjunction-AND_a2 ;
+    net:composeFrom net:atomClass_compose_c2,
+        net:atomProperty_resemble_r2,
+        net:compositeClass_terrestrial-planet_p3 ;
+    net:coverBaseNode :leaf_compose-01_c2 ;
+    net:coverNode :leaf_compose-01_c2,
+        :leaf_planet_p3,
+        :leaf_resemble-01_r2,
+        :leaf_terrestrial_t ;
+    net:hasMotherClassNet net:atomClass_compose_c2 ;
+    net:hasNaming "compose-resemble-terrestrial-planet" ;
+    net:hasRestriction net:restriction_resemble-terrestrial-planet_r2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_asteroid_a a net:Individual_Net ;
+    net:composeFrom net:atomClass_asteroid_a ;
+    net:coverBaseNode :leaf_asteroid_a ;
+    net:coverNode :leaf_asteroid_a ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "asteroid" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:individual_terrestrial_t a net:Individual_Net ;
+    net:composeFrom net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_terrestrial_t ;
+    net:coverNode :leaf_terrestrial_t ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "terrestrial" ;
+    net:hasMotherClassNet net:atomClass_terrestrial_t ;
+    net:hasNaming "terrestrial" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#l> a ns11:lie-07 ;
+    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r2> a ns11:resemble-01 ;
+    ns11:resemble-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> ;
+    ns11:resemble-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-11" ;
+    ns3:has-sentence "The asteroid belt, which lies between the orbits of Mars and Jupiter, mostly contains objects composed, like the terrestrial planets, of rock and metal." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_asteroid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:asteroid ;
+    :label "asteroid" .
+
+:concept_belt rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:belt ;
+    :label "belt" .
+
+:concept_between rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:between ;
+    :label "between" .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:compose-01 ;
+    :label "compose-01" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:contain-01 ;
+    :label "contain-01" .
+
+:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:lie-07 ;
+    :label "lie-07" .
+
+:concept_metal rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:metal ;
+    :label "metal" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_resemble-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:resemble-01 ;
+    :label "resemble-01" .
+
+:concept_rock rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:rock ;
+    :label "rock" .
+
+:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:terrestrial ;
+    :label "terrestrial" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    :label "b" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> ;
+    :label "b2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> ;
+    :label "c2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> ;
+    :label "p" ;
+    :name "Mars" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> ;
+    :label "p2" ;
+    :name "Jupiter" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> ;
+    :label "p3" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> ;
+    :label "r" .
+
+:variable_r2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r2> ;
+    :label "r2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_between_b2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_op1 net:atomProperty_orbit_o ;
+    :role_op2 net:atomProperty_orbit_o2 ;
+    net:composeFrom net:atomProperty_between_b2 ;
+    net:coverBaseNode :leaf_between_b2 ;
+    net:coverNode :leaf_between_b2 ;
+    net:hasClassName "between" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "between" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomProperty_most_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m2 ;
+    net:coverNode :leaf_most_m2 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_Jupiter_p2 a net:Individual_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasIndividualLabel "Jupiter" ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:individual_Mars_p a net:Individual_Net ;
+    :role_name net:value_Mars_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Mars" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Mars" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_contain-object_c a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o3,
+        net:atomProperty_contain_c ;
+    net:coverBaseNode :leaf_contain-01_c ;
+    net:coverNode :leaf_contain-01_c,
+        :leaf_object_o3 ;
+    net:hasNaming "contain-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o3 ;
+    net:hasRestrictionOnProperty net:atomProperty_contain_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:restriction_resemble-terrestrial-planet_r2 a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_resemble_r2,
+        net:compositeClass_terrestrial-planet_p3 ;
+    net:coverBaseNode :leaf_resemble-01_r2 ;
+    net:coverNode :leaf_planet_p3,
+        :leaf_resemble-01_r2,
+        :leaf_terrestrial_t ;
+    net:hasNaming "resemble-terrestrial-planet" ;
+    net:hasRestrictionNetValue net:compositeClass_terrestrial-planet_p3 ;
+    net:hasRestrictionOnProperty net:atomProperty_resemble_r2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> a ns2:asteroid ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b2> a ns3:between ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c> a ns11:contain-01 ;
+    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> ;
+    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#c2> a ns11:compose-01 ;
+    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> ;
+    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m> a ns2:metal ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#m2> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mars" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#p3> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#r> a ns2:rock ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#t> a ns2:terrestrial ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:compose-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:contain-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:lie-07 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:resemble-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:asteroid a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:belt a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:metal a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:rock a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:terrestrial a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:between a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_lie-07_l a :AMR_Leaf ;
+    :edge_l_b :leaf_belt_b ;
+    :edge_l_b2 :leaf_between_b2 ;
+    :hasConcept :concept_lie-07 ;
+    :hasVariable :variable_l .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_Jupiter a :AMR_Value ;
+    rdfs:label "Jupiter" .
+
+:value_Mars a :AMR_Value ;
+    rdfs:label "Mars" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_metal_m a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_metal_m ;
+    net:coverNode :leaf_metal_m ;
+    net:hasClassName "metal" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "metal" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Mars_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomClass_rock_r a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_rock_r ;
+    net:coverNode :leaf_rock_r ;
+    net:hasClassName "rock" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "rock" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomProperty_between_b2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_op1 net:atomProperty_orbit_o ;
+    :role_op2 net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_between_b2 ;
+    net:coverNode :leaf_between_b2 ;
+    net:hasNaming "between" ;
+    net:hasPropertyName "between" ;
+    net:hasPropertyName01 "betweening" ;
+    net:hasPropertyName10 "between-by" ;
+    net:hasPropertyName12 "between-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_orbit-01_o,
+        :leaf_orbit-01_o2 .
+
+net:atomProperty_compose_c2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_object_o3 ;
+    :role_ARG2 net:atomClass_metal_m,
+        net:atomClass_rock_r,
+        net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_compose-01_c2 ;
+    net:coverNode :leaf_compose-01_c2 ;
+    net:hasNaming "compose" ;
+    net:hasPropertyName "compose" ;
+    net:hasPropertyName01 "composeing" ;
+    net:hasPropertyName10 "compose-by" ;
+    net:hasPropertyName12 "compose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2,
+        :leaf_object_o3 .
+
+net:atomProperty_orbit_o a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_planet_p,
+        net:individual_Mars_p ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_planet_p .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_planet_p2,
+        net:individual_Jupiter_p2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_planet_p2 .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Jupiter_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Jupiter ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:hasValueLabel "Jupiter" .
+
+net:value_Mars_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Mars ;
+    net:hasNaming "Mars" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:hasValueLabel "Mars" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#b> a ns2:belt ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-11#o3> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_metal_m a :AMR_Leaf ;
+    :hasConcept :concept_metal ;
+    :hasVariable :variable_m .
+
+:leaf_rock_r a :AMR_Leaf ;
+    :hasConcept :concept_rock ;
+    :hasVariable :variable_r .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_compose_c2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_object_o3 ;
+    :role_ARG2 net:phenomena_conjunction-AND_a2 ;
+    net:composeFrom net:atomProperty_compose_c2 ;
+    net:coverBaseNode :leaf_compose-01_c2 ;
+    net:coverNode :leaf_compose-01_c2 ;
+    net:hasClassName "compose" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "compose" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomClass_planet_p3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_planet_p3 ;
+    net:coverNode :leaf_planet_p3 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:atomProperty_contain_c a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_belt_b,
+        net:compositeClass_asteroid-belt_b ;
+    :role_ARG1 net:atomClass_object_o3 ;
+    :role_mod net:atomProperty_most_m2 ;
+    net:coverBaseNode :leaf_contain-01_c ;
+    net:coverNode :leaf_contain-01_c ;
+    net:hasNaming "contain" ;
+    net:hasPropertyName "contain" ;
+    net:hasPropertyName01 "containing" ;
+    net:hasPropertyName10 "contain-by" ;
+    net:hasPropertyName12 "contain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_belt_b,
+        :leaf_most_m2,
+        :leaf_object_o3 .
+
+net:atomProperty_resemble_r2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_compose_c2,
+        net:atomProperty_compose_c2 ;
+    :role_ARG2 net:atomClass_planet_p3,
+        net:compositeClass_terrestrial-planet_p3 ;
+    net:coverBaseNode :leaf_resemble-01_r2 ;
+    net:coverNode :leaf_resemble-01_r2 ;
+    net:hasNaming "resemble" ;
+    net:hasPropertyName "resemble" ;
+    net:hasPropertyName01 "resembleing" ;
+    net:hasPropertyName10 "resemble-by" ;
+    net:hasPropertyName12 "resemble-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_compose-01_c2,
+        :leaf_planet_p3 .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_rock_r ;
+    :role_op2 net:atomClass_metal_m ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_m :leaf_metal_m ;
+    :edge_a2_r :leaf_rock_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_most_m2 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m2 .
+
+:leaf_orbit-01_o a :AMR_Leaf ;
+    :edge_o_p :leaf_planet_p ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_belt_b a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_asteroid_a ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_belt_b ;
+    net:hasClassName "belt" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "belt" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:compositeClass_asteroid-belt_b a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_asteroid_a ;
+    net:composeFrom net:atomClass_asteroid_a,
+        net:atomClass_belt_b ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_asteroid_a,
+        :leaf_belt_b ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_belt_b ;
+    net:hasNaming "asteroid-belt" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:compositeClass_terrestrial-planet_p3 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_terrestrial_t ;
+    net:composeFrom net:atomClass_planet_p3,
+        net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_planet_p3 ;
+    net:coverNode :leaf_planet_p3,
+        :leaf_terrestrial_t ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p3 ;
+    net:hasNaming "terrestrial-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_resemble-01_r2 a :AMR_Leaf ;
+    :edge_r2_c2 :leaf_compose-01_c2 ;
+    :edge_r2_p3 :leaf_planet_p3 ;
+    :hasConcept :concept_resemble-01 ;
+    :hasVariable :variable_r2 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_terrestrial_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_terrestrial_t ;
+    net:coverNode :leaf_terrestrial_t ;
+    net:hasClassName "terrestrial" ;
+    net:hasNaming "terrestrial" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_between_b2 a :AMR_Leaf ;
+    :edge_b2_o :leaf_orbit-01_o ;
+    :edge_b2_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_between ;
+    :hasVariable :variable_b2 .
+
+:leaf_contain-01_c a :AMR_Leaf ;
+    :edge_c_b :leaf_belt_b ;
+    :edge_c_m2 :leaf_most_m2 ;
+    :edge_c_o3 :leaf_object_o3 ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mars :value_Mars ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Jupiter :value_Jupiter ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_asteroid_a a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_asteroid_a ;
+    net:coverNode :leaf_asteroid_a ;
+    net:hasClassName "asteroid" ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_asteroid_a a :AMR_Leaf ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_object_o3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-11" .
+
+:leaf_compose-01_c2 a :AMR_Leaf ;
+    :edge_c2_a2 :leaf_and_a2 ;
+    :edge_c2_o3 :leaf_object_o3 ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:leaf_planet_p3 a :AMR_Leaf ;
+    :edge_p3_t :leaf_terrestrial_t ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p3 .
+
+:leaf_terrestrial_t a :AMR_Leaf ;
+    :hasConcept :concept_terrestrial ;
+    :hasVariable :variable_t .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_belt_b a :AMR_Leaf ;
+    :edge_b_a :leaf_asteroid_a ;
+    :hasConcept :concept_belt ;
+    :hasVariable :variable_b .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..5ba48fd41f7b289c42103488b5ad555f12235596
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-11/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,110 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#Jupiter> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Jupiter" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#Mars> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Mars" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#asteroid-belt-contain-object> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#contain> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#object> ],
+        <https://tenet.tetras-libre.fr/extract-result#asteroid-belt> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#between> a owl:Class ;
+    rdfs:label "between" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#compose-resemble-terrestrial-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#resemble> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#terrestrial-planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#compose> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#lie> a owl:ObjectProperty ;
+    rdfs:label "lie" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#metal> a owl:Class ;
+    rdfs:label "metal" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#rock> a owl:Class ;
+    rdfs:label "rock" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#asteroid> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "asteroid" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#asteroid-belt> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#belt> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#belt> a owl:Class ;
+    rdfs:label "belt" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#compose> a owl:Class ;
+    rdfs:label "compose" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
+    rdfs:label "contain" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#resemble> a owl:ObjectProperty ;
+    rdfs:label "resemble" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#terrestrial> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#terrestrial> ;
+    rdfs:label "terrestrial" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#terrestrial-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-11" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..64d93b1f2b79e32abe06b05d8a93a209b97d6a10
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,893 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#c> a ns11:compose-01 ;
+    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> ;
+    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#n3> a ns11:new-01 ;
+    ns11:new-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-12" ;
+    ns3:has-sentence "Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s> a ns11:scatter-01 ;
+    ns11:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#t> a ns11:transpire-01 ;
+    ns11:transpire-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
+    ns11:transpire-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:compose-01.ARG1 a ns11:FrameRole .
+
+ns11:compose-01.ARG2 a ns11:FrameRole .
+
+ns11:discover-01.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG2 a ns11:FrameRole .
+
+ns11:new-01.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:scatter-01.ARG1 a ns11:FrameRole .
+
+ns11:transpire-01.ARG0 a ns11:FrameRole .
+
+ns11:transpire-01.ARG1 a ns11:FrameRole .
+
+ns2:consist a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns3:Role .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> a ns2:belt ;
+    rdfs:label "Kuiper Belt" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> a ns11:discover-01 ;
+    ns11:discover-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> a ns2:ice ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> a ns11:lie-07 ;
+    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> ;
+    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> a ns3:most .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> a ns2:population ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> a ns2:sednoid .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity .
+
+ns11:compose-01 a ns3:Frame .
+
+ns11:discover-01 a ns3:Frame .
+
+ns11:lie-07 a ns3:Frame .
+
+ns11:new-01 a ns3:Frame .
+
+ns11:orbit-01 a ns3:Frame .
+
+ns11:scatter-01 a ns3:Frame .
+
+ns11:transpire-01 a ns3:Frame .
+
+ns2:belt a ns3:Concept .
+
+ns2:disc a ns3:Concept .
+
+ns2:ice a ns3:Concept .
+
+ns2:object a ns3:Concept .
+
+ns2:sednoid a ns3:Concept .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> a ns2:disc .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> a ns2:object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Neptunian" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> a ns2:population ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> .
+
+ns2:beyond a ns3:Concept .
+
+ns2:population a ns3:Concept .
+
+ns3:and a ns3:Concept .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..6f140bb4d49fb171ea6e8db0ad552c7afbd3ffac
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1786 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:compose-01.ARG1 a ns11:FrameRole .
+
+ns11:compose-01.ARG2 a ns11:FrameRole .
+
+ns11:discover-01.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG2 a ns11:FrameRole .
+
+ns11:new-01.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:scatter-01.ARG1 a ns11:FrameRole .
+
+ns11:transpire-01.ARG0 a ns11:FrameRole .
+
+ns11:transpire-01.ARG1 a ns11:FrameRole .
+
+ns2:consist a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns3:Role .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_b a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_d a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_a2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_name_KuiperBelt a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_c_ii a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d2_p3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_m a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_l_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l_b3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_n3_d2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_name_Neptunian a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p3_b2 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_p3_s2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_a2 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_p_o a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_s_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_t_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-12 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#root01> ;
+    :hasRootLeaf :leaf_lie-07_l ;
+    :hasSentenceID "WikiAbstract-SolarSystem-12" ;
+    :hasSentenceStatement "Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#KuiperBelt> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#belt> ;
+    rdfs:label "KuiperBelt" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#Neptunian> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Neptunian" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#disc> a owl:Class ;
+    rdfs:label "disc" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#discover> a owl:Class ;
+    rdfs:label "discover" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#new> a owl:ObjectProperty ;
+    rdfs:label "new" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-population-compose-ice> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#compose> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#ice> ],
+        <https://tenet.tetras-libre.fr/extract-result#object-population> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#scatter> a owl:ObjectProperty ;
+    rdfs:label "scatter" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#sednoid-population-lie-beyond> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#lie> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#beyond> ],
+        <https://tenet.tetras-libre.fr/extract-result#sednoid-population> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#transpire> a owl:ObjectProperty ;
+    rdfs:label "transpire" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_beyond_b2 a net:Atom_Class_Net ;
+    :role_op1 net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_beyond_b2 ;
+    net:coverNode :leaf_beyond_b2 ;
+    net:hasClassName "beyond" ;
+    net:hasNaming "beyond" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_new_n3 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_discover_d2,
+        net:atomProperty_discover_d2 ;
+    net:coverBaseNode :leaf_new-01_n3 ;
+    net:coverNode :leaf_new-01_n3 ;
+    net:hasNaming "new" ;
+    net:hasPropertyName "new" ;
+    net:hasPropertyName01 "newing" ;
+    net:hasPropertyName10 "new-by" ;
+    net:hasPropertyName12 "new-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_discover-01_d2 .
+
+net:atomProperty_scatter_s a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_scatter-01_s ;
+    net:coverNode :leaf_scatter-01_s ;
+    net:hasNaming "scatter" ;
+    net:hasPropertyName "scatter" ;
+    net:hasPropertyName01 "scattering" ;
+    net:hasPropertyName10 "scatter-by" ;
+    net:hasPropertyName12 "scatter-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_disc_d .
+
+net:atomProperty_transpire_t a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:individual_Neptunian_p2 ;
+    net:coverBaseNode :leaf_transpire-01_t ;
+    net:coverNode :leaf_transpire-01_t ;
+    net:hasNaming "transpire" ;
+    net:hasPropertyName "transpire" ;
+    net:hasPropertyName01 "transpireing" ;
+    net:hasPropertyName10 "transpire-by" ;
+    net:hasPropertyName12 "transpire-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_planet_p2 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_object-population-compose-ice_p a net:Composite_Class_Net ;
+    :role_mod net:atomClass_object_o ;
+    net:composeFrom net:atomClass_ice_ii,
+        net:atomProperty_compose_c,
+        net:compositeClass_object-population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_compose-01_c,
+        :leaf_ice_ii,
+        :leaf_object_o,
+        :leaf_population_p ;
+    net:hasMotherClassNet net:compositeClass_object-population_p ;
+    net:hasNaming "object-population-compose-ice" ;
+    net:hasRestriction net:restriction_compose-ice_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:compositeClass_sednoid-population-lie-beyond_p3 a net:Composite_Class_Net ;
+    :role_mod net:atomClass_sednoid_s2 ;
+    net:composeFrom net:atomClass_beyond_b3,
+        net:atomProperty_lie_l,
+        net:compositeClass_sednoid-population_p3 ;
+    net:coverBaseNode :leaf_population_p3 ;
+    net:coverNode :leaf_beyond_b3,
+        :leaf_lie-07_l,
+        :leaf_population_p3,
+        :leaf_sednoid_s2 ;
+    net:hasMotherClassNet net:compositeClass_sednoid-population_p3 ;
+    net:hasNaming "sednoid-population-lie-beyond" ;
+    net:hasRestriction net:restriction_lie-beyond_l ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_object_o a net:Individual_Net ;
+    net:composeFrom net:atomClass_object_o ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "object" ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:individual_sednoid_s2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_sednoid_s2 ;
+    net:coverBaseNode :leaf_sednoid_s2 ;
+    net:coverNode :leaf_sednoid_s2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "sednoid" ;
+    net:hasMotherClassNet net:atomClass_sednoid_s2 ;
+    net:hasNaming "sednoid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#c> a ns11:compose-01 ;
+    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> ;
+    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#n3> a ns11:new-01 ;
+    ns11:new-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-12" ;
+    ns3:has-sentence "Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s> a ns11:scatter-01 ;
+    ns11:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#t> a ns11:transpire-01 ;
+    ns11:transpire-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
+    ns11:transpire-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_belt rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:belt ;
+    :label "belt" .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:compose-01 ;
+    :label "compose-01" .
+
+:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:disc ;
+    :label "disc" .
+
+:concept_discover-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:discover-01 ;
+    :label "discover-01" .
+
+:concept_ice rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:ice ;
+    :label "ice" .
+
+:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:lie-07 ;
+    :label "lie-07" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_new-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:new-01 ;
+    :label "new-01" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_scatter-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:scatter-01 ;
+    :label "scatter-01" .
+
+:concept_sednoid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sednoid ;
+    :label "sednoid" .
+
+:concept_transpire-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:transpire-01 ;
+    :label "transpire-01" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> ;
+    :label "b" ;
+    :name "Kuiper Belt" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> ;
+    :label "b2" .
+
+:variable_b3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> ;
+    :label "b3" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#c> ;
+    :label "c" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> ;
+    :label "d2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> ;
+    :label "m" .
+
+:variable_n3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#n3> ;
+    :label "n3" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> ;
+    :label "o2" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    :label "p2" ;
+    :name "Neptunian" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
+    :label "p3" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> ;
+    :label "s2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#beyond> a owl:Class ;
+    rdfs:label "beyond" ;
+    rdfs:subClassOf sys:Entity,
+        sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#compose> a owl:ObjectProperty ;
+    rdfs:label "compose" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#ice> a owl:Class ;
+    rdfs:label "ice" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#lie> a owl:ObjectProperty ;
+    rdfs:label "lie" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#sednoid> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#sednoid> ;
+    rdfs:label "sednoid" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#sednoid-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_discover_d2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG1 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3 ;
+    net:composeFrom net:atomProperty_discover_d2 ;
+    net:coverBaseNode :leaf_discover-01_d2 ;
+    net:coverNode :leaf_discover-01_d2 ;
+    net:hasClassName "discover" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "discover" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_planet_p2,
+        net:individual_Neptunian_p2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_planet_p2 .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_KuiperBelt_b a net:Individual_Net ;
+    :role_name net:value_KuiperBelt_blankNode ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_belt_b ;
+    net:hasIndividualLabel "KuiperBelt" ;
+    net:hasMotherClassNet net:atomClass_belt_b ;
+    net:hasNaming "KuiperBelt" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_belt_b,
+        net:atomClass_disc_d,
+        net:phenomena_conjunction-AND_a2 ;
+    :role_op2 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3 ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:restriction_compose-ice_c a net:Restriction_Net ;
+    net:composeFrom net:atomClass_ice_ii,
+        net:atomProperty_compose_c ;
+    net:coverBaseNode :leaf_compose-01_c ;
+    net:coverNode :leaf_compose-01_c,
+        :leaf_ice_ii ;
+    net:hasNaming "compose-ice" ;
+    net:hasRestrictionNetValue net:atomClass_ice_ii ;
+    net:hasRestrictionOnProperty net:atomProperty_compose_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:restriction_lie-beyond_l a net:Restriction_Net ;
+    net:composeFrom net:atomClass_beyond_b3,
+        net:atomProperty_lie_l ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_beyond_b3,
+        :leaf_lie-07_l ;
+    net:hasNaming "lie-beyond" ;
+    net:hasRestrictionNetValue net:atomClass_beyond_b3 ;
+    net:hasRestrictionOnProperty net:atomProperty_lie_l ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> a ns2:belt ;
+    rdfs:label "Kuiper Belt" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> a ns11:discover-01 ;
+    ns11:discover-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> a ns2:ice ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> a ns11:lie-07 ;
+    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> ;
+    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> a ns2:population ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> a ns2:sednoid ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:compose-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:discover-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:lie-07 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:new-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:scatter-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:transpire-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:belt a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:disc a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:ice a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sednoid a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_beyond rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:beyond ;
+    :label "beyond" .
+
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:population ;
+    :label "population" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_new-01_n3 a :AMR_Leaf ;
+    :edge_n3_d2 :leaf_discover-01_d2 ;
+    :hasConcept :concept_new-01 ;
+    :hasVariable :variable_n3 .
+
+:leaf_scatter-01_s a :AMR_Leaf ;
+    :edge_s_d :leaf_disc_d ;
+    :hasConcept :concept_scatter-01 ;
+    :hasVariable :variable_s .
+
+:leaf_transpire-01_t a :AMR_Leaf ;
+    :edge_t_o :leaf_object_o ;
+    :edge_t_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_transpire-01 ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_KuiperBelt a :AMR_Value ;
+    rdfs:label "KuiperBelt" .
+
+:value_Neptunian a :AMR_Value ;
+    rdfs:label "Neptunian" .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+<https://tenet.tetras-libre.fr/extract-result#population> a owl:Class ;
+    rdfs:label "population" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-12" .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_discover_d2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3 ;
+    net:coverBaseNode :leaf_discover-01_d2 ;
+    net:coverNode :leaf_discover-01_d2 ;
+    net:hasNaming "discover" ;
+    net:hasPropertyName "discover" ;
+    net:hasPropertyName01 "discovering" ;
+    net:hasPropertyName10 "discover-by" ;
+    net:hasPropertyName12 "discover-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_population_p3 .
+
+net:individual_Neptunian_p2 a net:Individual_Net ;
+    :role_name net:value_Neptunian_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasIndividualLabel "Neptunian" ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "Neptunian" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_belt_b,
+        net:individual_KuiperBelt_b ;
+    :role_op2 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:value_KuiperBelt_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_KuiperBelt ;
+    net:hasNaming "KuiperBelt" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:hasValueLabel "KuiperBelt" .
+
+net:value_Neptunian_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Neptunian ;
+    net:hasNaming "Neptunian" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:hasValueLabel "Neptunian" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> a ns2:disc ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Neptunian" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> a ns2:population ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:beyond a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:population a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_beyond_b2 a :AMR_Leaf ;
+    :edge_b2_a2 :leaf_and_a2 ;
+    :hasConcept :concept_beyond ;
+    :hasVariable :variable_b2 .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_belt_b a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_KuiperBelt_blankNode ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_belt_b ;
+    net:hasClassName "belt" ;
+    net:hasNaming "belt" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomClass_disc_d a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_disc_d ;
+    net:coverNode :leaf_disc_d ;
+    net:hasClassName "disc" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "disc" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Neptunian_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomClass_population_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_object_o ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p ;
+    net:hasClassName "population" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomProperty_compose_c a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_population_p,
+        net:compositeClass_object-population_p ;
+    :role_ARG2 net:atomClass_ice_ii ;
+    net:coverBaseNode :leaf_compose-01_c ;
+    net:coverNode :leaf_compose-01_c ;
+    net:hasNaming "compose" ;
+    net:hasPropertyName "compose" ;
+    net:hasPropertyName01 "composeing" ;
+    net:hasPropertyName10 "compose-by" ;
+    net:hasPropertyName12 "compose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_ice_ii,
+        :leaf_population_p .
+
+net:atomProperty_lie_l a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3,
+        net:phenomena_conjunction-AND_a ;
+    :role_ARG2 net:atomClass_beyond_b3 ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_lie-07_l ;
+    net:hasNaming "lie" ;
+    net:hasPropertyName "lie" ;
+    net:hasPropertyName01 "lieing" ;
+    net:hasPropertyName10 "lie-by" ;
+    net:hasPropertyName12 "lie-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_beyond_b3 .
+
+net:compositeClass_object-population_p a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_object_o ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_object_o,
+        :leaf_population_p ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_population_p ;
+    net:hasNaming "object-population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_a2 :leaf_and_a2 ;
+    :edge_a_p3 :leaf_population_p3 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_beyond_b3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_op1 net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_beyond_b3 ;
+    net:coverNode :leaf_beyond_b3 ;
+    net:hasClassName "beyond" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "beyond" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomClass_ice_ii a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomProperty_most_m ;
+    net:coverBaseNode :leaf_ice_ii ;
+    net:coverNode :leaf_ice_ii ;
+    net:hasClassName "ice" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "ice" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_belt_b ;
+    :edge_a2_d :leaf_disc_d ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_belt_b a :AMR_Leaf ;
+    :edge_b_name_KuiperBelt :value_KuiperBelt ;
+    :hasConcept :concept_belt ;
+    :hasVariable :variable_b .
+
+:leaf_compose-01_c a :AMR_Leaf ;
+    :edge_c_ii :leaf_ice_ii ;
+    :edge_c_p :leaf_population_p ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c .
+
+:leaf_disc_d a :AMR_Leaf ;
+    :hasConcept :concept_disc ;
+    :hasVariable :variable_d .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_beyond_b3 a :AMR_Leaf ;
+    :edge_b3_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_beyond ;
+    :hasVariable :variable_b3 .
+
+:leaf_discover-01_d2 a :AMR_Leaf ;
+    :edge_d2_p3 :leaf_population_p3 ;
+    :hasConcept :concept_discover-01 ;
+    :hasVariable :variable_d2 .
+
+:leaf_ice_ii a :AMR_Leaf ;
+    :edge_ii_m :leaf_most_m ;
+    :hasConcept :concept_ice ;
+    :hasVariable :variable_ii .
+
+:leaf_lie-07_l a :AMR_Leaf ;
+    :edge_l_a :leaf_and_a ;
+    :edge_l_b3 :leaf_beyond_b3 ;
+    :hasConcept :concept_lie-07 ;
+    :hasVariable :variable_l .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_population_p3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sednoid_s2 ;
+    net:coverBaseNode :leaf_population_p3 ;
+    net:coverNode :leaf_population_p3 ;
+    net:hasClassName "population" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomClass_sednoid_s2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_sednoid_s2 ;
+    net:coverNode :leaf_sednoid_s2 ;
+    net:hasClassName "sednoid" ;
+    net:hasNaming "sednoid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:compositeClass_sednoid-population_p3 a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sednoid_s2 ;
+    net:composeFrom net:atomClass_population_p3,
+        net:atomClass_sednoid_s2 ;
+    net:coverBaseNode :leaf_population_p3 ;
+    net:coverNode :leaf_population_p3,
+        :leaf_sednoid_s2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_population_p3 ;
+    net:hasNaming "sednoid-population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_sednoid_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sednoid ;
+    :hasVariable :variable_s2 .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Neptunian :value_Neptunian ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_a2 :leaf_and_a2 ;
+    :edge_p_o :leaf_object_o ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_population_p3 a :AMR_Leaf ;
+    :edge_p3_b2 :leaf_beyond_b2 ;
+    :edge_p3_s2 :leaf_sednoid_s2 ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p3 .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..2df9622e34ab72903cbafa72ebce6ee3e7a63bdc
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1286 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:compose-01.ARG1 a ns11:FrameRole .
+
+ns11:compose-01.ARG2 a ns11:FrameRole .
+
+ns11:discover-01.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG2 a ns11:FrameRole .
+
+ns11:new-01.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:scatter-01.ARG1 a ns11:FrameRole .
+
+ns11:transpire-01.ARG0 a ns11:FrameRole .
+
+ns11:transpire-01.ARG1 a ns11:FrameRole .
+
+ns2:consist a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns3:Role .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_b a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_d a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_a2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_name_KuiperBelt a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_c_ii a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d2_p3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_m a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_l_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l_b3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_n3_d2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_name_Neptunian a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p3_b2 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_p3_s2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_a2 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_p_o a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_s_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_t_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_compose-01_c a :AMR_Leaf ;
+    :edge_c_ii :leaf_ice_ii ;
+    :edge_c_p :leaf_population_p ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c .
+
+:leaf_new-01_n3 a :AMR_Leaf ;
+    :edge_n3_d2 :leaf_discover-01_d2 ;
+    :hasConcept :concept_new-01 ;
+    :hasVariable :variable_n3 .
+
+:leaf_scatter-01_s a :AMR_Leaf ;
+    :edge_s_d :leaf_disc_d ;
+    :hasConcept :concept_scatter-01 ;
+    :hasVariable :variable_s .
+
+:leaf_transpire-01_t a :AMR_Leaf ;
+    :edge_t_o :leaf_object_o ;
+    :edge_t_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_transpire-01 ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-12 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#root01> ;
+    :hasRootLeaf :leaf_lie-07_l ;
+    :hasSentenceID "WikiAbstract-SolarSystem-12" ;
+    :hasSentenceStatement "Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#c> a ns11:compose-01 ;
+    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> ;
+    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#n3> a ns11:new-01 ;
+    ns11:new-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-12" ;
+    ns3:has-sentence "Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s> a ns11:scatter-01 ;
+    ns11:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#t> a ns11:transpire-01 ;
+    ns11:transpire-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
+    ns11:transpire-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_belt rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:belt ;
+    :label "belt" .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:compose-01 ;
+    :label "compose-01" .
+
+:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:disc ;
+    :label "disc" .
+
+:concept_discover-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:discover-01 ;
+    :label "discover-01" .
+
+:concept_ice rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:ice ;
+    :label "ice" .
+
+:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:lie-07 ;
+    :label "lie-07" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_new-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:new-01 ;
+    :label "new-01" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_scatter-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:scatter-01 ;
+    :label "scatter-01" .
+
+:concept_sednoid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sednoid ;
+    :label "sednoid" .
+
+:concept_transpire-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:transpire-01 ;
+    :label "transpire-01" .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_a2 :leaf_and_a2 ;
+    :edge_a_p3 :leaf_population_p3 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_belt_b a :AMR_Leaf ;
+    :edge_b_name_KuiperBelt :value_KuiperBelt ;
+    :hasConcept :concept_belt ;
+    :hasVariable :variable_b .
+
+:leaf_beyond_b2 a :AMR_Leaf ;
+    :edge_b2_a2 :leaf_and_a2 ;
+    :hasConcept :concept_beyond ;
+    :hasVariable :variable_b2 .
+
+:leaf_beyond_b3 a :AMR_Leaf ;
+    :edge_b3_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_beyond ;
+    :hasVariable :variable_b3 .
+
+:leaf_discover-01_d2 a :AMR_Leaf ;
+    :edge_d2_p3 :leaf_population_p3 ;
+    :hasConcept :concept_discover-01 ;
+    :hasVariable :variable_d2 .
+
+:leaf_ice_ii a :AMR_Leaf ;
+    :edge_ii_m :leaf_most_m ;
+    :hasConcept :concept_ice ;
+    :hasVariable :variable_ii .
+
+:leaf_lie-07_l a :AMR_Leaf ;
+    :edge_l_a :leaf_and_a ;
+    :edge_l_b3 :leaf_beyond_b3 ;
+    :hasConcept :concept_lie-07 ;
+    :hasVariable :variable_l .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_a2 :leaf_and_a2 ;
+    :edge_p_o :leaf_object_o ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+:leaf_sednoid_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sednoid ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_KuiperBelt a :AMR_Value ;
+    rdfs:label "KuiperBelt" .
+
+:value_Neptunian a :AMR_Value ;
+    rdfs:label "Neptunian" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> ;
+    :label "b" ;
+    :name "Kuiper Belt" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> ;
+    :label "b2" .
+
+:variable_b3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> ;
+    :label "b3" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#c> ;
+    :label "c" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> ;
+    :label "d2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> ;
+    :label "m" .
+
+:variable_n3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#n3> ;
+    :label "n3" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> ;
+    :label "o2" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    :label "p2" ;
+    :name "Neptunian" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
+    :label "p3" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> ;
+    :label "s2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> a ns2:belt ;
+    rdfs:label "Kuiper Belt" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> a ns11:discover-01 ;
+    ns11:discover-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> a ns2:ice ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> a ns11:lie-07 ;
+    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> ;
+    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> a ns2:population ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> a ns2:sednoid ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:compose-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:discover-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:lie-07 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:new-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:scatter-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:transpire-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:belt a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:disc a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:ice a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sednoid a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_beyond rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:beyond ;
+    :label "beyond" .
+
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:population ;
+    :label "population" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_disc_d a :AMR_Leaf ;
+    :hasConcept :concept_disc ;
+    :hasVariable :variable_d .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Neptunian :value_Neptunian ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_population_p3 a :AMR_Leaf ;
+    :edge_p3_b2 :leaf_beyond_b2 ;
+    :edge_p3_s2 :leaf_sednoid_s2 ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p3 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> a ns2:disc ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Neptunian" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> a ns2:population ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:beyond a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:population a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_belt_b ;
+    :edge_a2_d :leaf_disc_d ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..bf0ce18f75b9dcb66a48cede5c76fcfb5522ae4f
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1679 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:compose-01.ARG1 a ns11:FrameRole .
+
+ns11:compose-01.ARG2 a ns11:FrameRole .
+
+ns11:discover-01.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG1 a ns11:FrameRole .
+
+ns11:lie-07.ARG2 a ns11:FrameRole .
+
+ns11:new-01.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:scatter-01.ARG1 a ns11:FrameRole .
+
+ns11:transpire-01.ARG0 a ns11:FrameRole .
+
+ns11:transpire-01.ARG1 a ns11:FrameRole .
+
+ns2:consist a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns3:Role .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_b a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_d a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_a2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_name_KuiperBelt a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_c_ii a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d2_p3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_m a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_l_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l_b3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_n3_d2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_name_Neptunian a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p3_b2 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_p3_s2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_a2 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_p_o a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_s_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_t_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-12 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#root01> ;
+    :hasRootLeaf :leaf_lie-07_l ;
+    :hasSentenceID "WikiAbstract-SolarSystem-12" ;
+    :hasSentenceStatement "Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_beyond_b2 a net:Atom_Class_Net ;
+    :role_op1 net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_beyond_b2 ;
+    net:coverNode :leaf_beyond_b2 ;
+    net:hasClassName "beyond" ;
+    net:hasNaming "beyond" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_new_n3 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_discover_d2,
+        net:atomProperty_discover_d2 ;
+    net:coverBaseNode :leaf_new-01_n3 ;
+    net:coverNode :leaf_new-01_n3 ;
+    net:hasNaming "new" ;
+    net:hasPropertyName "new" ;
+    net:hasPropertyName01 "newing" ;
+    net:hasPropertyName10 "new-by" ;
+    net:hasPropertyName12 "new-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_discover-01_d2 .
+
+net:atomProperty_scatter_s a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_scatter-01_s ;
+    net:coverNode :leaf_scatter-01_s ;
+    net:hasNaming "scatter" ;
+    net:hasPropertyName "scatter" ;
+    net:hasPropertyName01 "scattering" ;
+    net:hasPropertyName10 "scatter-by" ;
+    net:hasPropertyName12 "scatter-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_disc_d .
+
+net:atomProperty_transpire_t a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:individual_Neptunian_p2 ;
+    net:coverBaseNode :leaf_transpire-01_t ;
+    net:coverNode :leaf_transpire-01_t ;
+    net:hasNaming "transpire" ;
+    net:hasPropertyName "transpire" ;
+    net:hasPropertyName01 "transpireing" ;
+    net:hasPropertyName10 "transpire-by" ;
+    net:hasPropertyName12 "transpire-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_planet_p2 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_object-population-compose-ice_p a net:Composite_Class_Net ;
+    :role_mod net:atomClass_object_o ;
+    net:composeFrom net:atomClass_ice_ii,
+        net:atomProperty_compose_c,
+        net:compositeClass_object-population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_compose-01_c,
+        :leaf_ice_ii,
+        :leaf_object_o,
+        :leaf_population_p ;
+    net:hasMotherClassNet net:compositeClass_object-population_p ;
+    net:hasNaming "object-population-compose-ice" ;
+    net:hasRestriction net:restriction_compose-ice_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:compositeClass_sednoid-population-lie-beyond_p3 a net:Composite_Class_Net ;
+    :role_mod net:atomClass_sednoid_s2 ;
+    net:composeFrom net:atomClass_beyond_b3,
+        net:atomProperty_lie_l,
+        net:compositeClass_sednoid-population_p3 ;
+    net:coverBaseNode :leaf_population_p3 ;
+    net:coverNode :leaf_beyond_b3,
+        :leaf_lie-07_l,
+        :leaf_population_p3,
+        :leaf_sednoid_s2 ;
+    net:hasMotherClassNet net:compositeClass_sednoid-population_p3 ;
+    net:hasNaming "sednoid-population-lie-beyond" ;
+    net:hasRestriction net:restriction_lie-beyond_l ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_object_o a net:Individual_Net ;
+    net:composeFrom net:atomClass_object_o ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "object" ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:individual_sednoid_s2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_sednoid_s2 ;
+    net:coverBaseNode :leaf_sednoid_s2 ;
+    net:coverNode :leaf_sednoid_s2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "sednoid" ;
+    net:hasMotherClassNet net:atomClass_sednoid_s2 ;
+    net:hasNaming "sednoid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#c> a ns11:compose-01 ;
+    ns11:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> ;
+    ns11:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#n3> a ns11:new-01 ;
+    ns11:new-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-12" ;
+    ns3:has-sentence "Beyond Neptune's orbit lie the Kuiper belt and scattered disc, which are populations of trans-Neptunian objects composed mostly of ices, and beyond them a newly discovered population of sednoids." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s> a ns11:scatter-01 ;
+    ns11:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#t> a ns11:transpire-01 ;
+    ns11:transpire-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
+    ns11:transpire-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_belt rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:belt ;
+    :label "belt" .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:compose-01 ;
+    :label "compose-01" .
+
+:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:disc ;
+    :label "disc" .
+
+:concept_discover-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:discover-01 ;
+    :label "discover-01" .
+
+:concept_ice rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:ice ;
+    :label "ice" .
+
+:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:lie-07 ;
+    :label "lie-07" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_new-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:new-01 ;
+    :label "new-01" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_scatter-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:scatter-01 ;
+    :label "scatter-01" .
+
+:concept_sednoid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sednoid ;
+    :label "sednoid" .
+
+:concept_transpire-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:transpire-01 ;
+    :label "transpire-01" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> ;
+    :label "b" ;
+    :name "Kuiper Belt" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> ;
+    :label "b2" .
+
+:variable_b3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> ;
+    :label "b3" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#c> ;
+    :label "c" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> ;
+    :label "d2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> ;
+    :label "m" .
+
+:variable_n3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#n3> ;
+    :label "n3" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> ;
+    :label "o2" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    :label "p2" ;
+    :name "Neptunian" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
+    :label "p3" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> ;
+    :label "s2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_discover_d2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG1 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3 ;
+    net:composeFrom net:atomProperty_discover_d2 ;
+    net:coverBaseNode :leaf_discover-01_d2 ;
+    net:coverNode :leaf_discover-01_d2 ;
+    net:hasClassName "discover" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "discover" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_planet_p2,
+        net:individual_Neptunian_p2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_planet_p2 .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_KuiperBelt_b a net:Individual_Net ;
+    :role_name net:value_KuiperBelt_blankNode ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_belt_b ;
+    net:hasIndividualLabel "KuiperBelt" ;
+    net:hasMotherClassNet net:atomClass_belt_b ;
+    net:hasNaming "KuiperBelt" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_belt_b,
+        net:atomClass_disc_d,
+        net:phenomena_conjunction-AND_a2 ;
+    :role_op2 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3 ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:restriction_compose-ice_c a net:Restriction_Net ;
+    net:composeFrom net:atomClass_ice_ii,
+        net:atomProperty_compose_c ;
+    net:coverBaseNode :leaf_compose-01_c ;
+    net:coverNode :leaf_compose-01_c,
+        :leaf_ice_ii ;
+    net:hasNaming "compose-ice" ;
+    net:hasRestrictionNetValue net:atomClass_ice_ii ;
+    net:hasRestrictionOnProperty net:atomProperty_compose_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:restriction_lie-beyond_l a net:Restriction_Net ;
+    net:composeFrom net:atomClass_beyond_b3,
+        net:atomProperty_lie_l ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_beyond_b3,
+        :leaf_lie-07_l ;
+    net:hasNaming "lie-beyond" ;
+    net:hasRestrictionNetValue net:atomClass_beyond_b3 ;
+    net:hasRestrictionOnProperty net:atomProperty_lie_l ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> a ns2:belt ;
+    rdfs:label "Kuiper Belt" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> a ns2:beyond ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d2> a ns11:discover-01 ;
+    ns11:discover-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#ii> a ns2:ice ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#l> a ns11:lie-07 ;
+    ns11:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a> ;
+    ns11:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#m> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p> a ns2:population ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> a ns2:sednoid ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:compose-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:discover-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:lie-07 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:new-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:scatter-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:transpire-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:belt a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:disc a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:ice a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sednoid a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_beyond rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:beyond ;
+    :label "beyond" .
+
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:population ;
+    :label "population" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_new-01_n3 a :AMR_Leaf ;
+    :edge_n3_d2 :leaf_discover-01_d2 ;
+    :hasConcept :concept_new-01 ;
+    :hasVariable :variable_n3 .
+
+:leaf_scatter-01_s a :AMR_Leaf ;
+    :edge_s_d :leaf_disc_d ;
+    :hasConcept :concept_scatter-01 ;
+    :hasVariable :variable_s .
+
+:leaf_transpire-01_t a :AMR_Leaf ;
+    :edge_t_o :leaf_object_o ;
+    :edge_t_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_transpire-01 ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_KuiperBelt a :AMR_Value ;
+    rdfs:label "KuiperBelt" .
+
+:value_Neptunian a :AMR_Value ;
+    rdfs:label "Neptunian" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_discover_d2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3 ;
+    net:coverBaseNode :leaf_discover-01_d2 ;
+    net:coverNode :leaf_discover-01_d2 ;
+    net:hasNaming "discover" ;
+    net:hasPropertyName "discover" ;
+    net:hasPropertyName01 "discovering" ;
+    net:hasPropertyName10 "discover-by" ;
+    net:hasPropertyName12 "discover-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_population_p3 .
+
+net:individual_Neptunian_p2 a net:Individual_Net ;
+    :role_name net:value_Neptunian_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasIndividualLabel "Neptunian" ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "Neptunian" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_belt_b,
+        net:individual_KuiperBelt_b ;
+    :role_op2 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:value_KuiperBelt_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_KuiperBelt ;
+    net:hasNaming "KuiperBelt" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:hasValueLabel "KuiperBelt" .
+
+net:value_Neptunian_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Neptunian ;
+    net:hasNaming "Neptunian" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:hasValueLabel "Neptunian" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> a ns2:disc ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#o> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Neptunian" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#p3> a ns2:population ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:beyond a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:population a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_beyond_b2 a :AMR_Leaf ;
+    :edge_b2_a2 :leaf_and_a2 ;
+    :hasConcept :concept_beyond ;
+    :hasVariable :variable_b2 .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_belt_b a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_KuiperBelt_blankNode ;
+    net:coverBaseNode :leaf_belt_b ;
+    net:coverNode :leaf_belt_b ;
+    net:hasClassName "belt" ;
+    net:hasNaming "belt" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomClass_disc_d a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_disc_d ;
+    net:coverNode :leaf_disc_d ;
+    net:hasClassName "disc" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "disc" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Neptunian_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomClass_population_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_object_o ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p ;
+    net:hasClassName "population" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomProperty_compose_c a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_population_p,
+        net:compositeClass_object-population_p ;
+    :role_ARG2 net:atomClass_ice_ii ;
+    net:coverBaseNode :leaf_compose-01_c ;
+    net:coverNode :leaf_compose-01_c ;
+    net:hasNaming "compose" ;
+    net:hasPropertyName "compose" ;
+    net:hasPropertyName01 "composeing" ;
+    net:hasPropertyName10 "compose-by" ;
+    net:hasPropertyName12 "compose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_ice_ii,
+        :leaf_population_p .
+
+net:atomProperty_lie_l a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_population_p3,
+        net:compositeClass_sednoid-population_p3,
+        net:phenomena_conjunction-AND_a ;
+    :role_ARG2 net:atomClass_beyond_b3 ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_lie-07_l ;
+    net:hasNaming "lie" ;
+    net:hasPropertyName "lie" ;
+    net:hasPropertyName01 "lieing" ;
+    net:hasPropertyName10 "lie-by" ;
+    net:hasPropertyName12 "lie-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_beyond_b3 .
+
+net:compositeClass_object-population_p a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_object_o ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_object_o,
+        :leaf_population_p ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_population_p ;
+    net:hasNaming "object-population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#b> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-12#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_a2 :leaf_and_a2 ;
+    :edge_a_p3 :leaf_population_p3 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_beyond_b3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_op1 net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_beyond_b3 ;
+    net:coverNode :leaf_beyond_b3 ;
+    net:hasClassName "beyond" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "beyond" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomClass_ice_ii a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomProperty_most_m ;
+    net:coverBaseNode :leaf_ice_ii ;
+    net:coverNode :leaf_ice_ii ;
+    net:hasClassName "ice" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "ice" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_belt_b ;
+    :edge_a2_d :leaf_disc_d ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_belt_b a :AMR_Leaf ;
+    :edge_b_name_KuiperBelt :value_KuiperBelt ;
+    :hasConcept :concept_belt ;
+    :hasVariable :variable_b .
+
+:leaf_compose-01_c a :AMR_Leaf ;
+    :edge_c_ii :leaf_ice_ii ;
+    :edge_c_p :leaf_population_p ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c .
+
+:leaf_disc_d a :AMR_Leaf ;
+    :hasConcept :concept_disc ;
+    :hasVariable :variable_d .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_beyond_b3 a :AMR_Leaf ;
+    :edge_b3_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_beyond ;
+    :hasVariable :variable_b3 .
+
+:leaf_discover-01_d2 a :AMR_Leaf ;
+    :edge_d2_p3 :leaf_population_p3 ;
+    :hasConcept :concept_discover-01 ;
+    :hasVariable :variable_d2 .
+
+:leaf_ice_ii a :AMR_Leaf ;
+    :edge_ii_m :leaf_most_m ;
+    :hasConcept :concept_ice ;
+    :hasVariable :variable_ii .
+
+:leaf_lie-07_l a :AMR_Leaf ;
+    :edge_l_a :leaf_and_a ;
+    :edge_l_b3 :leaf_beyond_b3 ;
+    :hasConcept :concept_lie-07 ;
+    :hasVariable :variable_l .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_population_p3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sednoid_s2 ;
+    net:coverBaseNode :leaf_population_p3 ;
+    net:coverNode :leaf_population_p3 ;
+    net:hasClassName "population" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:atomClass_sednoid_s2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_sednoid_s2 ;
+    net:coverNode :leaf_sednoid_s2 ;
+    net:hasClassName "sednoid" ;
+    net:hasNaming "sednoid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+net:compositeClass_sednoid-population_p3 a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sednoid_s2 ;
+    net:composeFrom net:atomClass_population_p3,
+        net:atomClass_sednoid_s2 ;
+    net:coverBaseNode :leaf_population_p3 ;
+    net:coverNode :leaf_population_p3,
+        :leaf_sednoid_s2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_population_p3 ;
+    net:hasNaming "sednoid-population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_sednoid_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sednoid ;
+    :hasVariable :variable_s2 .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-12" .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Neptunian :value_Neptunian ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_a2 :leaf_and_a2 ;
+    :edge_p_o :leaf_object_o ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_population_p3 a :AMR_Leaf ;
+    :edge_p3_b2 :leaf_beyond_b2 ;
+    :edge_p3_s2 :leaf_sednoid_s2 ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p3 .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..95df4685dfc905822284d36fa8dc44879d9bc3b1
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-12/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,111 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#KuiperBelt> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#belt> ;
+    rdfs:label "KuiperBelt" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#Neptunian> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Neptunian" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#disc> a owl:Class ;
+    rdfs:label "disc" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#discover> a owl:Class ;
+    rdfs:label "discover" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#new> a owl:ObjectProperty ;
+    rdfs:label "new" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-population-compose-ice> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#compose> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#ice> ],
+        <https://tenet.tetras-libre.fr/extract-result#object-population> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#scatter> a owl:ObjectProperty ;
+    rdfs:label "scatter" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#sednoid-population-lie-beyond> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#lie> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#beyond> ],
+        <https://tenet.tetras-libre.fr/extract-result#sednoid-population> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#transpire> a owl:ObjectProperty ;
+    rdfs:label "transpire" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#beyond> a owl:Class ;
+    rdfs:label "beyond" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#compose> a owl:ObjectProperty ;
+    rdfs:label "compose" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#ice> a owl:Class ;
+    rdfs:label "ice" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#lie> a owl:ObjectProperty ;
+    rdfs:label "lie" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#sednoid> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#sednoid> ;
+    rdfs:label "sednoid" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#sednoid-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
+<https://tenet.tetras-libre.fr/extract-result#population> a owl:Class ;
+    rdfs:label "population" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-12" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..affc47095bf29015ea29ebaca6efd3ccc5aa7194
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,875 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p2> a ns11:prove-01 ;
+    ns11:prove-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-13" ;
+    ns3:has-sentence "Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:debate-01.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG6 a ns11:FrameRole .
+
+ns11:prove-01.ARG1 a ns11:FrameRole .
+
+ns11:round-03.ARG1 a ns11:FrameRole .
+
+ns2:degree a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns3:Role .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:poss a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> a ns2:considerable .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> a ns11:debate-01 ;
+    ns11:debate-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    ns2:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> a ns2:enough .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> a ns2:gravity ;
+    ns2:poss <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> a ns11:have-concession-91 ;
+    ns11:have-concession-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> ;
+    ns11:have-concession-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> ;
+    ns11:have-degree-91.ARG6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> a ns2:large .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> a ns2:many ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> a ns2:population ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> a ns11:round-03 ;
+    ns11:round-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> a ns2:some .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> a ns2:this .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> a ns2:under ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#thing> a ns3:NamedEntity .
+
+ns11:debate-01 a ns3:Frame .
+
+ns11:have-concession-91 a ns3:Frame .
+
+ns11:have-degree-91 a ns3:Frame .
+
+ns11:prove-01 a ns3:Frame .
+
+ns11:round-03 a ns3:Frame .
+
+ns2:considerable a ns3:Concept .
+
+ns2:enough a ns3:Concept .
+
+ns2:gravity a ns3:Concept .
+
+ns2:large a ns3:Concept .
+
+ns2:many a ns3:Concept .
+
+ns2:object a ns3:Concept .
+
+ns2:population a ns3:Concept .
+
+ns2:some a ns3:Concept .
+
+ns2:this a ns3:Concept .
+
+ns2:under a ns3:Concept .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> a <http://amr.isi.edu/entity-types#thing> .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..71b31298f366ddf47ae3fbd9d8ec53cdba0059d9
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1469 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:debate-01.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG6 a ns11:FrameRole .
+
+ns11:prove-01.ARG1 a ns11:FrameRole .
+
+ns11:round-03.ARG1 a ns11:FrameRole .
+
+ns2:degree a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns3:Role .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:poss a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_d_c a :AMR_Edge ;
+    :hasRoleID "degree" .
+
+:edge_d_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_g_o a :AMR_Edge ;
+    :hasRoleID "poss" .
+
+:edge_h2_e a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_h2_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG6 ;
+    :hasRoleID "ARG6" .
+
+:edge_h_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_h2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_t2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p2_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_r_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r_u a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_u_g a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-13 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#root01> ;
+    :hasRootLeaf :leaf_have-concession-91_h ;
+    :hasSentenceID "WikiAbstract-SolarSystem-13" ;
+    :hasSentenceStatement "Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#considerable> a owl:Class ;
+    rdfs:label "considerable" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#debate> a owl:Class ;
+    rdfs:label "debate" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#enough> a owl:Class ;
+    rdfs:label "enough" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#gravity> a owl:Class ;
+    rdfs:label "gravity" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#have> a owl:ObjectProperty ;
+    rdfs:label "have" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#many> a owl:Class ;
+    rdfs:label "many" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#prove> a owl:ObjectProperty ;
+    rdfs:label "prove" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#round> a owl:ObjectProperty ;
+    rdfs:label "round" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#some> a owl:Class ;
+    rdfs:label "some" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#thing> a owl:Class ;
+    rdfs:label "thing" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#this-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#under> a owl:Class ;
+    rdfs:label "under" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_considerable_c a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_considerable_c ;
+    net:coverNode :leaf_considerable_c ;
+    net:hasClassName "considerable" ;
+    net:hasNaming "considerable" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_under_u a net:Atom_Class_Net ;
+    :role_op1 net:atomClass_gravity_g ;
+    net:coverBaseNode :leaf_under_u ;
+    net:coverNode :leaf_under_u ;
+    net:hasClassName "under" ;
+    net:hasNaming "under" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_have_h a net:Atom_Property_Net ;
+    :role_ARG1 net:phenomena_degree_h2 ;
+    :role_ARG2 net:atomClass_debate_d,
+        net:atomProperty_debate_d ;
+    net:coverBaseNode :leaf_have-concession-91_h ;
+    net:coverNode :leaf_have-concession-91_h ;
+    net:hasNaming "have" ;
+    net:hasPropertyName "have" ;
+    net:hasPropertyName01 "haveing" ;
+    net:hasPropertyName10 "have-by" ;
+    net:hasPropertyName12 "have-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_debate-01_d,
+        :leaf_have-degree-91_h2 .
+
+net:atomProperty_prove_p2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_many_m ;
+    net:coverBaseNode :leaf_prove-01_p2 ;
+    net:coverNode :leaf_prove-01_p2 ;
+    net:hasNaming "prove" ;
+    net:hasPropertyName "prove" ;
+    net:hasPropertyName01 "proveing" ;
+    net:hasPropertyName10 "prove-by" ;
+    net:hasPropertyName12 "prove-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_many_m .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_this-population_p a net:Composite_Class_Net ;
+    :role_mod net:atomClass_this_t ;
+    net:composeFrom net:atomClass_population_p,
+        net:atomClass_this_t ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p,
+        :leaf_this_t ;
+    net:hasMotherClassNet net:atomClass_population_p ;
+    net:hasNaming "this-population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_this_t a net:Individual_Net ;
+    net:composeFrom net:atomClass_this_t ;
+    net:coverBaseNode :leaf_this_t ;
+    net:coverNode :leaf_this_t ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "this" ;
+    net:hasMotherClassNet net:atomClass_this_t ;
+    net:hasNaming "this" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p2> a ns11:prove-01 ;
+    ns11:prove-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-13" ;
+    ns3:has-sentence "Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_considerable rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:considerable ;
+    :label "considerable" .
+
+:concept_debate-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:debate-01 ;
+    :label "debate-01" .
+
+:concept_enough rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:enough ;
+    :label "enough" .
+
+:concept_gravity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:gravity ;
+    :label "gravity" .
+
+:concept_have-concession-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:have-concession-91 ;
+    :label "have-concession-91" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_many rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:many ;
+    :label "many" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:population ;
+    :label "population" .
+
+:concept_prove-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:prove-01 ;
+    :label "prove-01" .
+
+:concept_round-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:round-03 ;
+    :label "round-03" .
+
+:concept_some rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:some ;
+    :label "some" .
+
+:concept_thing rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#thing> ;
+    :label "thing" .
+
+:concept_this rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:this ;
+    :label "this" .
+
+:concept_under rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:under ;
+    :label "under" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG6 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> ;
+    :label "c" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> ;
+    :label "e" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> ;
+    :label "g" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> ;
+    :label "m" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    :label "t2" .
+
+:variable_u a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> ;
+    :label "u" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#population> a owl:Class ;
+    rdfs:label "population" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#this> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#this> ;
+    rdfs:label "this" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-13" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_debate_d a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG1 net:atomClass_thing_t2 ;
+    net:composeFrom net:atomProperty_debate_d ;
+    net:coverBaseNode :leaf_debate-01_d ;
+    net:coverNode :leaf_debate-01_d ;
+    net:hasClassName "debate" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "debate" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_enough_e a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_enough_e ;
+    net:coverNode :leaf_enough_e ;
+    net:hasClassName "enough" ;
+    net:hasNaming "enough" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_gravity_g a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_gravity_g ;
+    net:coverNode :leaf_gravity_g ;
+    net:hasClassName "gravity" ;
+    net:hasNaming "gravity" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_many_m a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_thing_t2 ;
+    net:coverBaseNode :leaf_many_m ;
+    net:coverNode :leaf_many_m ;
+    net:hasClassName "many" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "many" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_some_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_some_s ;
+    net:coverNode :leaf_some_s ;
+    net:hasClassName "some" ;
+    net:hasNaming "some" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomProperty_round_r a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_round-03_r ;
+    net:coverNode :leaf_round-03_r ;
+    net:hasNaming "round" ;
+    net:hasPropertyName "round" ;
+    net:hasPropertyName01 "rounding" ;
+    net:hasPropertyName10 "round-by" ;
+    net:hasPropertyName12 "round-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomClass_enough_e ;
+    :role_ARG6 net:atomProperty_round_r ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> a ns2:considerable ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> a ns11:debate-01 ;
+    ns11:debate-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    ns2:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> a ns2:enough ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> a ns2:gravity ;
+    ns2:poss <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> a ns11:have-concession-91 ;
+    ns11:have-concession-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> ;
+    ns11:have-concession-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> ;
+    ns11:have-degree-91.ARG6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> a ns2:many ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> a ns2:population ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> a ns11:round-03 ;
+    ns11:round-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> a ns2:some ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> a ns2:this ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> a ns2:under ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#thing> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:debate-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-concession-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:prove-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:round-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:considerable a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:enough a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:gravity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:many a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:population a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:some a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:this a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:under a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_prove-01_p2 a :AMR_Leaf ;
+    :edge_p2_m :leaf_many_m ;
+    :hasConcept :concept_prove-01 ;
+    :hasVariable :variable_p2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_some_s ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_population_p a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_this_t ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p ;
+    net:hasClassName "population" ;
+    net:hasNaming "population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomProperty_debate_d a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_thing_t2 ;
+    net:coverBaseNode :leaf_debate-01_d ;
+    net:coverNode :leaf_debate-01_d ;
+    net:hasNaming "debate" ;
+    net:hasPropertyName "debate" ;
+    net:hasPropertyName01 "debateing" ;
+    net:hasPropertyName10 "debate-by" ;
+    net:hasPropertyName12 "debate-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_thing_t2 .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> a <http://amr.isi.edu/entity-types#thing> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_considerable_c a :AMR_Leaf ;
+    :hasConcept :concept_considerable ;
+    :hasVariable :variable_c .
+
+:leaf_enough_e a :AMR_Leaf ;
+    :hasConcept :concept_enough ;
+    :hasVariable :variable_e .
+
+:leaf_gravity_g a :AMR_Leaf ;
+    :edge_g_o :leaf_object_o ;
+    :hasConcept :concept_gravity ;
+    :hasVariable :variable_g .
+
+:leaf_have-concession-91_h a :AMR_Leaf ;
+    :edge_h_d :leaf_debate-01_d ;
+    :edge_h_h2 :leaf_have-degree-91_h2 ;
+    :hasConcept :concept_have-concession-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_round-03_r a :AMR_Leaf ;
+    :edge_r_o :leaf_object_o ;
+    :edge_r_u :leaf_under_u ;
+    :hasConcept :concept_round-03 ;
+    :hasVariable :variable_r .
+
+:leaf_some_s a :AMR_Leaf ;
+    :hasConcept :concept_some ;
+    :hasVariable :variable_s .
+
+:leaf_under_u a :AMR_Leaf ;
+    :edge_u_g :leaf_gravity_g ;
+    :hasConcept :concept_under ;
+    :hasVariable :variable_u .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_thing_t2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_thing_t2 ;
+    net:coverNode :leaf_thing_t2 ;
+    net:hasClassName "thing" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "thing" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_e :leaf_enough_e ;
+    :edge_h2_l :leaf_large_l ;
+    :edge_h2_o :leaf_object_o ;
+    :edge_h2_p :leaf_population_p ;
+    :edge_h2_r :leaf_round-03_r ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_many_m a :AMR_Leaf ;
+    :edge_m_t2 :leaf_thing_t2 ;
+    :hasConcept :concept_many ;
+    :hasVariable :variable_m .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_t :leaf_this_t ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+:leaf_thing_t2 a :AMR_Leaf ;
+    :hasConcept :concept_thing ;
+    :hasVariable :variable_t2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_this_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_this_t ;
+    net:coverNode :leaf_this_t ;
+    net:hasClassName "this" ;
+    net:hasNaming "this" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_debate-01_d a :AMR_Leaf ;
+    :edge_d_c :leaf_considerable_c ;
+    :edge_d_t2 :leaf_thing_t2 ;
+    :hasConcept :concept_debate-01 ;
+    :hasVariable :variable_d .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_s :leaf_some_s ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_this_t a :AMR_Leaf ;
+    :hasConcept :concept_this ;
+    :hasVariable :variable_t .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..ca828c344b270ff71bc3ecf8b402c1b18e3a2234
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1187 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:debate-01.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG6 a ns11:FrameRole .
+
+ns11:prove-01.ARG1 a ns11:FrameRole .
+
+ns11:round-03.ARG1 a ns11:FrameRole .
+
+ns2:degree a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns3:Role .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:poss a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_d_c a :AMR_Edge ;
+    :hasRoleID "degree" .
+
+:edge_d_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_g_o a :AMR_Edge ;
+    :hasRoleID "poss" .
+
+:edge_h2_e a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_h2_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG6 ;
+    :hasRoleID "ARG6" .
+
+:edge_h_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_h2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_t2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p2_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_r_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r_u a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_u_g a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_prove-01_p2 a :AMR_Leaf ;
+    :edge_p2_m :leaf_many_m ;
+    :hasConcept :concept_prove-01 ;
+    :hasVariable :variable_p2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-13 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#root01> ;
+    :hasRootLeaf :leaf_have-concession-91_h ;
+    :hasSentenceID "WikiAbstract-SolarSystem-13" ;
+    :hasSentenceStatement "Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p2> a ns11:prove-01 ;
+    ns11:prove-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-13" ;
+    ns3:has-sentence "Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_considerable rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:considerable ;
+    :label "considerable" .
+
+:concept_debate-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:debate-01 ;
+    :label "debate-01" .
+
+:concept_enough rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:enough ;
+    :label "enough" .
+
+:concept_gravity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:gravity ;
+    :label "gravity" .
+
+:concept_have-concession-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:have-concession-91 ;
+    :label "have-concession-91" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_many rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:many ;
+    :label "many" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:population ;
+    :label "population" .
+
+:concept_prove-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:prove-01 ;
+    :label "prove-01" .
+
+:concept_round-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:round-03 ;
+    :label "round-03" .
+
+:concept_some rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:some ;
+    :label "some" .
+
+:concept_thing rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#thing> ;
+    :label "thing" .
+
+:concept_this rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:this ;
+    :label "this" .
+
+:concept_under rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:under ;
+    :label "under" .
+
+:leaf_considerable_c a :AMR_Leaf ;
+    :hasConcept :concept_considerable ;
+    :hasVariable :variable_c .
+
+:leaf_debate-01_d a :AMR_Leaf ;
+    :edge_d_c :leaf_considerable_c ;
+    :edge_d_t2 :leaf_thing_t2 ;
+    :hasConcept :concept_debate-01 ;
+    :hasVariable :variable_d .
+
+:leaf_enough_e a :AMR_Leaf ;
+    :hasConcept :concept_enough ;
+    :hasVariable :variable_e .
+
+:leaf_gravity_g a :AMR_Leaf ;
+    :edge_g_o :leaf_object_o ;
+    :hasConcept :concept_gravity ;
+    :hasVariable :variable_g .
+
+:leaf_have-concession-91_h a :AMR_Leaf ;
+    :edge_h_d :leaf_debate-01_d ;
+    :edge_h_h2 :leaf_have-degree-91_h2 ;
+    :hasConcept :concept_have-concession-91 ;
+    :hasVariable :variable_h .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_e :leaf_enough_e ;
+    :edge_h2_l :leaf_large_l ;
+    :edge_h2_o :leaf_object_o ;
+    :edge_h2_p :leaf_population_p ;
+    :edge_h2_r :leaf_round-03_r ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_many_m a :AMR_Leaf ;
+    :edge_m_t2 :leaf_thing_t2 ;
+    :hasConcept :concept_many ;
+    :hasVariable :variable_m .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_t :leaf_this_t ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+:leaf_round-03_r a :AMR_Leaf ;
+    :edge_r_o :leaf_object_o ;
+    :edge_r_u :leaf_under_u ;
+    :hasConcept :concept_round-03 ;
+    :hasVariable :variable_r .
+
+:leaf_some_s a :AMR_Leaf ;
+    :hasConcept :concept_some ;
+    :hasVariable :variable_s .
+
+:leaf_this_t a :AMR_Leaf ;
+    :hasConcept :concept_this ;
+    :hasVariable :variable_t .
+
+:leaf_under_u a :AMR_Leaf ;
+    :edge_u_g :leaf_gravity_g ;
+    :hasConcept :concept_under ;
+    :hasVariable :variable_u .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> ;
+    :label "c" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> ;
+    :label "e" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> ;
+    :label "g" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> ;
+    :label "m" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    :label "t2" .
+
+:variable_u a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> ;
+    :label "u" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> a ns2:considerable ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> a ns11:debate-01 ;
+    ns11:debate-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    ns2:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> a ns2:enough ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> a ns2:gravity ;
+    ns2:poss <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> a ns11:have-concession-91 ;
+    ns11:have-concession-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> ;
+    ns11:have-concession-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> ;
+    ns11:have-degree-91.ARG6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> a ns2:many ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> a ns2:population ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> a ns11:round-03 ;
+    ns11:round-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> a ns2:some ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> a ns2:this ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> a ns2:under ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#thing> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:debate-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-concession-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:prove-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:round-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:considerable a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:enough a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:gravity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:many a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:population a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:some a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:this a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:under a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_thing_t2 a :AMR_Leaf ;
+    :hasConcept :concept_thing ;
+    :hasVariable :variable_t2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> a <http://amr.isi.edu/entity-types#thing> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_s :leaf_some_s ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..5bca332154e354c5ac87a6a4d378a620f829947c
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1388 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:debate-01.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG1 a ns11:FrameRole .
+
+ns11:have-concession-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG6 a ns11:FrameRole .
+
+ns11:prove-01.ARG1 a ns11:FrameRole .
+
+ns11:round-03.ARG1 a ns11:FrameRole .
+
+ns2:degree a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns3:Role .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:poss a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_d_c a :AMR_Edge ;
+    :hasRoleID "degree" .
+
+:edge_d_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_g_o a :AMR_Edge ;
+    :hasRoleID "poss" .
+
+:edge_h2_e a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_h2_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG6 ;
+    :hasRoleID "ARG6" .
+
+:edge_h_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_h2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_t2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p2_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_r_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r_u a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_u_g a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-13 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#root01> ;
+    :hasRootLeaf :leaf_have-concession-91_h ;
+    :hasSentenceID "WikiAbstract-SolarSystem-13" ;
+    :hasSentenceStatement "Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_considerable_c a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_considerable_c ;
+    net:coverNode :leaf_considerable_c ;
+    net:hasClassName "considerable" ;
+    net:hasNaming "considerable" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_under_u a net:Atom_Class_Net ;
+    :role_op1 net:atomClass_gravity_g ;
+    net:coverBaseNode :leaf_under_u ;
+    net:coverNode :leaf_under_u ;
+    net:hasClassName "under" ;
+    net:hasNaming "under" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_have_h a net:Atom_Property_Net ;
+    :role_ARG1 net:phenomena_degree_h2 ;
+    :role_ARG2 net:atomClass_debate_d,
+        net:atomProperty_debate_d ;
+    net:coverBaseNode :leaf_have-concession-91_h ;
+    net:coverNode :leaf_have-concession-91_h ;
+    net:hasNaming "have" ;
+    net:hasPropertyName "have" ;
+    net:hasPropertyName01 "haveing" ;
+    net:hasPropertyName10 "have-by" ;
+    net:hasPropertyName12 "have-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_debate-01_d,
+        :leaf_have-degree-91_h2 .
+
+net:atomProperty_prove_p2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_many_m ;
+    net:coverBaseNode :leaf_prove-01_p2 ;
+    net:coverNode :leaf_prove-01_p2 ;
+    net:hasNaming "prove" ;
+    net:hasPropertyName "prove" ;
+    net:hasPropertyName01 "proveing" ;
+    net:hasPropertyName10 "prove-by" ;
+    net:hasPropertyName12 "prove-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_many_m .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_this-population_p a net:Composite_Class_Net ;
+    :role_mod net:atomClass_this_t ;
+    net:composeFrom net:atomClass_population_p,
+        net:atomClass_this_t ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p,
+        :leaf_this_t ;
+    net:hasMotherClassNet net:atomClass_population_p ;
+    net:hasNaming "this-population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_this_t a net:Individual_Net ;
+    net:composeFrom net:atomClass_this_t ;
+    net:coverBaseNode :leaf_this_t ;
+    net:coverNode :leaf_this_t ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "this" ;
+    net:hasMotherClassNet net:atomClass_this_t ;
+    net:hasNaming "this" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p2> a ns11:prove-01 ;
+    ns11:prove-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-13" ;
+    ns3:has-sentence "Within these populations, some objects are large enough to have rounded under their own gravity, though there is considerable debate as to how many there will prove to be." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_considerable rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:considerable ;
+    :label "considerable" .
+
+:concept_debate-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:debate-01 ;
+    :label "debate-01" .
+
+:concept_enough rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:enough ;
+    :label "enough" .
+
+:concept_gravity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:gravity ;
+    :label "gravity" .
+
+:concept_have-concession-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:have-concession-91 ;
+    :label "have-concession-91" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_many rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:many ;
+    :label "many" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:population ;
+    :label "population" .
+
+:concept_prove-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:prove-01 ;
+    :label "prove-01" .
+
+:concept_round-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:round-03 ;
+    :label "round-03" .
+
+:concept_some rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:some ;
+    :label "some" .
+
+:concept_thing rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#thing> ;
+    :label "thing" .
+
+:concept_this rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:this ;
+    :label "this" .
+
+:concept_under rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:under ;
+    :label "under" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG6 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> ;
+    :label "c" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> ;
+    :label "e" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> ;
+    :label "g" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> ;
+    :label "m" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    :label "t2" .
+
+:variable_u a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> ;
+    :label "u" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_debate_d a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG1 net:atomClass_thing_t2 ;
+    net:composeFrom net:atomProperty_debate_d ;
+    net:coverBaseNode :leaf_debate-01_d ;
+    net:coverNode :leaf_debate-01_d ;
+    net:hasClassName "debate" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "debate" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_enough_e a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_enough_e ;
+    net:coverNode :leaf_enough_e ;
+    net:hasClassName "enough" ;
+    net:hasNaming "enough" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_gravity_g a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_gravity_g ;
+    net:coverNode :leaf_gravity_g ;
+    net:hasClassName "gravity" ;
+    net:hasNaming "gravity" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_many_m a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_thing_t2 ;
+    net:coverBaseNode :leaf_many_m ;
+    net:coverNode :leaf_many_m ;
+    net:hasClassName "many" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "many" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_some_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_some_s ;
+    net:coverNode :leaf_some_s ;
+    net:hasClassName "some" ;
+    net:hasNaming "some" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomProperty_round_r a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_round-03_r ;
+    net:coverNode :leaf_round-03_r ;
+    net:hasNaming "round" ;
+    net:hasPropertyName "round" ;
+    net:hasPropertyName01 "rounding" ;
+    net:hasPropertyName10 "round-by" ;
+    net:hasPropertyName12 "round-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomClass_enough_e ;
+    :role_ARG6 net:atomProperty_round_r ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> a ns2:considerable ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> a ns11:debate-01 ;
+    ns11:debate-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    ns2:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> a ns2:enough ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> a ns2:gravity ;
+    ns2:poss <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h> a ns11:have-concession-91 ;
+    ns11:have-concession-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> ;
+    ns11:have-concession-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#e> ;
+    ns11:have-degree-91.ARG6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#m> a ns2:many ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#p> a ns2:population ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#r> a ns11:round-03 ;
+    ns11:round-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> a ns2:some ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t> a ns2:this ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#u> a ns2:under ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#g> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#thing> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:debate-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-concession-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:prove-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:round-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:considerable a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:enough a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:gravity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:many a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:population a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:some a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:this a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:under a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_prove-01_p2 a :AMR_Leaf ;
+    :edge_p2_m :leaf_many_m ;
+    :hasConcept :concept_prove-01 ;
+    :hasVariable :variable_p2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_some_s ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomClass_population_p a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_this_t ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p ;
+    net:hasClassName "population" ;
+    net:hasNaming "population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:atomProperty_debate_d a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_thing_t2 ;
+    net:coverBaseNode :leaf_debate-01_d ;
+    net:coverNode :leaf_debate-01_d ;
+    net:hasNaming "debate" ;
+    net:hasPropertyName "debate" ;
+    net:hasPropertyName01 "debateing" ;
+    net:hasPropertyName10 "debate-by" ;
+    net:hasPropertyName12 "debate-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_thing_t2 .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#t2> a <http://amr.isi.edu/entity-types#thing> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_considerable_c a :AMR_Leaf ;
+    :hasConcept :concept_considerable ;
+    :hasVariable :variable_c .
+
+:leaf_enough_e a :AMR_Leaf ;
+    :hasConcept :concept_enough ;
+    :hasVariable :variable_e .
+
+:leaf_gravity_g a :AMR_Leaf ;
+    :edge_g_o :leaf_object_o ;
+    :hasConcept :concept_gravity ;
+    :hasVariable :variable_g .
+
+:leaf_have-concession-91_h a :AMR_Leaf ;
+    :edge_h_d :leaf_debate-01_d ;
+    :edge_h_h2 :leaf_have-degree-91_h2 ;
+    :hasConcept :concept_have-concession-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_round-03_r a :AMR_Leaf ;
+    :edge_r_o :leaf_object_o ;
+    :edge_r_u :leaf_under_u ;
+    :hasConcept :concept_round-03 ;
+    :hasVariable :variable_r .
+
+:leaf_some_s a :AMR_Leaf ;
+    :hasConcept :concept_some ;
+    :hasVariable :variable_s .
+
+:leaf_under_u a :AMR_Leaf ;
+    :edge_u_g :leaf_gravity_g ;
+    :hasConcept :concept_under ;
+    :hasVariable :variable_u .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_thing_t2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_thing_t2 ;
+    net:coverNode :leaf_thing_t2 ;
+    net:hasClassName "thing" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "thing" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#o> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-13#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_e :leaf_enough_e ;
+    :edge_h2_l :leaf_large_l ;
+    :edge_h2_o :leaf_object_o ;
+    :edge_h2_p :leaf_population_p ;
+    :edge_h2_r :leaf_round-03_r ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_many_m a :AMR_Leaf ;
+    :edge_m_t2 :leaf_thing_t2 ;
+    :hasConcept :concept_many ;
+    :hasVariable :variable_m .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_t :leaf_this_t ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+:leaf_thing_t2 a :AMR_Leaf ;
+    :hasConcept :concept_thing ;
+    :hasVariable :variable_t2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_this_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_this_t ;
+    net:coverNode :leaf_this_t ;
+    net:hasClassName "this" ;
+    net:hasNaming "this" ;
+    net:hasStructure "WikiAbstract-SolarSystem-13" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_debate-01_d a :AMR_Leaf ;
+    :edge_d_c :leaf_considerable_c ;
+    :edge_d_t2 :leaf_thing_t2 ;
+    :hasConcept :concept_debate-01 ;
+    :hasVariable :variable_d .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_s :leaf_some_s ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_this_t a :AMR_Leaf ;
+    :hasConcept :concept_this ;
+    :hasVariable :variable_t .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..0b24fdd6ebb19e507cc6b1bc1d2b45c289f75e53
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-13/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,85 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#considerable> a owl:Class ;
+    rdfs:label "considerable" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#debate> a owl:Class ;
+    rdfs:label "debate" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#enough> a owl:Class ;
+    rdfs:label "enough" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#gravity> a owl:Class ;
+    rdfs:label "gravity" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#have> a owl:ObjectProperty ;
+    rdfs:label "have" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#many> a owl:Class ;
+    rdfs:label "many" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#prove> a owl:ObjectProperty ;
+    rdfs:label "prove" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#round> a owl:ObjectProperty ;
+    rdfs:label "round" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#some> a owl:Class ;
+    rdfs:label "some" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#thing> a owl:Class ;
+    rdfs:label "thing" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#this-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#under> a owl:Class ;
+    rdfs:label "under" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#population> a owl:Class ;
+    rdfs:label "population" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
+<https://tenet.tetras-libre.fr/extract-result#this> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#this> ;
+    rdfs:label "this" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-13" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..b61fab90f473155632199792eb4b6960e26cd4fa
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,794 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-14" ;
+    ns21:has-sentence "Such objects are categorized as dwarf planets." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#c> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:categorize-01.ARG1 a ns11:FrameRole .
+
+ns11:categorize-01.ARG2 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#c> a ns11:categorize-01 ;
+    ns11:categorize-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#o> ;
+    ns11:categorize-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#d> a ns3:dwarf .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#o> a ns3:object ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#s> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#d> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#s> a ns3:such .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity .
+
+ns11:categorize-01 a ns21:Frame .
+
+ns3:dwarf a ns21:Concept .
+
+ns3:object a ns21:Concept .
+
+ns3:such a ns21:Concept .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..70d3916fe3337b570d5440e620c728c6c1bde1ea
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1066 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:categorize-01.ARG1 a ns11:FrameRole .
+
+ns11:categorize-01.ARG2 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_c_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_d a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-14 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#root01> ;
+    :hasRootLeaf :leaf_categorize-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-14" ;
+    :hasSentenceStatement "Such objects are categorized as dwarf planets." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#such-object-categorize-dwarf-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#categorize> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#dwarf-planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#such-object> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_such-object-categorize-dwarf-planet_o a net:Composite_Class_Net ;
+    :role_mod net:atomClass_such_s ;
+    net:composeFrom net:atomProperty_categorize_c,
+        net:compositeClass_dwarf-planet_p,
+        net:compositeClass_such-object_o ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_categorize-01_c,
+        :leaf_dwarf_d,
+        :leaf_object_o,
+        :leaf_planet_p,
+        :leaf_such_s ;
+    net:hasMotherClassNet net:compositeClass_such-object_o ;
+    net:hasNaming "such-object-categorize-dwarf-planet" ;
+    net:hasRestriction net:restriction_categorize-dwarf-planet_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_dwarf_d a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:individual_such_s a net:Individual_Net ;
+    net:composeFrom net:atomClass_such_s ;
+    net:coverBaseNode :leaf_such_s ;
+    net:coverNode :leaf_such_s ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "such" ;
+    net:hasMotherClassNet net:atomClass_such_s ;
+    net:hasNaming "such" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-14" ;
+    ns21:has-sentence "Such objects are categorized as dwarf planets." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_categorize-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:categorize-01 ;
+    :label "categorize-01" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:dwarf ;
+    :label "dwarf" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:object ;
+    :label "object" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_such rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:such ;
+    :label "such" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#c> ;
+    :label "c" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#d> ;
+    :label "d" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#p> ;
+    :label "p" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#s> ;
+    :label "s" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#categorize> a owl:ObjectProperty ;
+    rdfs:label "categorize" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/extract-result#such> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#such> ;
+    rdfs:label "such" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/extract-result#such-object> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#object> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-14" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_categorize-dwarf-planet_c a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_categorize_c,
+        net:compositeClass_dwarf-planet_p ;
+    net:coverBaseNode :leaf_categorize-01_c ;
+    net:coverNode :leaf_categorize-01_c,
+        :leaf_dwarf_d,
+        :leaf_planet_p ;
+    net:hasNaming "categorize-dwarf-planet" ;
+    net:hasRestrictionNetValue net:compositeClass_dwarf-planet_p ;
+    net:hasRestrictionOnProperty net:atomProperty_categorize_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#c> a ns11:categorize-01 ;
+    ns11:categorize-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#o> ;
+    ns11:categorize-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#d> a ns3:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#o> a ns3:object ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#s> a ns3:such ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:categorize-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:dwarf a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:object a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:such a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_such_s ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:atomProperty_categorize_c a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o,
+        net:compositeClass_such-object_o ;
+    :role_ARG2 net:atomClass_planet_p,
+        net:compositeClass_dwarf-planet_p ;
+    net:coverBaseNode :leaf_categorize-01_c ;
+    net:coverNode :leaf_categorize-01_c ;
+    net:hasNaming "categorize" ;
+    net:hasPropertyName "categorize" ;
+    net:hasPropertyName01 "categorizeing" ;
+    net:hasPropertyName10 "categorize-by" ;
+    net:hasPropertyName12 "categorize-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_planet_p .
+
+net:compositeClass_such-object_o a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_such_s ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_such_s ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o,
+        :leaf_such_s ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "such-object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:compositeClass_dwarf-planet_p a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:composeFrom net:atomClass_dwarf_d,
+        net:atomClass_planet_p ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_planet_p ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "dwarf-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_dwarf_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_categorize-01_c a :AMR_Leaf ;
+    :edge_c_o :leaf_object_o ;
+    :edge_c_p :leaf_planet_p ;
+    :hasConcept :concept_categorize-01 ;
+    :hasVariable :variable_c .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_such_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_such_s ;
+    net:coverNode :leaf_such_s ;
+    net:hasClassName "such" ;
+    net:hasNaming "such" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+rdf:Property a owl:Class .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_such_s a :AMR_Leaf ;
+    :hasConcept :concept_such ;
+    :hasVariable :variable_s .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_s :leaf_such_s ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..819d1516a185e5c4a9f4cd2aa1bd84abbc4e72d0
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,890 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:categorize-01.ARG1 a ns11:FrameRole .
+
+ns11:categorize-01.ARG2 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_c_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_d a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-14 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#root01> ;
+    :hasRootLeaf :leaf_categorize-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-14" ;
+    :hasSentenceStatement "Such objects are categorized as dwarf planets." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-14" ;
+    ns21:has-sentence "Such objects are categorized as dwarf planets." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_categorize-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:categorize-01 ;
+    :label "categorize-01" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:dwarf ;
+    :label "dwarf" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:object ;
+    :label "object" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_such rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:such ;
+    :label "such" .
+
+:leaf_categorize-01_c a :AMR_Leaf ;
+    :edge_c_o :leaf_object_o ;
+    :edge_c_p :leaf_planet_p ;
+    :hasConcept :concept_categorize-01 ;
+    :hasVariable :variable_c .
+
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_s :leaf_such_s ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_such_s a :AMR_Leaf ;
+    :hasConcept :concept_such ;
+    :hasVariable :variable_s .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#c> ;
+    :label "c" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#d> ;
+    :label "d" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#p> ;
+    :label "p" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#s> ;
+    :label "s" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#c> a ns11:categorize-01 ;
+    ns11:categorize-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#o> ;
+    ns11:categorize-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#d> a ns3:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#o> a ns3:object ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#s> a ns3:such ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:categorize-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:dwarf a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:object a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:such a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..d7f89c9225030364455fbf3655bc6e4007b3e549
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1022 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:categorize-01.ARG1 a ns11:FrameRole .
+
+ns11:categorize-01.ARG2 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_c_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_d a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-14 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#root01> ;
+    :hasRootLeaf :leaf_categorize-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-14" ;
+    :hasSentenceStatement "Such objects are categorized as dwarf planets." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_such-object-categorize-dwarf-planet_o a net:Composite_Class_Net ;
+    :role_mod net:atomClass_such_s ;
+    net:composeFrom net:atomProperty_categorize_c,
+        net:compositeClass_dwarf-planet_p,
+        net:compositeClass_such-object_o ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_categorize-01_c,
+        :leaf_dwarf_d,
+        :leaf_object_o,
+        :leaf_planet_p,
+        :leaf_such_s ;
+    net:hasMotherClassNet net:compositeClass_such-object_o ;
+    net:hasNaming "such-object-categorize-dwarf-planet" ;
+    net:hasRestriction net:restriction_categorize-dwarf-planet_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_dwarf_d a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:individual_such_s a net:Individual_Net ;
+    net:composeFrom net:atomClass_such_s ;
+    net:coverBaseNode :leaf_such_s ;
+    net:coverNode :leaf_such_s ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "such" ;
+    net:hasMotherClassNet net:atomClass_such_s ;
+    net:hasNaming "such" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-14" ;
+    ns21:has-sentence "Such objects are categorized as dwarf planets." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_categorize-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:categorize-01 ;
+    :label "categorize-01" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:dwarf ;
+    :label "dwarf" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:object ;
+    :label "object" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_such rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:such ;
+    :label "such" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#c> ;
+    :label "c" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#d> ;
+    :label "d" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#p> ;
+    :label "p" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#s> ;
+    :label "s" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_categorize-dwarf-planet_c a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_categorize_c,
+        net:compositeClass_dwarf-planet_p ;
+    net:coverBaseNode :leaf_categorize-01_c ;
+    net:coverNode :leaf_categorize-01_c,
+        :leaf_dwarf_d,
+        :leaf_planet_p ;
+    net:hasNaming "categorize-dwarf-planet" ;
+    net:hasRestrictionNetValue net:compositeClass_dwarf-planet_p ;
+    net:hasRestrictionOnProperty net:atomProperty_categorize_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#c> a ns11:categorize-01 ;
+    ns11:categorize-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#o> ;
+    ns11:categorize-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#d> a ns3:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#o> a ns3:object ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-14#s> a ns3:such ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:categorize-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:dwarf a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:object a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:such a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_such_s ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:atomProperty_categorize_c a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o,
+        net:compositeClass_such-object_o ;
+    :role_ARG2 net:atomClass_planet_p,
+        net:compositeClass_dwarf-planet_p ;
+    net:coverBaseNode :leaf_categorize-01_c ;
+    net:coverNode :leaf_categorize-01_c ;
+    net:hasNaming "categorize" ;
+    net:hasPropertyName "categorize" ;
+    net:hasPropertyName01 "categorizeing" ;
+    net:hasPropertyName10 "categorize-by" ;
+    net:hasPropertyName12 "categorize-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_planet_p .
+
+net:compositeClass_such-object_o a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_such_s ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_such_s ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o,
+        :leaf_such_s ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "such-object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:compositeClass_dwarf-planet_p a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:composeFrom net:atomClass_dwarf_d,
+        net:atomClass_planet_p ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_planet_p ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "dwarf-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_dwarf_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_categorize-01_c a :AMR_Leaf ;
+    :edge_c_o :leaf_object_o ;
+    :edge_c_p :leaf_planet_p ;
+    :hasConcept :concept_categorize-01 ;
+    :hasVariable :variable_c .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_such_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_such_s ;
+    net:coverNode :leaf_such_s ;
+    net:hasClassName "such" ;
+    net:hasNaming "such" ;
+    net:hasStructure "WikiAbstract-SolarSystem-14" .
+
+rdf:Property a owl:Class .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_such_s a :AMR_Leaf ;
+    :hasConcept :concept_such ;
+    :hasVariable :variable_s .
+
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_s :leaf_such_s ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..4610af107d4d6e2dec23be7ec50763c65bdbab3f
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-14/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,48 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#such-object-categorize-dwarf-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#categorize> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#dwarf-planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#such-object> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/extract-result#categorize> a owl:ObjectProperty ;
+    rdfs:label "categorize" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/extract-result#such> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#such> ;
+    rdfs:label "such" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-14" .
+
+<https://tenet.tetras-libre.fr/extract-result#such-object> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#object> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-14" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..df50830c6c97af9a9a15b4590b02950707e002dd
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,893 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#g> a ns3:general-02 ;
+    ns3:general-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o> a ns3:observe-01 ;
+    ns3:observe-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-15" ;
+    ns1:has-sentence "Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:accept-01.ARG0 a ns3:FrameRole .
+
+ns3:accept-01.ARG1 a ns3:FrameRole .
+
+ns3:accept-01.ARG3 a ns3:FrameRole .
+
+ns3:general-02.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:observe-01.ARG0 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns1:Role .
+
+ns2:op1 a ns1:Role .
+
+ns2:op2 a ns1:Role .
+
+ns2:op3 a ns1:Role .
+
+ns2:op4 a ns1:Role .
+
+ns2:op5 a ns1:Role .
+
+ns2:op6 a ns1:Role .
+
+ns2:op7 a ns1:Role .
+
+ns2:op8 a ns1:Role .
+
+ns2:op9 a ns1:Role .
+
+ns2:quant a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> a ns2:at-least ;
+    ns2:op1 "9" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> a ns1:and ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> ;
+    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> ;
+    ns2:op5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> ;
+    ns2:op6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> ;
+    ns2:op7 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> ;
+    ns2:op8 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> ;
+    ns2:op9 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> a ns2:asteroid ;
+    rdfs:label "Cerre" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> a ns2:asteroid ;
+    rdfs:label "Eris" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> a ns2:asteroid ;
+    rdfs:label "Haumea" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> a ns2:dwarf .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> a ns2:object ;
+    rdfs:label "Pluto" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> a ns2:object ;
+    rdfs:label "Makemake" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> a ns2:object ;
+    rdfs:label "Gonggong" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> a ns2:object ;
+    rdfs:label "Quaoar" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> a ns2:object ;
+    rdfs:label "Sedna" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> a ns2:object ;
+    rdfs:label "Orcus" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> a ns2:trans-Neptunian .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#person> a ns1:NamedEntity .
+
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity .
+
+ns3:accept-01 a ns1:Frame .
+
+ns3:general-02 a ns1:Frame .
+
+ns3:include-91 a ns1:Frame .
+
+ns3:observe-01 a ns1:Frame .
+
+ns2:at-least a ns1:Concept .
+
+ns2:dwarf a ns1:Concept .
+
+ns2:trans-Neptunian a ns1:Concept .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:and a ns1:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> a ns3:accept-01 ;
+    ns3:accept-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
+    ns3:accept-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    ns3:accept-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> a <http://amr.isi.edu/entity-types#person> .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+ns2:asteroid a ns1:Concept .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns1:Concept .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..d7c62e8c595483be6ad861861734a67f20f7e770
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1852 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:accept-01.ARG0 a ns3:FrameRole .
+
+ns3:accept-01.ARG1 a ns3:FrameRole .
+
+ns3:accept-01.ARG3 a ns3:FrameRole .
+
+ns3:general-02.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:observe-01.ARG0 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns1:Role .
+
+ns2:op1 a ns1:Role .
+
+ns2:op2 a ns1:Role .
+
+ns2:op3 a ns1:Role .
+
+ns2:op4 a ns1:Role .
+
+ns2:op5 a ns1:Role .
+
+ns2:op6 a ns1:Role .
+
+ns2:op7 a ns1:Role .
+
+ns2:op8 a ns1:Role .
+
+ns2:op9 a ns1:Role .
+
+ns2:quant a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a3_a4 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a3_a5 a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a3_a6 a :AMR_Edge ;
+    :hasAmrRole :role_op4 ;
+    :hasRoleID "op4" .
+
+:edge_a3_o3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a3_o4 a :AMR_Edge ;
+    :hasAmrRole :role_op5 ;
+    :hasRoleID "op5" .
+
+:edge_a3_o5 a :AMR_Edge ;
+    :hasAmrRole :role_op6 ;
+    :hasRoleID "op6" .
+
+:edge_a3_o6 a :AMR_Edge ;
+    :hasAmrRole :role_op7 ;
+    :hasRoleID "op7" .
+
+:edge_a3_o7 a :AMR_Edge ;
+    :hasAmrRole :role_op8 ;
+    :hasRoleID "op8" .
+
+:edge_a3_o8 a :AMR_Edge ;
+    :hasAmrRole :role_op9 ;
+    :hasRoleID "op9" .
+
+:edge_a3_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_a4_name_Cerre a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a5_name_Eris a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a6_name_Haumea a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_a_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_a_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_g_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_a3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_o2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_o3_name_Pluto a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o4_name_Makemake a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o5_name_Gonggong a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o6_name_Quaoar a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o7_name_Sedna a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o8_name_Orcus a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_d a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-15 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#root01> ;
+    :hasRootLeaf :leaf_accept-01_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-15" ;
+    :hasSentenceStatement "Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#Cerre> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Cerre" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Eris> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Eris" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Gonggong> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Gonggong" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Haumea> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Haumea" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Makemake> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Makemake" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Orcus> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Orcus" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Pluto> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Pluto" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Quaoar> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Quaoar" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Sedna> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Sedna" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#accept> a owl:Class ;
+    rdfs:label "accept" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#at-least> a owl:Class ;
+    rdfs:label "at-least" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#general> a owl:ObjectProperty ;
+    rdfs:label "general" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#observe> a owl:ObjectProperty ;
+    rdfs:label "observe" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#person> a owl:Class ;
+    rdfs:label "person" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#trans-Neptunian> a owl:Class ;
+    rdfs:label "trans-Neptunian" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_general_g a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_accept_a,
+        net:atomProperty_accept_a ;
+    net:coverBaseNode :leaf_general-02_g ;
+    net:coverNode :leaf_general-02_g ;
+    net:hasNaming "general" ;
+    net:hasPropertyName "general" ;
+    net:hasPropertyName01 "generaling" ;
+    net:hasPropertyName10 "general-by" ;
+    net:hasPropertyName12 "general-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_accept-01_a .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_asteroid_a4,
+        net:atomClass_asteroid_a5,
+        net:atomClass_asteroid_a6,
+        net:atomClass_object_o3,
+        net:atomClass_object_o4,
+        net:atomClass_object_o5,
+        net:atomClass_object_o6,
+        net:atomClass_object_o7,
+        net:atomClass_object_o8,
+        net:phenomena_conjunction-AND_a3 ;
+    :role_ARG2 net:atomClass_object_o2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a3,
+        :leaf_object_o2 .
+
+net:atomProperty_observe_o a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_person_p ;
+    net:coverBaseNode :leaf_observe-01_o ;
+    net:coverNode :leaf_observe-01_o ;
+    net:hasNaming "observe" ;
+    net:hasPropertyName "observe" ;
+    net:hasPropertyName01 "observeing" ;
+    net:hasPropertyName10 "observe-by" ;
+    net:hasPropertyName12 "observe-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_person_p .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_dwarf_d a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#g> a ns3:general-02 ;
+    ns3:general-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o> a ns3:observe-01 ;
+    ns3:observe-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-15" ;
+    ns1:has-sentence "Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_accept-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:accept-01 ;
+    :label "accept-01" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns1:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_at-least rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:at-least ;
+    :label "at-least" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
+
+:concept_general-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:general-02 ;
+    :label "general-02" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
+
+:concept_observe-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:observe-01 ;
+    :label "observe-01" .
+
+:concept_person rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#person> ;
+    :label "person" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_trans-Neptunian rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:trans-Neptunian ;
+    :label "trans-Neptunian" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> ;
+    :label "a2" .
+
+:variable_a3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> ;
+    :label "a3" .
+
+:variable_a4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> ;
+    :label "a4" ;
+    :name "Cerre" .
+
+:variable_a5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> ;
+    :label "a5" ;
+    :name "Eris" .
+
+:variable_a6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> ;
+    :label "a6" ;
+    :name "Haumea" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> ;
+    :label "d" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#g> ;
+    :label "g" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#ii> ;
+    :label "ii" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> ;
+    :label "o3" ;
+    :name "Pluto" .
+
+:variable_o4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> ;
+    :label "o4" ;
+    :name "Makemake" .
+
+:variable_o5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> ;
+    :label "o5" ;
+    :name "Gonggong" .
+
+:variable_o6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> ;
+    :label "o6" ;
+    :name "Quaoar" .
+
+:variable_o7 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> ;
+    :label "o7" ;
+    :name "Sedna" .
+
+:variable_o8 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> ;
+    :label "o8" ;
+    :name "Orcus" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> ;
+    :label "p2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_accept_a a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_person_p ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG3 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:composeFrom net:atomProperty_accept_a ;
+    net:coverBaseNode :leaf_accept-01_a ;
+    net:coverNode :leaf_accept-01_a ;
+    net:hasClassName "accept" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "accept" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_at-least_a2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_at-least_a2 ;
+    net:coverNode :leaf_at-least_a2 ;
+    net:hasClassName "at-least" ;
+    net:hasNaming "at-least" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_trans-Neptunian_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_trans-Neptunian_t ;
+    net:coverNode :leaf_trans-Neptunian_t ;
+    net:hasClassName "trans-Neptunian" ;
+    net:hasNaming "trans-Neptunian" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_Cerre_a4 a net:Individual_Net ;
+    :role_name net:value_Cerre_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a4 ;
+    net:coverNode :leaf_asteroid_a4 ;
+    net:hasIndividualLabel "Cerre" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a4 ;
+    net:hasNaming "Cerre" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Eris_a5 a net:Individual_Net ;
+    :role_name net:value_Eris_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a5 ;
+    net:coverNode :leaf_asteroid_a5 ;
+    net:hasIndividualLabel "Eris" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a5 ;
+    net:hasNaming "Eris" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Gonggong_o5 a net:Individual_Net ;
+    :role_name net:value_Gonggong_blankNode ;
+    net:coverBaseNode :leaf_object_o5 ;
+    net:coverNode :leaf_object_o5 ;
+    net:hasIndividualLabel "Gonggong" ;
+    net:hasMotherClassNet net:atomClass_object_o5 ;
+    net:hasNaming "Gonggong" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Haumea_a6 a net:Individual_Net ;
+    :role_name net:value_Haumea_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a6 ;
+    net:coverNode :leaf_asteroid_a6 ;
+    net:hasIndividualLabel "Haumea" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a6 ;
+    net:hasNaming "Haumea" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Makemake_o4 a net:Individual_Net ;
+    :role_name net:value_Makemake_blankNode ;
+    net:coverBaseNode :leaf_object_o4 ;
+    net:coverNode :leaf_object_o4 ;
+    net:hasIndividualLabel "Makemake" ;
+    net:hasMotherClassNet net:atomClass_object_o4 ;
+    net:hasNaming "Makemake" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Orcus_o8 a net:Individual_Net ;
+    :role_name net:value_Orcus_blankNode ;
+    net:coverBaseNode :leaf_object_o8 ;
+    net:coverNode :leaf_object_o8 ;
+    net:hasIndividualLabel "Orcus" ;
+    net:hasMotherClassNet net:atomClass_object_o8 ;
+    net:hasNaming "Orcus" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Pluto_o3 a net:Individual_Net ;
+    :role_name net:value_Pluto_blankNode ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasIndividualLabel "Pluto" ;
+    net:hasMotherClassNet net:atomClass_object_o3 ;
+    net:hasNaming "Pluto" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Quaoar_o6 a net:Individual_Net ;
+    :role_name net:value_Quaoar_blankNode ;
+    net:coverBaseNode :leaf_object_o6 ;
+    net:coverNode :leaf_object_o6 ;
+    net:hasIndividualLabel "Quaoar" ;
+    net:hasMotherClassNet net:atomClass_object_o6 ;
+    net:hasNaming "Quaoar" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Sedna_o7 a net:Individual_Net ;
+    :role_name net:value_Sedna_blankNode ;
+    net:coverBaseNode :leaf_object_o7 ;
+    net:coverNode :leaf_object_o7 ;
+    net:hasIndividualLabel "Sedna" ;
+    net:hasMotherClassNet net:atomClass_object_o7 ;
+    net:hasNaming "Sedna" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a3 a net:Phenomena_Net ;
+    :role_mod net:atomClass_trans-Neptunian_t ;
+    :role_op1 net:atomClass_asteroid_a4,
+        net:individual_Cerre_a4 ;
+    :role_op2 net:atomClass_object_o3,
+        net:individual_Pluto_o3 ;
+    :role_op3 net:atomClass_asteroid_a5,
+        net:individual_Eris_a5 ;
+    :role_op4 net:atomClass_asteroid_a6,
+        net:individual_Haumea_a6 ;
+    :role_op5 net:atomClass_object_o4,
+        net:individual_Makemake_o4 ;
+    :role_op6 net:atomClass_object_o5,
+        net:individual_Gonggong_o5 ;
+    :role_op7 net:atomClass_object_o6,
+        net:individual_Quaoar_o6 ;
+    :role_op8 net:atomClass_object_o7,
+        net:individual_Sedna_o7 ;
+    :role_op9 net:atomClass_object_o8,
+        net:individual_Orcus_o8 ;
+    net:coverBaseNode :leaf_and_a3 ;
+    net:coverNode :leaf_and_a3 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> a ns2:at-least ;
+    ns2:op1 "9" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> a ns1:and ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> ;
+    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> ;
+    ns2:op5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> ;
+    ns2:op6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> ;
+    ns2:op7 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> ;
+    ns2:op8 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> ;
+    ns2:op9 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> a ns2:asteroid ;
+    rdfs:label "Cerre" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> a ns2:asteroid ;
+    rdfs:label "Eris" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> a ns2:asteroid ;
+    rdfs:label "Haumea" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> a ns2:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> a ns2:object ;
+    rdfs:label "Pluto" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> a ns2:object ;
+    rdfs:label "Makemake" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> a ns2:object ;
+    rdfs:label "Gonggong" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> a ns2:object ;
+    rdfs:label "Quaoar" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> a ns2:object ;
+    rdfs:label "Sedna" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> a ns2:object ;
+    rdfs:label "Orcus" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> a ns2:trans-Neptunian ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#person> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:accept-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:general-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:observe-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:at-least a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:dwarf a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:trans-Neptunian a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:and a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_general-02_g a :AMR_Leaf ;
+    :edge_g_a :leaf_accept-01_a ;
+    :hasConcept :concept_general-02 ;
+    :hasVariable :variable_g .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_a3 :leaf_and_a3 ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_observe-01_o a :AMR_Leaf ;
+    :edge_o_p :leaf_person_p ;
+    :hasConcept :concept_observe-01 ;
+    :hasVariable :variable_o .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:value_Cerre a :AMR_Value ;
+    rdfs:label "Cerre" .
+
+:value_Eris a :AMR_Value ;
+    rdfs:label "Eris" .
+
+:value_Gonggong a :AMR_Value ;
+    rdfs:label "Gonggong" .
+
+:value_Haumea a :AMR_Value ;
+    rdfs:label "Haumea" .
+
+:value_Makemake a :AMR_Value ;
+    rdfs:label "Makemake" .
+
+:value_Orcus a :AMR_Value ;
+    rdfs:label "Orcus" .
+
+:value_Pluto a :AMR_Value ;
+    rdfs:label "Pluto" .
+
+:value_Quaoar a :AMR_Value ;
+    rdfs:label "Quaoar" .
+
+:value_Sedna a :AMR_Value ;
+    rdfs:label "Sedna" .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_accept_a a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_person_p ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG3 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_accept-01_a ;
+    net:coverNode :leaf_accept-01_a ;
+    net:hasNaming "accept" ;
+    net:hasPropertyName "accept" ;
+    net:hasPropertyName01 "accepting" ;
+    net:hasPropertyName10 "accept-by" ;
+    net:hasPropertyName12 "accept-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_person_p,
+        :leaf_planet_p2 .
+
+net:compositeClass_dwarf-planet_p2 a net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:composeFrom net:atomClass_dwarf_d,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_planet_p2 ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "dwarf-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Cerre_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Cerre ;
+    net:hasNaming "Cerre" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Cerre" .
+
+net:value_Eris_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Eris ;
+    net:hasNaming "Eris" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Eris" .
+
+net:value_Gonggong_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Gonggong ;
+    net:hasNaming "Gonggong" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Gonggong" .
+
+net:value_Haumea_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Haumea ;
+    net:hasNaming "Haumea" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Haumea" .
+
+net:value_Makemake_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Makemake ;
+    net:hasNaming "Makemake" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Makemake" .
+
+net:value_Orcus_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Orcus ;
+    net:hasNaming "Orcus" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Orcus" .
+
+net:value_Pluto_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Pluto ;
+    net:hasNaming "Pluto" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Pluto" .
+
+net:value_Quaoar_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Quaoar ;
+    net:hasNaming "Quaoar" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Quaoar" .
+
+net:value_Sedna_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Sedna ;
+    net:hasNaming "Sedna" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Sedna" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> a ns3:accept-01 ;
+    ns3:accept-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
+    ns3:accept-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    ns3:accept-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> a <http://amr.isi.edu/entity-types#person> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:concept_asteroid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:asteroid ;
+    :label "asteroid" .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_at-least_a2 a :AMR_Leaf ;
+    :hasConcept :concept_at-least ;
+    :hasVariable :variable_a2 .
+
+:leaf_trans-Neptunian_t a :AMR_Leaf ;
+    :hasConcept :concept_trans-Neptunian ;
+    :hasVariable :variable_t .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_asteroid_a4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Cerre_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a4 ;
+    net:coverNode :leaf_asteroid_a4 ;
+    net:hasClassName "asteroid" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_asteroid_a5 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Eris_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a5 ;
+    net:coverNode :leaf_asteroid_a5 ;
+    net:hasClassName "asteroid" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_asteroid_a6 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Haumea_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a6 ;
+    net:coverNode :leaf_asteroid_a6 ;
+    net:hasClassName "asteroid" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_at-least_a2 ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_object_o2 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Pluto_blankNode ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Makemake_blankNode ;
+    net:coverBaseNode :leaf_object_o4 ;
+    net:coverNode :leaf_object_o4 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o5 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Gonggong_blankNode ;
+    net:coverBaseNode :leaf_object_o5 ;
+    net:coverNode :leaf_object_o5 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o6 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Quaoar_blankNode ;
+    net:coverBaseNode :leaf_object_o6 ;
+    net:coverNode :leaf_object_o6 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o7 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Sedna_blankNode ;
+    net:coverBaseNode :leaf_object_o7 ;
+    net:coverNode :leaf_object_o7 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o8 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Orcus_blankNode ;
+    net:coverBaseNode :leaf_object_o8 ;
+    net:coverNode :leaf_object_o8 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_person_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_person_p ;
+    net:coverNode :leaf_person_p ;
+    net:hasClassName "person" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "person" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns2:asteroid a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_and_a3 a :AMR_Leaf ;
+    :edge_a3_a4 :leaf_asteroid_a4 ;
+    :edge_a3_a5 :leaf_asteroid_a5 ;
+    :edge_a3_a6 :leaf_asteroid_a6 ;
+    :edge_a3_o3 :leaf_object_o3 ;
+    :edge_a3_o4 :leaf_object_o4 ;
+    :edge_a3_o5 :leaf_object_o5 ;
+    :edge_a3_o6 :leaf_object_o6 ;
+    :edge_a3_o7 :leaf_object_o7 ;
+    :edge_a3_o8 :leaf_object_o8 ;
+    :edge_a3_t :leaf_trans-Neptunian_t ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a3 .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_asteroid_a4 a :AMR_Leaf ;
+    :edge_a4_name_Cerre :value_Cerre ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a4 .
+
+:leaf_asteroid_a5 a :AMR_Leaf ;
+    :edge_a5_name_Eris :value_Eris ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a5 .
+
+:leaf_asteroid_a6 a :AMR_Leaf ;
+    :edge_a6_name_Haumea :value_Haumea ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a6 .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :edge_o3_name_Pluto :value_Pluto ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:leaf_object_o4 a :AMR_Leaf ;
+    :edge_o4_name_Makemake :value_Makemake ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o4 .
+
+:leaf_object_o5 a :AMR_Leaf ;
+    :edge_o5_name_Gonggong :value_Gonggong ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o5 .
+
+:leaf_object_o6 a :AMR_Leaf ;
+    :edge_o6_name_Quaoar :value_Quaoar ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o6 .
+
+:leaf_object_o7 a :AMR_Leaf ;
+    :edge_o7_name_Sedna :value_Sedna ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o7 .
+
+:leaf_object_o8 a :AMR_Leaf ;
+    :edge_o8_name_Orcus :value_Orcus ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o8 .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_dwarf_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :edge_o2_a2 :leaf_at-least_a2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+:leaf_person_p a :AMR_Leaf ;
+    :hasConcept :concept_person ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-15" .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:leaf_accept-01_a a :AMR_Leaf ;
+    :edge_a_o2 :leaf_object_o2 ;
+    :edge_a_p :leaf_person_p ;
+    :edge_a_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_accept-01 ;
+    :hasVariable :variable_a .
+
+ns2:object a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..e8cf234a0b9ee329821b455ac77d80f58cb6f37e
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1316 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:accept-01.ARG0 a ns3:FrameRole .
+
+ns3:accept-01.ARG1 a ns3:FrameRole .
+
+ns3:accept-01.ARG3 a ns3:FrameRole .
+
+ns3:general-02.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:observe-01.ARG0 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns1:Role .
+
+ns2:op1 a ns1:Role .
+
+ns2:op2 a ns1:Role .
+
+ns2:op3 a ns1:Role .
+
+ns2:op4 a ns1:Role .
+
+ns2:op5 a ns1:Role .
+
+ns2:op6 a ns1:Role .
+
+ns2:op7 a ns1:Role .
+
+ns2:op8 a ns1:Role .
+
+ns2:op9 a ns1:Role .
+
+ns2:quant a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a3_a4 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a3_a5 a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a3_a6 a :AMR_Edge ;
+    :hasAmrRole :role_op4 ;
+    :hasRoleID "op4" .
+
+:edge_a3_o3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a3_o4 a :AMR_Edge ;
+    :hasAmrRole :role_op5 ;
+    :hasRoleID "op5" .
+
+:edge_a3_o5 a :AMR_Edge ;
+    :hasAmrRole :role_op6 ;
+    :hasRoleID "op6" .
+
+:edge_a3_o6 a :AMR_Edge ;
+    :hasAmrRole :role_op7 ;
+    :hasRoleID "op7" .
+
+:edge_a3_o7 a :AMR_Edge ;
+    :hasAmrRole :role_op8 ;
+    :hasRoleID "op8" .
+
+:edge_a3_o8 a :AMR_Edge ;
+    :hasAmrRole :role_op9 ;
+    :hasRoleID "op9" .
+
+:edge_a3_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_a4_name_Cerre a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a5_name_Eris a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a6_name_Haumea a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_a_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_a_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_g_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_a3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_o2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_o3_name_Pluto a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o4_name_Makemake a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o5_name_Gonggong a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o6_name_Quaoar a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o7_name_Sedna a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o8_name_Orcus a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_d a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_general-02_g a :AMR_Leaf ;
+    :edge_g_a :leaf_accept-01_a ;
+    :hasConcept :concept_general-02 ;
+    :hasVariable :variable_g .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_a3 :leaf_and_a3 ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_observe-01_o a :AMR_Leaf ;
+    :edge_o_p :leaf_person_p ;
+    :hasConcept :concept_observe-01 ;
+    :hasVariable :variable_o .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-15 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#root01> ;
+    :hasRootLeaf :leaf_accept-01_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-15" ;
+    :hasSentenceStatement "Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#g> a ns3:general-02 ;
+    ns3:general-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o> a ns3:observe-01 ;
+    ns3:observe-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-15" ;
+    ns1:has-sentence "Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_accept-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:accept-01 ;
+    :label "accept-01" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns1:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_at-least rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:at-least ;
+    :label "at-least" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
+
+:concept_general-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:general-02 ;
+    :label "general-02" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
+
+:concept_observe-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:observe-01 ;
+    :label "observe-01" .
+
+:concept_person rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#person> ;
+    :label "person" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_trans-Neptunian rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:trans-Neptunian ;
+    :label "trans-Neptunian" .
+
+:leaf_and_a3 a :AMR_Leaf ;
+    :edge_a3_a4 :leaf_asteroid_a4 ;
+    :edge_a3_a5 :leaf_asteroid_a5 ;
+    :edge_a3_a6 :leaf_asteroid_a6 ;
+    :edge_a3_o3 :leaf_object_o3 ;
+    :edge_a3_o4 :leaf_object_o4 ;
+    :edge_a3_o5 :leaf_object_o5 ;
+    :edge_a3_o6 :leaf_object_o6 ;
+    :edge_a3_o7 :leaf_object_o7 ;
+    :edge_a3_o8 :leaf_object_o8 ;
+    :edge_a3_t :leaf_trans-Neptunian_t ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a3 .
+
+:leaf_asteroid_a4 a :AMR_Leaf ;
+    :edge_a4_name_Cerre :value_Cerre ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a4 .
+
+:leaf_asteroid_a5 a :AMR_Leaf ;
+    :edge_a5_name_Eris :value_Eris ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a5 .
+
+:leaf_asteroid_a6 a :AMR_Leaf ;
+    :edge_a6_name_Haumea :value_Haumea ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a6 .
+
+:leaf_at-least_a2 a :AMR_Leaf ;
+    :hasConcept :concept_at-least ;
+    :hasVariable :variable_a2 .
+
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :edge_o3_name_Pluto :value_Pluto ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:leaf_object_o4 a :AMR_Leaf ;
+    :edge_o4_name_Makemake :value_Makemake ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o4 .
+
+:leaf_object_o5 a :AMR_Leaf ;
+    :edge_o5_name_Gonggong :value_Gonggong ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o5 .
+
+:leaf_object_o6 a :AMR_Leaf ;
+    :edge_o6_name_Quaoar :value_Quaoar ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o6 .
+
+:leaf_object_o7 a :AMR_Leaf ;
+    :edge_o7_name_Sedna :value_Sedna ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o7 .
+
+:leaf_object_o8 a :AMR_Leaf ;
+    :edge_o8_name_Orcus :value_Orcus ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o8 .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_trans-Neptunian_t a :AMR_Leaf ;
+    :hasConcept :concept_trans-Neptunian ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_Cerre a :AMR_Value ;
+    rdfs:label "Cerre" .
+
+:value_Eris a :AMR_Value ;
+    rdfs:label "Eris" .
+
+:value_Gonggong a :AMR_Value ;
+    rdfs:label "Gonggong" .
+
+:value_Haumea a :AMR_Value ;
+    rdfs:label "Haumea" .
+
+:value_Makemake a :AMR_Value ;
+    rdfs:label "Makemake" .
+
+:value_Orcus a :AMR_Value ;
+    rdfs:label "Orcus" .
+
+:value_Pluto a :AMR_Value ;
+    rdfs:label "Pluto" .
+
+:value_Quaoar a :AMR_Value ;
+    rdfs:label "Quaoar" .
+
+:value_Sedna a :AMR_Value ;
+    rdfs:label "Sedna" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> ;
+    :label "a2" .
+
+:variable_a3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> ;
+    :label "a3" .
+
+:variable_a4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> ;
+    :label "a4" ;
+    :name "Cerre" .
+
+:variable_a5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> ;
+    :label "a5" ;
+    :name "Eris" .
+
+:variable_a6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> ;
+    :label "a6" ;
+    :name "Haumea" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> ;
+    :label "d" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#g> ;
+    :label "g" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#ii> ;
+    :label "ii" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> ;
+    :label "o3" ;
+    :name "Pluto" .
+
+:variable_o4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> ;
+    :label "o4" ;
+    :name "Makemake" .
+
+:variable_o5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> ;
+    :label "o5" ;
+    :name "Gonggong" .
+
+:variable_o6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> ;
+    :label "o6" ;
+    :name "Quaoar" .
+
+:variable_o7 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> ;
+    :label "o7" ;
+    :name "Sedna" .
+
+:variable_o8 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> ;
+    :label "o8" ;
+    :name "Orcus" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> ;
+    :label "p2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> a ns2:at-least ;
+    ns2:op1 "9" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> a ns1:and ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> ;
+    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> ;
+    ns2:op5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> ;
+    ns2:op6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> ;
+    ns2:op7 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> ;
+    ns2:op8 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> ;
+    ns2:op9 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> a ns2:asteroid ;
+    rdfs:label "Cerre" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> a ns2:asteroid ;
+    rdfs:label "Eris" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> a ns2:asteroid ;
+    rdfs:label "Haumea" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> a ns2:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> a ns2:object ;
+    rdfs:label "Pluto" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> a ns2:object ;
+    rdfs:label "Makemake" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> a ns2:object ;
+    rdfs:label "Gonggong" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> a ns2:object ;
+    rdfs:label "Quaoar" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> a ns2:object ;
+    rdfs:label "Sedna" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> a ns2:object ;
+    rdfs:label "Orcus" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> a ns2:trans-Neptunian ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#person> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:accept-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:general-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:observe-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:at-least a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:dwarf a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:trans-Neptunian a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:and a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_accept-01_a a :AMR_Leaf ;
+    :edge_a_o2 :leaf_object_o2 ;
+    :edge_a_p :leaf_person_p ;
+    :edge_a_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_accept-01 ;
+    :hasVariable :variable_a .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :edge_o2_a2 :leaf_at-least_a2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+:leaf_person_p a :AMR_Leaf ;
+    :hasConcept :concept_person ;
+    :hasVariable :variable_p .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> a ns3:accept-01 ;
+    ns3:accept-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
+    ns3:accept-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    ns3:accept-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> a <http://amr.isi.edu/entity-types#person> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:concept_asteroid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:asteroid ;
+    :label "asteroid" .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns2:asteroid a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+ns2:object a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..37be3d12a7b951e073fc32ba72cc85498927c020
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1751 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:accept-01.ARG0 a ns3:FrameRole .
+
+ns3:accept-01.ARG1 a ns3:FrameRole .
+
+ns3:accept-01.ARG3 a ns3:FrameRole .
+
+ns3:general-02.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:observe-01.ARG0 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns1:Role .
+
+ns2:op1 a ns1:Role .
+
+ns2:op2 a ns1:Role .
+
+ns2:op3 a ns1:Role .
+
+ns2:op4 a ns1:Role .
+
+ns2:op5 a ns1:Role .
+
+ns2:op6 a ns1:Role .
+
+ns2:op7 a ns1:Role .
+
+ns2:op8 a ns1:Role .
+
+ns2:op9 a ns1:Role .
+
+ns2:quant a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a3_a4 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a3_a5 a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a3_a6 a :AMR_Edge ;
+    :hasAmrRole :role_op4 ;
+    :hasRoleID "op4" .
+
+:edge_a3_o3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a3_o4 a :AMR_Edge ;
+    :hasAmrRole :role_op5 ;
+    :hasRoleID "op5" .
+
+:edge_a3_o5 a :AMR_Edge ;
+    :hasAmrRole :role_op6 ;
+    :hasRoleID "op6" .
+
+:edge_a3_o6 a :AMR_Edge ;
+    :hasAmrRole :role_op7 ;
+    :hasRoleID "op7" .
+
+:edge_a3_o7 a :AMR_Edge ;
+    :hasAmrRole :role_op8 ;
+    :hasRoleID "op8" .
+
+:edge_a3_o8 a :AMR_Edge ;
+    :hasAmrRole :role_op9 ;
+    :hasRoleID "op9" .
+
+:edge_a3_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_a4_name_Cerre a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a5_name_Eris a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a6_name_Haumea a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_a_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_a_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_a_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_g_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_a3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_o2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_o3_name_Pluto a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o4_name_Makemake a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o5_name_Gonggong a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o6_name_Quaoar a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o7_name_Sedna a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o8_name_Orcus a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_o_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_d a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-15 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#root01> ;
+    :hasRootLeaf :leaf_accept-01_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-15" ;
+    :hasSentenceStatement "Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_general_g a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_accept_a,
+        net:atomProperty_accept_a ;
+    net:coverBaseNode :leaf_general-02_g ;
+    net:coverNode :leaf_general-02_g ;
+    net:hasNaming "general" ;
+    net:hasPropertyName "general" ;
+    net:hasPropertyName01 "generaling" ;
+    net:hasPropertyName10 "general-by" ;
+    net:hasPropertyName12 "general-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_accept-01_a .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_asteroid_a4,
+        net:atomClass_asteroid_a5,
+        net:atomClass_asteroid_a6,
+        net:atomClass_object_o3,
+        net:atomClass_object_o4,
+        net:atomClass_object_o5,
+        net:atomClass_object_o6,
+        net:atomClass_object_o7,
+        net:atomClass_object_o8,
+        net:phenomena_conjunction-AND_a3 ;
+    :role_ARG2 net:atomClass_object_o2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a3,
+        :leaf_object_o2 .
+
+net:atomProperty_observe_o a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_person_p ;
+    net:coverBaseNode :leaf_observe-01_o ;
+    net:coverNode :leaf_observe-01_o ;
+    net:hasNaming "observe" ;
+    net:hasPropertyName "observe" ;
+    net:hasPropertyName01 "observeing" ;
+    net:hasPropertyName10 "observe-by" ;
+    net:hasPropertyName12 "observe-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_person_p .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_dwarf_d a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#g> a ns3:general-02 ;
+    ns3:general-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o> a ns3:observe-01 ;
+    ns3:observe-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-15" ;
+    ns1:has-sentence "Astronomers generally accept at least nine objects as dwarf planets: the asteroid Ceres and the trans-Neptunian objects Pluto, Eris, Haumea, Makemake, Gonggong, Quaoar, Sedna, and Orcus." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_accept-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:accept-01 ;
+    :label "accept-01" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns1:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_at-least rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:at-least ;
+    :label "at-least" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
+
+:concept_general-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:general-02 ;
+    :label "general-02" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
+
+:concept_observe-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:observe-01 ;
+    :label "observe-01" .
+
+:concept_person rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#person> ;
+    :label "person" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_trans-Neptunian rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:trans-Neptunian ;
+    :label "trans-Neptunian" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> ;
+    :label "a2" .
+
+:variable_a3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> ;
+    :label "a3" .
+
+:variable_a4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> ;
+    :label "a4" ;
+    :name "Cerre" .
+
+:variable_a5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> ;
+    :label "a5" ;
+    :name "Eris" .
+
+:variable_a6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> ;
+    :label "a6" ;
+    :name "Haumea" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> ;
+    :label "d" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#g> ;
+    :label "g" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#ii> ;
+    :label "ii" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> ;
+    :label "o3" ;
+    :name "Pluto" .
+
+:variable_o4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> ;
+    :label "o4" ;
+    :name "Makemake" .
+
+:variable_o5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> ;
+    :label "o5" ;
+    :name "Gonggong" .
+
+:variable_o6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> ;
+    :label "o6" ;
+    :name "Quaoar" .
+
+:variable_o7 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> ;
+    :label "o7" ;
+    :name "Sedna" .
+
+:variable_o8 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> ;
+    :label "o8" ;
+    :name "Orcus" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> ;
+    :label "p2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_accept_a a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_person_p ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG3 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:composeFrom net:atomProperty_accept_a ;
+    net:coverBaseNode :leaf_accept-01_a ;
+    net:coverNode :leaf_accept-01_a ;
+    net:hasClassName "accept" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "accept" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_at-least_a2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_at-least_a2 ;
+    net:coverNode :leaf_at-least_a2 ;
+    net:hasClassName "at-least" ;
+    net:hasNaming "at-least" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_trans-Neptunian_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_trans-Neptunian_t ;
+    net:coverNode :leaf_trans-Neptunian_t ;
+    net:hasClassName "trans-Neptunian" ;
+    net:hasNaming "trans-Neptunian" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_Cerre_a4 a net:Individual_Net ;
+    :role_name net:value_Cerre_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a4 ;
+    net:coverNode :leaf_asteroid_a4 ;
+    net:hasIndividualLabel "Cerre" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a4 ;
+    net:hasNaming "Cerre" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Eris_a5 a net:Individual_Net ;
+    :role_name net:value_Eris_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a5 ;
+    net:coverNode :leaf_asteroid_a5 ;
+    net:hasIndividualLabel "Eris" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a5 ;
+    net:hasNaming "Eris" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Gonggong_o5 a net:Individual_Net ;
+    :role_name net:value_Gonggong_blankNode ;
+    net:coverBaseNode :leaf_object_o5 ;
+    net:coverNode :leaf_object_o5 ;
+    net:hasIndividualLabel "Gonggong" ;
+    net:hasMotherClassNet net:atomClass_object_o5 ;
+    net:hasNaming "Gonggong" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Haumea_a6 a net:Individual_Net ;
+    :role_name net:value_Haumea_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a6 ;
+    net:coverNode :leaf_asteroid_a6 ;
+    net:hasIndividualLabel "Haumea" ;
+    net:hasMotherClassNet net:atomClass_asteroid_a6 ;
+    net:hasNaming "Haumea" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Makemake_o4 a net:Individual_Net ;
+    :role_name net:value_Makemake_blankNode ;
+    net:coverBaseNode :leaf_object_o4 ;
+    net:coverNode :leaf_object_o4 ;
+    net:hasIndividualLabel "Makemake" ;
+    net:hasMotherClassNet net:atomClass_object_o4 ;
+    net:hasNaming "Makemake" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Orcus_o8 a net:Individual_Net ;
+    :role_name net:value_Orcus_blankNode ;
+    net:coverBaseNode :leaf_object_o8 ;
+    net:coverNode :leaf_object_o8 ;
+    net:hasIndividualLabel "Orcus" ;
+    net:hasMotherClassNet net:atomClass_object_o8 ;
+    net:hasNaming "Orcus" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Pluto_o3 a net:Individual_Net ;
+    :role_name net:value_Pluto_blankNode ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasIndividualLabel "Pluto" ;
+    net:hasMotherClassNet net:atomClass_object_o3 ;
+    net:hasNaming "Pluto" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Quaoar_o6 a net:Individual_Net ;
+    :role_name net:value_Quaoar_blankNode ;
+    net:coverBaseNode :leaf_object_o6 ;
+    net:coverNode :leaf_object_o6 ;
+    net:hasIndividualLabel "Quaoar" ;
+    net:hasMotherClassNet net:atomClass_object_o6 ;
+    net:hasNaming "Quaoar" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:individual_Sedna_o7 a net:Individual_Net ;
+    :role_name net:value_Sedna_blankNode ;
+    net:coverBaseNode :leaf_object_o7 ;
+    net:coverNode :leaf_object_o7 ;
+    net:hasIndividualLabel "Sedna" ;
+    net:hasMotherClassNet net:atomClass_object_o7 ;
+    net:hasNaming "Sedna" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a3 a net:Phenomena_Net ;
+    :role_mod net:atomClass_trans-Neptunian_t ;
+    :role_op1 net:atomClass_asteroid_a4,
+        net:individual_Cerre_a4 ;
+    :role_op2 net:atomClass_object_o3,
+        net:individual_Pluto_o3 ;
+    :role_op3 net:atomClass_asteroid_a5,
+        net:individual_Eris_a5 ;
+    :role_op4 net:atomClass_asteroid_a6,
+        net:individual_Haumea_a6 ;
+    :role_op5 net:atomClass_object_o4,
+        net:individual_Makemake_o4 ;
+    :role_op6 net:atomClass_object_o5,
+        net:individual_Gonggong_o5 ;
+    :role_op7 net:atomClass_object_o6,
+        net:individual_Quaoar_o6 ;
+    :role_op8 net:atomClass_object_o7,
+        net:individual_Sedna_o7 ;
+    :role_op9 net:atomClass_object_o8,
+        net:individual_Orcus_o8 ;
+    net:coverBaseNode :leaf_and_a3 ;
+    net:coverNode :leaf_and_a3 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> a ns2:at-least ;
+    ns2:op1 "9" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a3> a ns1:and ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> ;
+    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> ;
+    ns2:op5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> ;
+    ns2:op6 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> ;
+    ns2:op7 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> ;
+    ns2:op8 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> ;
+    ns2:op9 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a4> a ns2:asteroid ;
+    rdfs:label "Cerre" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a5> a ns2:asteroid ;
+    rdfs:label "Eris" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a6> a ns2:asteroid ;
+    rdfs:label "Haumea" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> a ns2:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o3> a ns2:object ;
+    rdfs:label "Pluto" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o4> a ns2:object ;
+    rdfs:label "Makemake" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o5> a ns2:object ;
+    rdfs:label "Gonggong" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o6> a ns2:object ;
+    rdfs:label "Quaoar" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o7> a ns2:object ;
+    rdfs:label "Sedna" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o8> a ns2:object ;
+    rdfs:label "Orcus" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#t> a ns2:trans-Neptunian ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#person> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:accept-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:general-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:observe-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:at-least a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:dwarf a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:trans-Neptunian a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:and a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_general-02_g a :AMR_Leaf ;
+    :edge_g_a :leaf_accept-01_a ;
+    :hasConcept :concept_general-02 ;
+    :hasVariable :variable_g .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_a3 :leaf_and_a3 ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_observe-01_o a :AMR_Leaf ;
+    :edge_o_p :leaf_person_p ;
+    :hasConcept :concept_observe-01 ;
+    :hasVariable :variable_o .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:value_Cerre a :AMR_Value ;
+    rdfs:label "Cerre" .
+
+:value_Eris a :AMR_Value ;
+    rdfs:label "Eris" .
+
+:value_Gonggong a :AMR_Value ;
+    rdfs:label "Gonggong" .
+
+:value_Haumea a :AMR_Value ;
+    rdfs:label "Haumea" .
+
+:value_Makemake a :AMR_Value ;
+    rdfs:label "Makemake" .
+
+:value_Orcus a :AMR_Value ;
+    rdfs:label "Orcus" .
+
+:value_Pluto a :AMR_Value ;
+    rdfs:label "Pluto" .
+
+:value_Quaoar a :AMR_Value ;
+    rdfs:label "Quaoar" .
+
+:value_Sedna a :AMR_Value ;
+    rdfs:label "Sedna" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_accept_a a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_person_p ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG3 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_accept-01_a ;
+    net:coverNode :leaf_accept-01_a ;
+    net:hasNaming "accept" ;
+    net:hasPropertyName "accept" ;
+    net:hasPropertyName01 "accepting" ;
+    net:hasPropertyName10 "accept-by" ;
+    net:hasPropertyName12 "accept-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_person_p,
+        :leaf_planet_p2 .
+
+net:compositeClass_dwarf-planet_p2 a net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:composeFrom net:atomClass_dwarf_d,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_planet_p2 ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "dwarf-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Cerre_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Cerre ;
+    net:hasNaming "Cerre" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Cerre" .
+
+net:value_Eris_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Eris ;
+    net:hasNaming "Eris" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Eris" .
+
+net:value_Gonggong_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Gonggong ;
+    net:hasNaming "Gonggong" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Gonggong" .
+
+net:value_Haumea_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Haumea ;
+    net:hasNaming "Haumea" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Haumea" .
+
+net:value_Makemake_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Makemake ;
+    net:hasNaming "Makemake" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Makemake" .
+
+net:value_Orcus_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Orcus ;
+    net:hasNaming "Orcus" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Orcus" .
+
+net:value_Pluto_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Pluto ;
+    net:hasNaming "Pluto" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Pluto" .
+
+net:value_Quaoar_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Quaoar ;
+    net:hasNaming "Quaoar" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Quaoar" .
+
+net:value_Sedna_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Sedna ;
+    net:hasNaming "Sedna" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" ;
+    net:hasValueLabel "Sedna" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a> a ns3:accept-01 ;
+    ns3:accept-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> ;
+    ns3:accept-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> ;
+    ns3:accept-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#o2> a ns2:object ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-15#p> a <http://amr.isi.edu/entity-types#person> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:concept_asteroid rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:asteroid ;
+    :label "asteroid" .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_at-least_a2 a :AMR_Leaf ;
+    :hasConcept :concept_at-least ;
+    :hasVariable :variable_a2 .
+
+:leaf_trans-Neptunian_t a :AMR_Leaf ;
+    :hasConcept :concept_trans-Neptunian ;
+    :hasVariable :variable_t .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_asteroid_a4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Cerre_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a4 ;
+    net:coverNode :leaf_asteroid_a4 ;
+    net:hasClassName "asteroid" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_asteroid_a5 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Eris_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a5 ;
+    net:coverNode :leaf_asteroid_a5 ;
+    net:hasClassName "asteroid" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_asteroid_a6 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Haumea_blankNode ;
+    net:coverBaseNode :leaf_asteroid_a6 ;
+    net:coverNode :leaf_asteroid_a6 ;
+    net:hasClassName "asteroid" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "asteroid" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_at-least_a2 ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_object_o2 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Pluto_blankNode ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Makemake_blankNode ;
+    net:coverBaseNode :leaf_object_o4 ;
+    net:coverNode :leaf_object_o4 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o5 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Gonggong_blankNode ;
+    net:coverBaseNode :leaf_object_o5 ;
+    net:coverNode :leaf_object_o5 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o6 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Quaoar_blankNode ;
+    net:coverBaseNode :leaf_object_o6 ;
+    net:coverNode :leaf_object_o6 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o7 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Sedna_blankNode ;
+    net:coverBaseNode :leaf_object_o7 ;
+    net:coverNode :leaf_object_o7 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_object_o8 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Orcus_blankNode ;
+    net:coverBaseNode :leaf_object_o8 ;
+    net:coverNode :leaf_object_o8 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:atomClass_person_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_person_p ;
+    net:coverNode :leaf_person_p ;
+    net:hasClassName "person" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "person" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns2:asteroid a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_and_a3 a :AMR_Leaf ;
+    :edge_a3_a4 :leaf_asteroid_a4 ;
+    :edge_a3_a5 :leaf_asteroid_a5 ;
+    :edge_a3_a6 :leaf_asteroid_a6 ;
+    :edge_a3_o3 :leaf_object_o3 ;
+    :edge_a3_o4 :leaf_object_o4 ;
+    :edge_a3_o5 :leaf_object_o5 ;
+    :edge_a3_o6 :leaf_object_o6 ;
+    :edge_a3_o7 :leaf_object_o7 ;
+    :edge_a3_o8 :leaf_object_o8 ;
+    :edge_a3_t :leaf_trans-Neptunian_t ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a3 .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_asteroid_a4 a :AMR_Leaf ;
+    :edge_a4_name_Cerre :value_Cerre ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a4 .
+
+:leaf_asteroid_a5 a :AMR_Leaf ;
+    :edge_a5_name_Eris :value_Eris ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a5 .
+
+:leaf_asteroid_a6 a :AMR_Leaf ;
+    :edge_a6_name_Haumea :value_Haumea ;
+    :hasConcept :concept_asteroid ;
+    :hasVariable :variable_a6 .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :edge_o3_name_Pluto :value_Pluto ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:leaf_object_o4 a :AMR_Leaf ;
+    :edge_o4_name_Makemake :value_Makemake ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o4 .
+
+:leaf_object_o5 a :AMR_Leaf ;
+    :edge_o5_name_Gonggong :value_Gonggong ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o5 .
+
+:leaf_object_o6 a :AMR_Leaf ;
+    :edge_o6_name_Quaoar :value_Quaoar ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o6 .
+
+:leaf_object_o7 a :AMR_Leaf ;
+    :edge_o7_name_Sedna :value_Sedna ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o7 .
+
+:leaf_object_o8 a :AMR_Leaf ;
+    :edge_o8_name_Orcus :value_Orcus ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o8 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_dwarf_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-15" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :edge_o2_a2 :leaf_at-least_a2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+:leaf_person_p a :AMR_Leaf ;
+    :hasConcept :concept_person ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:leaf_accept-01_a a :AMR_Leaf ;
+    :edge_a_o2 :leaf_object_o2 ;
+    :edge_a_p :leaf_person_p ;
+    :edge_a_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_accept-01 ;
+    :hasVariable :variable_a .
+
+ns2:object a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..5dc80b5489517e35884f61b3f703dd1d28b288b0
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-15/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,105 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#Cerre> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Cerre" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Eris> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Eris" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Gonggong> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Gonggong" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Haumea> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#asteroid> ;
+    rdfs:label "Haumea" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Makemake> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Makemake" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Orcus> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Orcus" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Pluto> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Pluto" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Quaoar> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Quaoar" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#Sedna> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    rdfs:label "Sedna" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#accept> a owl:Class ;
+    rdfs:label "accept" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#at-least> a owl:Class ;
+    rdfs:label "at-least" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#general> a owl:ObjectProperty ;
+    rdfs:label "general" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#observe> a owl:ObjectProperty ;
+    rdfs:label "observe" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#person> a owl:Class ;
+    rdfs:label "person" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#trans-Neptunian> a owl:Class ;
+    rdfs:label "trans-Neptunian" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-15" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..a46b97d1d9fc8cea4d7e9c33cfbbd223d6ac683e
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,875 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b> a ns11:body ;
+    ns11:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#s> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#d> a ns11:dust ;
+    ns11:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#f> a ns3:free-04 ;
+    ns3:free-04.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii> a ns3:include-01 ;
+    ns3:include-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a2> ;
+    ns3:include-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#root01> a ns2:AMR ;
+    ns2:has-id "WikiAbstract-SolarSystem-16" ;
+    ns2:has-sentence "In addition to these two regions, various other small-body populations, including comets, centaurs and interplanetary dust clouds, freely travel between regions." ;
+    ns2:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:free-04.ARG3 a ns3:FrameRole .
+
+ns3:include-01.ARG1 a ns3:FrameRole .
+
+ns3:include-01.ARG2 a ns3:FrameRole .
+
+ns3:travel-01.ARG0 a ns3:FrameRole .
+
+ns3:travel-01.ARG1 a ns3:FrameRole .
+
+ns11:consist a ns2:Role .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:mod a ns2:Role .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns11:op3 a ns2:Role .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a2> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c2> ;
+    ns11:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b2> a ns2:between ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c> a ns11:comet .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c2> a ns11:centaur .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii2> a ns11:interplanetary .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#o> a ns11:other .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r> a ns11:region ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t> ;
+    ns11:quant "2" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r2> a ns11:region .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#s> a ns11:small .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t> a ns11:this .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#v> a ns11:various .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:free-04 a ns2:Frame .
+
+ns3:include-01 a ns2:Frame .
+
+ns3:travel-01 a ns2:Frame .
+
+ns11:body a ns2:Concept .
+
+ns11:centaur a ns2:Concept .
+
+ns11:cloud a ns2:Concept .
+
+ns11:comet a ns2:Concept .
+
+ns11:dust a ns2:Concept .
+
+ns11:interplanetary a ns2:Concept .
+
+ns11:other a ns2:Concept .
+
+ns11:population a ns2:Concept .
+
+ns11:small a ns2:Concept .
+
+ns11:this a ns2:Concept .
+
+ns11:various a ns2:Concept .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:between a ns2:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> a ns11:cloud ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> a ns3:travel-01 ;
+    ns3:travel-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    ns3:travel-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b2> .
+
+ns11:region a ns2:Concept .
+
+ns2:and a ns2:Concept .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> a ns11:population ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#o>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#v> .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..9e7a6852a7bb0125f4d02ba2b47b9fb2daaed89e
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1745 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:free-04.ARG3 a ns3:FrameRole .
+
+ns3:include-01.ARG1 a ns3:FrameRole .
+
+ns3:include-01.ARG2 a ns3:FrameRole .
+
+ns3:travel-01.ARG0 a ns3:FrameRole .
+
+ns3:travel-01.ARG1 a ns3:FrameRole .
+
+ns11:consist a ns2:Role .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:mod a ns2:Role .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns11:op3 a ns2:Role .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_c a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_c2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a2_c3 a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a_r a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_t2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b2_r2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_p a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_ii2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_d_c3 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_f_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_ii_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_p_o a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_v a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_r_quant_2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_r_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_t2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-16 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-16" ;
+    :hasSentenceStatement "In addition to these two regions, various other small-body populations, including comets, centaurs and interplanetary dust clouds, freely travel between regions." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#centaur> a owl:Class ;
+    rdfs:label "centaur" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#comet> a owl:Class ;
+    rdfs:label "comet" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#dust> a owl:Class ;
+    rdfs:label "dust" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#free> a owl:ObjectProperty ;
+    rdfs:label "free" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#interplanetary-cloud> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#other-population-travel-between> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#travel> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#between> ],
+        <https://tenet.tetras-libre.fr/extract-result#other-population> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#small-body> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#body> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#this-region> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#region> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#various-population-travel-between> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#travel> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#between> ],
+        <https://tenet.tetras-libre.fr/extract-result#various-population> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_dust_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dust_d ;
+    net:coverNode :leaf_dust_d ;
+    net:hasClassName "dust" ;
+    net:hasNaming "dust" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_free_f a net:Atom_Property_Net ;
+    :role_ARG3 net:atomProperty_travel_t2 ;
+    net:coverBaseNode :leaf_free-04_f ;
+    net:coverNode :leaf_free-04_f ;
+    net:hasNaming "free" ;
+    net:hasPropertyName "free" ;
+    net:hasPropertyName01 "freeing" ;
+    net:hasPropertyName10 "free-by" ;
+    net:hasPropertyName12 "free-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_travel-01_t2 .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_centaur_c2,
+        net:atomClass_cloud_c3,
+        net:atomClass_comet_c,
+        net:compositeClass_interplanetary-cloud_c3,
+        net:phenomena_conjunction-AND_a2 ;
+    :role_ARG2 net:atomClass_population_p,
+        net:compositeClass_other-population_p,
+        net:compositeClass_various-population_p ;
+    net:coverBaseNode :leaf_include-01_ii ;
+    net:coverNode :leaf_include-01_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2,
+        :leaf_population_p .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_other-population-travel-between_p a net:Composite_Class_Net ;
+    :role_mod net:atomClass_other_o,
+        net:atomClass_various_v ;
+    net:composeFrom net:atomClass_between_b2,
+        net:atomProperty_travel_t2,
+        net:compositeClass_other-population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_between_b2,
+        :leaf_other_o,
+        :leaf_population_p,
+        :leaf_travel-01_t2 ;
+    net:hasMotherClassNet net:compositeClass_other-population_p ;
+    net:hasNaming "other-population-travel-between" ;
+    net:hasRestriction net:restriction_travel-between_t2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:compositeClass_small-body_b a net:Composite_Class_Net ;
+    :role_mod net:atomClass_small_s ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_small_s ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b,
+        :leaf_small_s ;
+    net:hasMotherClassNet net:atomClass_body_b ;
+    net:hasNaming "small-body" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:compositeClass_various-population-travel-between_p a net:Composite_Class_Net ;
+    :role_mod net:atomClass_other_o,
+        net:atomClass_various_v ;
+    net:composeFrom net:atomClass_between_b2,
+        net:atomProperty_travel_t2,
+        net:compositeClass_various-population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_between_b2,
+        :leaf_population_p,
+        :leaf_travel-01_t2,
+        :leaf_various_v ;
+    net:hasMotherClassNet net:compositeClass_various-population_p ;
+    net:hasNaming "various-population-travel-between" ;
+    net:hasRestriction net:restriction_travel-between_t2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_interplanetary_ii2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_interplanetary_ii2 ;
+    net:coverBaseNode :leaf_interplanetary_ii2 ;
+    net:coverNode :leaf_interplanetary_ii2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "interplanetary" ;
+    net:hasMotherClassNet net:atomClass_interplanetary_ii2 ;
+    net:hasNaming "interplanetary" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:individual_other_o a net:Individual_Net ;
+    net:composeFrom net:atomClass_other_o ;
+    net:coverBaseNode :leaf_other_o ;
+    net:coverNode :leaf_other_o ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "other" ;
+    net:hasMotherClassNet net:atomClass_other_o ;
+    net:hasNaming "other" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:individual_small_s a net:Individual_Net ;
+    net:composeFrom net:atomClass_small_s ;
+    net:coverBaseNode :leaf_small_s ;
+    net:coverNode :leaf_small_s ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "small" ;
+    net:hasMotherClassNet net:atomClass_small_s ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:individual_this_t a net:Individual_Net ;
+    net:composeFrom net:atomClass_this_t ;
+    net:coverBaseNode :leaf_this_t ;
+    net:coverNode :leaf_this_t ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "this" ;
+    net:hasMotherClassNet net:atomClass_this_t ;
+    net:hasNaming "this" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:individual_various_v a net:Individual_Net ;
+    net:composeFrom net:atomClass_various_v ;
+    net:coverBaseNode :leaf_various_v ;
+    net:coverNode :leaf_various_v ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "various" ;
+    net:hasMotherClassNet net:atomClass_various_v ;
+    net:hasNaming "various" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_region_r,
+        net:compositeClass_this-region_r ;
+    :role_op2 net:atomProperty_travel_t2 ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b> a ns11:body ;
+    ns11:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#d> a ns11:dust ;
+    ns11:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#f> a ns3:free-04 ;
+    ns3:free-04.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii> a ns3:include-01 ;
+    ns3:include-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a2> ;
+    ns3:include-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#root01> a ns2:AMR ;
+    ns2:has-id "WikiAbstract-SolarSystem-16" ;
+    ns2:has-sentence "In addition to these two regions, various other small-body populations, including comets, centaurs and interplanetary dust clouds, freely travel between regions." ;
+    ns2:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_between rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:between ;
+    :label "between" .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:body ;
+    :label "body" .
+
+:concept_centaur rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:centaur ;
+    :label "centaur" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:cloud ;
+    :label "cloud" .
+
+:concept_comet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:comet ;
+    :label "comet" .
+
+:concept_dust rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:dust ;
+    :label "dust" .
+
+:concept_free-04 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:free-04 ;
+    :label "free-04" .
+
+:concept_include-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-01 ;
+    :label "include-01" .
+
+:concept_interplanetary rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:interplanetary ;
+    :label "interplanetary" .
+
+:concept_other rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:other ;
+    :label "other" .
+
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:population ;
+    :label "population" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:small ;
+    :label "small" .
+
+:concept_this rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:this ;
+    :label "this" .
+
+:concept_travel-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:travel-01 ;
+    :label "travel-01" .
+
+:concept_various rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:various ;
+    :label "various" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_op3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b> ;
+    :label "b" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b2> ;
+    :label "b2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c2> ;
+    :label "c2" .
+
+:variable_c3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> ;
+    :label "c3" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#d> ;
+    :label "d" .
+
+:variable_f a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#f> ;
+    :label "f" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii> ;
+    :label "ii" .
+
+:variable_ii2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii2> ;
+    :label "ii2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    :label "p" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r> ;
+    :label "r" .
+
+:variable_r2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r2> ;
+    :label "r2" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> ;
+    :label "t2" .
+
+:variable_v a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#v> ;
+    :label "v" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
+    rdfs:label "body" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#cloud> a owl:Class ;
+    rdfs:label "cloud" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#interplanetary> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#interplanetary> ;
+    rdfs:label "interplanetary" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#other> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#other> ;
+    rdfs:label "other" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#other-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#region> a owl:Class ;
+    rdfs:label "region" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#small> ;
+    rdfs:label "small" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#this> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#this> ;
+    rdfs:label "this" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#various> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#various> ;
+    rdfs:label "various" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#various-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:compositeClass_this-region_r a net:Composite_Class_Net ;
+    :role_mod net:atomClass_this_t ;
+    :role_quant net:value_2_blankNode ;
+    net:composeFrom net:atomClass_region_r,
+        net:atomClass_this_t ;
+    net:coverBaseNode :leaf_region_r ;
+    net:coverNode :leaf_region_r,
+        :leaf_this_t ;
+    net:hasMotherClassNet net:atomClass_region_r ;
+    net:hasNaming "this-region" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_comet_c ;
+    :role_op2 net:atomClass_centaur_c2 ;
+    :role_op3 net:atomClass_cloud_c3,
+        net:compositeClass_interplanetary-cloud_c3 ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a2> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c2> ;
+    ns11:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b2> a ns2:between ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c> a ns11:comet ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c2> a ns11:centaur ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii2> a ns11:interplanetary ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#o> a ns11:other ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r> a ns11:region ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t> ;
+    ns11:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r2> a ns11:region ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#s> a ns11:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t> a ns11:this ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#v> a ns11:various ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:free-04 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:travel-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:body a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:centaur a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:cloud a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:comet a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:dust a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:interplanetary a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:other a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:population a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:small a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:this a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:various a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:between a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_region rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:region ;
+    :label "region" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_dust_d a :AMR_Leaf ;
+    :edge_d_c3 :leaf_cloud_c3 ;
+    :hasConcept :concept_dust ;
+    :hasVariable :variable_d .
+
+:leaf_free-04_f a :AMR_Leaf ;
+    :edge_f_t2 :leaf_travel-01_t2 ;
+    :hasConcept :concept_free-04 ;
+    :hasVariable :variable_f .
+
+:leaf_include-01_ii a :AMR_Leaf ;
+    :edge_ii_a2 :leaf_and_a2 ;
+    :edge_ii_p :leaf_population_p ;
+    :hasConcept :concept_include-01 ;
+    :hasVariable :variable_ii .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_2 a :AMR_Value ;
+    rdfs:label "2" .
+
+<https://tenet.tetras-libre.fr/extract-result#between> a owl:Class ;
+    rdfs:label "between" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#population> a owl:Class ;
+    rdfs:label "population" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#travel> a owl:ObjectProperty ;
+    rdfs:label "travel" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-16" .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_body_b a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_small_s ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b ;
+    net:hasClassName "body" ;
+    net:hasNaming "body" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_centaur_c2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_centaur_c2 ;
+    net:coverNode :leaf_centaur_c2 ;
+    net:hasClassName "centaur" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "centaur" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_comet_c a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_comet_c ;
+    net:coverNode :leaf_comet_c ;
+    net:hasClassName "comet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "comet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_region_r2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_region_r2 ;
+    net:coverNode :leaf_region_r2 ;
+    net:hasClassName "region" ;
+    net:hasNaming "region" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomProperty_between_b2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_op1 net:atomClass_region_r2 ;
+    net:coverBaseNode :leaf_between_b2 ;
+    net:coverNode :leaf_between_b2 ;
+    net:hasNaming "between" ;
+    net:hasPropertyName "between" ;
+    net:hasPropertyName01 "betweening" ;
+    net:hasPropertyName10 "between-by" ;
+    net:hasPropertyName12 "between-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_region_r2 .
+
+net:compositeClass_interplanetary-cloud_c3 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_interplanetary_ii2 ;
+    net:composeFrom net:atomClass_cloud_c3,
+        net:atomClass_interplanetary_ii2 ;
+    net:coverBaseNode :leaf_cloud_c3 ;
+    net:coverNode :leaf_cloud_c3,
+        :leaf_interplanetary_ii2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_cloud_c3 ;
+    net:hasNaming "interplanetary-cloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:restriction_travel-between_t2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_between_b2,
+        net:atomProperty_travel_t2 ;
+    net:coverBaseNode :leaf_travel-01_t2 ;
+    net:coverNode :leaf_between_b2,
+        :leaf_travel-01_t2 ;
+    net:hasNaming "travel-between" ;
+    net:hasRestrictionNetValue net:atomClass_between_b2 ;
+    net:hasRestrictionOnProperty net:atomProperty_travel_t2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:value_2_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_2 ;
+    net:hasNaming "2" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" ;
+    net:hasValueLabel "2" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> a ns11:cloud ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> a ns3:travel-01 ;
+    ns3:travel-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    ns3:travel-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:region a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_r :leaf_region_r ;
+    :edge_a_t2 :leaf_travel-01_t2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_centaur_c2 a :AMR_Leaf ;
+    :hasConcept :concept_centaur ;
+    :hasVariable :variable_c2 .
+
+:leaf_comet_c a :AMR_Leaf ;
+    :hasConcept :concept_comet ;
+    :hasVariable :variable_c .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_region_r a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_this_t ;
+    :role_quant net:value_2_blankNode ;
+    net:coverBaseNode :leaf_region_r ;
+    net:coverNode :leaf_region_r ;
+    net:hasClassName "region" ;
+    net:hasNaming "region" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> a ns11:population ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#o>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#v> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_c :leaf_comet_c ;
+    :edge_a2_c2 :leaf_centaur_c2 ;
+    :edge_a2_c3 :leaf_cloud_c3 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_p :leaf_population_p ;
+    :edge_b_s :leaf_small_s ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+:leaf_region_r2 a :AMR_Leaf ;
+    :hasConcept :concept_region ;
+    :hasVariable :variable_r2 .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomClass_cloud_c3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_interplanetary_ii2 ;
+    net:coverBaseNode :leaf_cloud_c3 ;
+    net:coverNode :leaf_cloud_c3 ;
+    net:hasClassName "cloud" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "cloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:compositeClass_other-population_p a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_other_o,
+        net:atomClass_various_v ;
+    net:composeFrom net:atomClass_other_o,
+        net:atomClass_population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_other_o,
+        :leaf_population_p ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_population_p ;
+    net:hasNaming "other-population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:compositeClass_various-population_p a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_other_o,
+        net:atomClass_various_v ;
+    net:composeFrom net:atomClass_population_p,
+        net:atomClass_various_v ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p,
+        :leaf_various_v ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_population_p ;
+    net:hasNaming "various-population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_region_r a :AMR_Leaf ;
+    :edge_r_quant_2 :value_2 ;
+    :edge_r_t :leaf_this_t ;
+    :hasConcept :concept_region ;
+    :hasVariable :variable_r .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_between_b2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_op1 net:atomClass_region_r2 ;
+    net:composeFrom net:atomProperty_between_b2 ;
+    net:coverBaseNode :leaf_between_b2 ;
+    net:coverNode :leaf_between_b2 ;
+    net:hasClassName "between" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "between" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_interplanetary_ii2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_interplanetary_ii2 ;
+    net:coverNode :leaf_interplanetary_ii2 ;
+    net:hasClassName "interplanetary" ;
+    net:hasNaming "interplanetary" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_small_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_small_s ;
+    net:coverNode :leaf_small_s ;
+    net:hasClassName "small" ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_this_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_this_t ;
+    net:coverNode :leaf_this_t ;
+    net:hasClassName "this" ;
+    net:hasNaming "this" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_cloud_c3 a :AMR_Leaf ;
+    :edge_c3_ii2 :leaf_interplanetary_ii2 ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c3 .
+
+:leaf_interplanetary_ii2 a :AMR_Leaf ;
+    :hasConcept :concept_interplanetary ;
+    :hasVariable :variable_ii2 .
+
+:leaf_small_s a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s .
+
+:leaf_this_t a :AMR_Leaf ;
+    :hasConcept :concept_this ;
+    :hasVariable :variable_t .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_population_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_other_o,
+        net:atomClass_various_v ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p ;
+    net:hasClassName "population" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomProperty_travel_t2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_population_p,
+        net:compositeClass_other-population_p,
+        net:compositeClass_various-population_p ;
+    :role_ARG1 net:atomClass_between_b2,
+        net:atomProperty_between_b2 ;
+    net:coverBaseNode :leaf_travel-01_t2 ;
+    net:coverNode :leaf_travel-01_t2 ;
+    net:hasNaming "travel" ;
+    net:hasPropertyName "travel" ;
+    net:hasPropertyName01 "traveling" ;
+    net:hasPropertyName10 "travel-by" ;
+    net:hasPropertyName12 "travel-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_between_b2,
+        :leaf_population_p .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_other_o a :AMR_Leaf ;
+    :hasConcept :concept_other ;
+    :hasVariable :variable_o .
+
+:leaf_various_v a :AMR_Leaf ;
+    :hasConcept :concept_various ;
+    :hasVariable :variable_v .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:atomClass_other_o a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_other_o ;
+    net:coverNode :leaf_other_o ;
+    net:hasClassName "other" ;
+    net:hasNaming "other" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_various_v a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_various_v ;
+    net:coverNode :leaf_various_v ;
+    net:hasClassName "various" ;
+    net:hasNaming "various" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_between_b2 a :AMR_Leaf ;
+    :edge_b2_r2 :leaf_region_r2 ;
+    :hasConcept :concept_between ;
+    :hasVariable :variable_b2 .
+
+:leaf_travel-01_t2 a :AMR_Leaf ;
+    :edge_t2_b2 :leaf_between_b2 ;
+    :edge_t2_p :leaf_population_p ;
+    :hasConcept :concept_travel-01 ;
+    :hasVariable :variable_t2 .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_o :leaf_other_o ;
+    :edge_p_v :leaf_various_v ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..d4c907da358a00cb9910699fc52df221d198edf0
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1234 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:free-04.ARG3 a ns3:FrameRole .
+
+ns3:include-01.ARG1 a ns3:FrameRole .
+
+ns3:include-01.ARG2 a ns3:FrameRole .
+
+ns3:travel-01.ARG0 a ns3:FrameRole .
+
+ns3:travel-01.ARG1 a ns3:FrameRole .
+
+ns11:consist a ns2:Role .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:mod a ns2:Role .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns11:op3 a ns2:Role .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_c a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_c2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a2_c3 a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a_r a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_t2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b2_r2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_p a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_ii2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_d_c3 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_f_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_ii_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_p_o a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_v a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_r_quant_2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_r_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_t2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_p :leaf_population_p ;
+    :edge_b_s :leaf_small_s ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+:leaf_dust_d a :AMR_Leaf ;
+    :edge_d_c3 :leaf_cloud_c3 ;
+    :hasConcept :concept_dust ;
+    :hasVariable :variable_d .
+
+:leaf_free-04_f a :AMR_Leaf ;
+    :edge_f_t2 :leaf_travel-01_t2 ;
+    :hasConcept :concept_free-04 ;
+    :hasVariable :variable_f .
+
+:leaf_include-01_ii a :AMR_Leaf ;
+    :edge_ii_a2 :leaf_and_a2 ;
+    :edge_ii_p :leaf_population_p ;
+    :hasConcept :concept_include-01 ;
+    :hasVariable :variable_ii .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-16 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-16" ;
+    :hasSentenceStatement "In addition to these two regions, various other small-body populations, including comets, centaurs and interplanetary dust clouds, freely travel between regions." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b> a ns11:body ;
+    ns11:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#d> a ns11:dust ;
+    ns11:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#f> a ns3:free-04 ;
+    ns3:free-04.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii> a ns3:include-01 ;
+    ns3:include-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a2> ;
+    ns3:include-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#root01> a ns2:AMR ;
+    ns2:has-id "WikiAbstract-SolarSystem-16" ;
+    ns2:has-sentence "In addition to these two regions, various other small-body populations, including comets, centaurs and interplanetary dust clouds, freely travel between regions." ;
+    ns2:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_between rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:between ;
+    :label "between" .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:body ;
+    :label "body" .
+
+:concept_centaur rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:centaur ;
+    :label "centaur" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:cloud ;
+    :label "cloud" .
+
+:concept_comet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:comet ;
+    :label "comet" .
+
+:concept_dust rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:dust ;
+    :label "dust" .
+
+:concept_free-04 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:free-04 ;
+    :label "free-04" .
+
+:concept_include-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-01 ;
+    :label "include-01" .
+
+:concept_interplanetary rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:interplanetary ;
+    :label "interplanetary" .
+
+:concept_other rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:other ;
+    :label "other" .
+
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:population ;
+    :label "population" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:small ;
+    :label "small" .
+
+:concept_this rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:this ;
+    :label "this" .
+
+:concept_travel-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:travel-01 ;
+    :label "travel-01" .
+
+:concept_various rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:various ;
+    :label "various" .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_r :leaf_region_r ;
+    :edge_a_t2 :leaf_travel-01_t2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_c :leaf_comet_c ;
+    :edge_a2_c2 :leaf_centaur_c2 ;
+    :edge_a2_c3 :leaf_cloud_c3 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_between_b2 a :AMR_Leaf ;
+    :edge_b2_r2 :leaf_region_r2 ;
+    :hasConcept :concept_between ;
+    :hasVariable :variable_b2 .
+
+:leaf_centaur_c2 a :AMR_Leaf ;
+    :hasConcept :concept_centaur ;
+    :hasVariable :variable_c2 .
+
+:leaf_comet_c a :AMR_Leaf ;
+    :hasConcept :concept_comet ;
+    :hasVariable :variable_c .
+
+:leaf_interplanetary_ii2 a :AMR_Leaf ;
+    :hasConcept :concept_interplanetary ;
+    :hasVariable :variable_ii2 .
+
+:leaf_other_o a :AMR_Leaf ;
+    :hasConcept :concept_other ;
+    :hasVariable :variable_o .
+
+:leaf_region_r a :AMR_Leaf ;
+    :edge_r_quant_2 :value_2 ;
+    :edge_r_t :leaf_this_t ;
+    :hasConcept :concept_region ;
+    :hasVariable :variable_r .
+
+:leaf_region_r2 a :AMR_Leaf ;
+    :hasConcept :concept_region ;
+    :hasVariable :variable_r2 .
+
+:leaf_small_s a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s .
+
+:leaf_this_t a :AMR_Leaf ;
+    :hasConcept :concept_this ;
+    :hasVariable :variable_t .
+
+:leaf_various_v a :AMR_Leaf ;
+    :hasConcept :concept_various ;
+    :hasVariable :variable_v .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_2 a :AMR_Value ;
+    rdfs:label "2" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b> ;
+    :label "b" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b2> ;
+    :label "b2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c2> ;
+    :label "c2" .
+
+:variable_c3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> ;
+    :label "c3" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#d> ;
+    :label "d" .
+
+:variable_f a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#f> ;
+    :label "f" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii> ;
+    :label "ii" .
+
+:variable_ii2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii2> ;
+    :label "ii2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    :label "p" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r> ;
+    :label "r" .
+
+:variable_r2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r2> ;
+    :label "r2" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> ;
+    :label "t2" .
+
+:variable_v a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#v> ;
+    :label "v" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a2> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c2> ;
+    ns11:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b2> a ns2:between ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c> a ns11:comet ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c2> a ns11:centaur ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii2> a ns11:interplanetary ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#o> a ns11:other ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r> a ns11:region ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t> ;
+    ns11:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r2> a ns11:region ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#s> a ns11:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t> a ns11:this ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#v> a ns11:various ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:free-04 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:travel-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:body a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:centaur a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:cloud a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:comet a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:dust a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:interplanetary a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:other a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:population a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:small a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:this a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:various a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:between a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_region rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:region ;
+    :label "region" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_cloud_c3 a :AMR_Leaf ;
+    :edge_c3_ii2 :leaf_interplanetary_ii2 ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c3 .
+
+:leaf_travel-01_t2 a :AMR_Leaf ;
+    :edge_t2_b2 :leaf_between_b2 ;
+    :edge_t2_p :leaf_population_p ;
+    :hasConcept :concept_travel-01 ;
+    :hasVariable :variable_t2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> a ns11:cloud ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> a ns3:travel-01 ;
+    ns3:travel-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    ns3:travel-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:region a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_o :leaf_other_o ;
+    :edge_p_v :leaf_various_v ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> a ns11:population ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#o>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#v> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..88e80c02f6029b239a93cb9c530b3df68e4b0f35
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1621 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:free-04.ARG3 a ns3:FrameRole .
+
+ns3:include-01.ARG1 a ns3:FrameRole .
+
+ns3:include-01.ARG2 a ns3:FrameRole .
+
+ns3:travel-01.ARG0 a ns3:FrameRole .
+
+ns3:travel-01.ARG1 a ns3:FrameRole .
+
+ns11:consist a ns2:Role .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:mod a ns2:Role .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns11:op3 a ns2:Role .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_c a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_c2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a2_c3 a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a_r a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_t2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b2_r2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_p a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_ii2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_d_c3 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_f_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_ii_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_p_o a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_v a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_r_quant_2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_r_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_t2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-16 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-16" ;
+    :hasSentenceStatement "In addition to these two regions, various other small-body populations, including comets, centaurs and interplanetary dust clouds, freely travel between regions." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_dust_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dust_d ;
+    net:coverNode :leaf_dust_d ;
+    net:hasClassName "dust" ;
+    net:hasNaming "dust" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_free_f a net:Atom_Property_Net ;
+    :role_ARG3 net:atomProperty_travel_t2 ;
+    net:coverBaseNode :leaf_free-04_f ;
+    net:coverNode :leaf_free-04_f ;
+    net:hasNaming "free" ;
+    net:hasPropertyName "free" ;
+    net:hasPropertyName01 "freeing" ;
+    net:hasPropertyName10 "free-by" ;
+    net:hasPropertyName12 "free-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_travel-01_t2 .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_centaur_c2,
+        net:atomClass_cloud_c3,
+        net:atomClass_comet_c,
+        net:compositeClass_interplanetary-cloud_c3,
+        net:phenomena_conjunction-AND_a2 ;
+    :role_ARG2 net:atomClass_population_p,
+        net:compositeClass_other-population_p,
+        net:compositeClass_various-population_p ;
+    net:coverBaseNode :leaf_include-01_ii ;
+    net:coverNode :leaf_include-01_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2,
+        :leaf_population_p .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_other-population-travel-between_p a net:Composite_Class_Net ;
+    :role_mod net:atomClass_other_o,
+        net:atomClass_various_v ;
+    net:composeFrom net:atomClass_between_b2,
+        net:atomProperty_travel_t2,
+        net:compositeClass_other-population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_between_b2,
+        :leaf_other_o,
+        :leaf_population_p,
+        :leaf_travel-01_t2 ;
+    net:hasMotherClassNet net:compositeClass_other-population_p ;
+    net:hasNaming "other-population-travel-between" ;
+    net:hasRestriction net:restriction_travel-between_t2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:compositeClass_small-body_b a net:Composite_Class_Net ;
+    :role_mod net:atomClass_small_s ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_small_s ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b,
+        :leaf_small_s ;
+    net:hasMotherClassNet net:atomClass_body_b ;
+    net:hasNaming "small-body" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:compositeClass_various-population-travel-between_p a net:Composite_Class_Net ;
+    :role_mod net:atomClass_other_o,
+        net:atomClass_various_v ;
+    net:composeFrom net:atomClass_between_b2,
+        net:atomProperty_travel_t2,
+        net:compositeClass_various-population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_between_b2,
+        :leaf_population_p,
+        :leaf_travel-01_t2,
+        :leaf_various_v ;
+    net:hasMotherClassNet net:compositeClass_various-population_p ;
+    net:hasNaming "various-population-travel-between" ;
+    net:hasRestriction net:restriction_travel-between_t2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_interplanetary_ii2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_interplanetary_ii2 ;
+    net:coverBaseNode :leaf_interplanetary_ii2 ;
+    net:coverNode :leaf_interplanetary_ii2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "interplanetary" ;
+    net:hasMotherClassNet net:atomClass_interplanetary_ii2 ;
+    net:hasNaming "interplanetary" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:individual_other_o a net:Individual_Net ;
+    net:composeFrom net:atomClass_other_o ;
+    net:coverBaseNode :leaf_other_o ;
+    net:coverNode :leaf_other_o ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "other" ;
+    net:hasMotherClassNet net:atomClass_other_o ;
+    net:hasNaming "other" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:individual_small_s a net:Individual_Net ;
+    net:composeFrom net:atomClass_small_s ;
+    net:coverBaseNode :leaf_small_s ;
+    net:coverNode :leaf_small_s ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "small" ;
+    net:hasMotherClassNet net:atomClass_small_s ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:individual_this_t a net:Individual_Net ;
+    net:composeFrom net:atomClass_this_t ;
+    net:coverBaseNode :leaf_this_t ;
+    net:coverNode :leaf_this_t ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "this" ;
+    net:hasMotherClassNet net:atomClass_this_t ;
+    net:hasNaming "this" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:individual_various_v a net:Individual_Net ;
+    net:composeFrom net:atomClass_various_v ;
+    net:coverBaseNode :leaf_various_v ;
+    net:coverNode :leaf_various_v ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "various" ;
+    net:hasMotherClassNet net:atomClass_various_v ;
+    net:hasNaming "various" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_region_r,
+        net:compositeClass_this-region_r ;
+    :role_op2 net:atomProperty_travel_t2 ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b> a ns11:body ;
+    ns11:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#d> a ns11:dust ;
+    ns11:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#f> a ns3:free-04 ;
+    ns3:free-04.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii> a ns3:include-01 ;
+    ns3:include-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a2> ;
+    ns3:include-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#root01> a ns2:AMR ;
+    ns2:has-id "WikiAbstract-SolarSystem-16" ;
+    ns2:has-sentence "In addition to these two regions, various other small-body populations, including comets, centaurs and interplanetary dust clouds, freely travel between regions." ;
+    ns2:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_between rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:between ;
+    :label "between" .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:body ;
+    :label "body" .
+
+:concept_centaur rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:centaur ;
+    :label "centaur" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:cloud ;
+    :label "cloud" .
+
+:concept_comet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:comet ;
+    :label "comet" .
+
+:concept_dust rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:dust ;
+    :label "dust" .
+
+:concept_free-04 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:free-04 ;
+    :label "free-04" .
+
+:concept_include-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-01 ;
+    :label "include-01" .
+
+:concept_interplanetary rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:interplanetary ;
+    :label "interplanetary" .
+
+:concept_other rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:other ;
+    :label "other" .
+
+:concept_population rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:population ;
+    :label "population" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:small ;
+    :label "small" .
+
+:concept_this rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:this ;
+    :label "this" .
+
+:concept_travel-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:travel-01 ;
+    :label "travel-01" .
+
+:concept_various rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:various ;
+    :label "various" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_op3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b> ;
+    :label "b" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b2> ;
+    :label "b2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c2> ;
+    :label "c2" .
+
+:variable_c3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> ;
+    :label "c3" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#d> ;
+    :label "d" .
+
+:variable_f a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#f> ;
+    :label "f" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii> ;
+    :label "ii" .
+
+:variable_ii2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii2> ;
+    :label "ii2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    :label "p" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r> ;
+    :label "r" .
+
+:variable_r2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r2> ;
+    :label "r2" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> ;
+    :label "t2" .
+
+:variable_v a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#v> ;
+    :label "v" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:compositeClass_this-region_r a net:Composite_Class_Net ;
+    :role_mod net:atomClass_this_t ;
+    :role_quant net:value_2_blankNode ;
+    net:composeFrom net:atomClass_region_r,
+        net:atomClass_this_t ;
+    net:coverBaseNode :leaf_region_r ;
+    net:coverNode :leaf_region_r,
+        :leaf_this_t ;
+    net:hasMotherClassNet net:atomClass_region_r ;
+    net:hasNaming "this-region" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_comet_c ;
+    :role_op2 net:atomClass_centaur_c2 ;
+    :role_op3 net:atomClass_cloud_c3,
+        net:compositeClass_interplanetary-cloud_c3 ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#a2> a ns2:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c2> ;
+    ns11:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b2> a ns2:between ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c> a ns11:comet ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c2> a ns11:centaur ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii2> a ns11:interplanetary ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#o> a ns11:other ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r> a ns11:region ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t> ;
+    ns11:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#r2> a ns11:region ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#s> a ns11:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t> a ns11:this ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#v> a ns11:various ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:free-04 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:travel-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:body a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:centaur a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:cloud a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:comet a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:dust a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:interplanetary a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:other a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:population a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:small a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:this a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:various a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:between a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_region rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:region ;
+    :label "region" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_dust_d a :AMR_Leaf ;
+    :edge_d_c3 :leaf_cloud_c3 ;
+    :hasConcept :concept_dust ;
+    :hasVariable :variable_d .
+
+:leaf_free-04_f a :AMR_Leaf ;
+    :edge_f_t2 :leaf_travel-01_t2 ;
+    :hasConcept :concept_free-04 ;
+    :hasVariable :variable_f .
+
+:leaf_include-01_ii a :AMR_Leaf ;
+    :edge_ii_a2 :leaf_and_a2 ;
+    :edge_ii_p :leaf_population_p ;
+    :hasConcept :concept_include-01 ;
+    :hasVariable :variable_ii .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_2 a :AMR_Value ;
+    rdfs:label "2" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_body_b a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_small_s ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b ;
+    net:hasClassName "body" ;
+    net:hasNaming "body" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_centaur_c2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_centaur_c2 ;
+    net:coverNode :leaf_centaur_c2 ;
+    net:hasClassName "centaur" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "centaur" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_comet_c a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_comet_c ;
+    net:coverNode :leaf_comet_c ;
+    net:hasClassName "comet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "comet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_region_r2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_region_r2 ;
+    net:coverNode :leaf_region_r2 ;
+    net:hasClassName "region" ;
+    net:hasNaming "region" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomProperty_between_b2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_op1 net:atomClass_region_r2 ;
+    net:coverBaseNode :leaf_between_b2 ;
+    net:coverNode :leaf_between_b2 ;
+    net:hasNaming "between" ;
+    net:hasPropertyName "between" ;
+    net:hasPropertyName01 "betweening" ;
+    net:hasPropertyName10 "between-by" ;
+    net:hasPropertyName12 "between-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_region_r2 .
+
+net:compositeClass_interplanetary-cloud_c3 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_interplanetary_ii2 ;
+    net:composeFrom net:atomClass_cloud_c3,
+        net:atomClass_interplanetary_ii2 ;
+    net:coverBaseNode :leaf_cloud_c3 ;
+    net:coverNode :leaf_cloud_c3,
+        :leaf_interplanetary_ii2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_cloud_c3 ;
+    net:hasNaming "interplanetary-cloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:restriction_travel-between_t2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_between_b2,
+        net:atomProperty_travel_t2 ;
+    net:coverBaseNode :leaf_travel-01_t2 ;
+    net:coverNode :leaf_between_b2,
+        :leaf_travel-01_t2 ;
+    net:hasNaming "travel-between" ;
+    net:hasRestrictionNetValue net:atomClass_between_b2 ;
+    net:hasRestrictionOnProperty net:atomProperty_travel_t2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:value_2_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_2 ;
+    net:hasNaming "2" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" ;
+    net:hasValueLabel "2" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#c3> a ns11:cloud ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#ii2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#t2> a ns3:travel-01 ;
+    ns3:travel-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> ;
+    ns3:travel-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#b2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:region a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_r :leaf_region_r ;
+    :edge_a_t2 :leaf_travel-01_t2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_centaur_c2 a :AMR_Leaf ;
+    :hasConcept :concept_centaur ;
+    :hasVariable :variable_c2 .
+
+:leaf_comet_c a :AMR_Leaf ;
+    :hasConcept :concept_comet ;
+    :hasVariable :variable_c .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_region_r a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_this_t ;
+    :role_quant net:value_2_blankNode ;
+    net:coverBaseNode :leaf_region_r ;
+    net:coverNode :leaf_region_r ;
+    net:hasClassName "region" ;
+    net:hasNaming "region" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#p> a ns11:population ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#o>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-16#v> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_c :leaf_comet_c ;
+    :edge_a2_c2 :leaf_centaur_c2 ;
+    :edge_a2_c3 :leaf_cloud_c3 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_p :leaf_population_p ;
+    :edge_b_s :leaf_small_s ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+:leaf_region_r2 a :AMR_Leaf ;
+    :hasConcept :concept_region ;
+    :hasVariable :variable_r2 .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomClass_cloud_c3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_interplanetary_ii2 ;
+    net:coverBaseNode :leaf_cloud_c3 ;
+    net:coverNode :leaf_cloud_c3 ;
+    net:hasClassName "cloud" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "cloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:compositeClass_other-population_p a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_other_o,
+        net:atomClass_various_v ;
+    net:composeFrom net:atomClass_other_o,
+        net:atomClass_population_p ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_other_o,
+        :leaf_population_p ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_population_p ;
+    net:hasNaming "other-population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:compositeClass_various-population_p a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_other_o,
+        net:atomClass_various_v ;
+    net:composeFrom net:atomClass_population_p,
+        net:atomClass_various_v ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p,
+        :leaf_various_v ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_population_p ;
+    net:hasNaming "various-population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_region_r a :AMR_Leaf ;
+    :edge_r_quant_2 :value_2 ;
+    :edge_r_t :leaf_this_t ;
+    :hasConcept :concept_region ;
+    :hasVariable :variable_r .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_between_b2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_op1 net:atomClass_region_r2 ;
+    net:composeFrom net:atomProperty_between_b2 ;
+    net:coverBaseNode :leaf_between_b2 ;
+    net:coverNode :leaf_between_b2 ;
+    net:hasClassName "between" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "between" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_interplanetary_ii2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_interplanetary_ii2 ;
+    net:coverNode :leaf_interplanetary_ii2 ;
+    net:hasClassName "interplanetary" ;
+    net:hasNaming "interplanetary" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_small_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_small_s ;
+    net:coverNode :leaf_small_s ;
+    net:hasClassName "small" ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_this_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_this_t ;
+    net:coverNode :leaf_this_t ;
+    net:hasClassName "this" ;
+    net:hasNaming "this" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_cloud_c3 a :AMR_Leaf ;
+    :edge_c3_ii2 :leaf_interplanetary_ii2 ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c3 .
+
+:leaf_interplanetary_ii2 a :AMR_Leaf ;
+    :hasConcept :concept_interplanetary ;
+    :hasVariable :variable_ii2 .
+
+:leaf_small_s a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s .
+
+:leaf_this_t a :AMR_Leaf ;
+    :hasConcept :concept_this ;
+    :hasVariable :variable_t .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_population_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_other_o,
+        net:atomClass_various_v ;
+    net:coverBaseNode :leaf_population_p ;
+    net:coverNode :leaf_population_p ;
+    net:hasClassName "population" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "population" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomProperty_travel_t2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_population_p,
+        net:compositeClass_other-population_p,
+        net:compositeClass_various-population_p ;
+    :role_ARG1 net:atomClass_between_b2,
+        net:atomProperty_between_b2 ;
+    net:coverBaseNode :leaf_travel-01_t2 ;
+    net:coverNode :leaf_travel-01_t2 ;
+    net:hasNaming "travel" ;
+    net:hasPropertyName "travel" ;
+    net:hasPropertyName01 "traveling" ;
+    net:hasPropertyName10 "travel-by" ;
+    net:hasPropertyName12 "travel-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_between_b2,
+        :leaf_population_p .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_other_o a :AMR_Leaf ;
+    :hasConcept :concept_other ;
+    :hasVariable :variable_o .
+
+:leaf_various_v a :AMR_Leaf ;
+    :hasConcept :concept_various ;
+    :hasVariable :variable_v .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_other_o a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_other_o ;
+    net:coverNode :leaf_other_o ;
+    net:hasClassName "other" ;
+    net:hasNaming "other" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:atomClass_various_v a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_various_v ;
+    net:coverNode :leaf_various_v ;
+    net:hasClassName "various" ;
+    net:hasNaming "various" ;
+    net:hasStructure "WikiAbstract-SolarSystem-16" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_between_b2 a :AMR_Leaf ;
+    :edge_b2_r2 :leaf_region_r2 ;
+    :hasConcept :concept_between ;
+    :hasVariable :variable_b2 .
+
+:leaf_travel-01_t2 a :AMR_Leaf ;
+    :edge_t2_b2 :leaf_between_b2 ;
+    :edge_t2_p :leaf_population_p ;
+    :hasConcept :concept_travel-01 ;
+    :hasVariable :variable_t2 .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+:leaf_population_p a :AMR_Leaf ;
+    :edge_p_o :leaf_other_o ;
+    :edge_p_v :leaf_various_v ;
+    :hasConcept :concept_population ;
+    :hasVariable :variable_p .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..e9f5ba471f8e05798283306c7cba162abcb3cf46
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-16/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,128 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#centaur> a owl:Class ;
+    rdfs:label "centaur" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#comet> a owl:Class ;
+    rdfs:label "comet" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#dust> a owl:Class ;
+    rdfs:label "dust" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#free> a owl:ObjectProperty ;
+    rdfs:label "free" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#interplanetary-cloud> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#other-population-travel-between> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#travel> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#between> ],
+        <https://tenet.tetras-libre.fr/extract-result#other-population> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#small-body> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#body> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#this-region> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#region> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#various-population-travel-between> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#travel> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#between> ],
+        <https://tenet.tetras-libre.fr/extract-result#various-population> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
+    rdfs:label "body" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#cloud> a owl:Class ;
+    rdfs:label "cloud" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#interplanetary> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#interplanetary> ;
+    rdfs:label "interplanetary" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#other> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#other> ;
+    rdfs:label "other" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#other-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#region> a owl:Class ;
+    rdfs:label "region" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#small> ;
+    rdfs:label "small" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#this> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#this> ;
+    rdfs:label "this" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#various> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#various> ;
+    rdfs:label "various" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#various-population> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#population> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#between> a owl:Class ;
+    rdfs:label "between" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#population> a owl:Class ;
+    rdfs:label "population" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
+<https://tenet.tetras-libre.fr/extract-result#travel> a owl:ObjectProperty ;
+    rdfs:label "travel" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-16" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..2f03cc8edaf6ab36bccdb8751a3e2813a097b57d
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,908 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii2> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p3> a ns11:possible-01 ;
+    ns11:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-17" ;
+    ns3:has-sentence "Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed \"moons\" after the Moon." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#t> a ns11:term-01 ;
+    ns11:term-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:term-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns11:include-91.ARG1 a ns11:FrameRole .
+
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:possible-01.ARG1 a ns11:FrameRole .
+
+ns11:term-01.ARG1 a ns11:FrameRole .
+
+ns11:term-01.ARG2 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> a ns3:after ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> a ns2:dwarf .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> a ns2:large .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> a ns3:most ;
+    ns2:quant "6" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> a ns2:many .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> a ns3:more .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> a ns2:small .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> a ns2:usual .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#moon> a ns3:NamedEntity .
+
+ns11:natural-03 a ns3:Frame .
+
+ns11:orbit-01 a ns3:Frame .
+
+ns11:possible-01 a ns3:Frame .
+
+ns11:term-01 a ns3:Frame .
+
+ns2:dwarf a ns3:Concept .
+
+ns2:large a ns3:Concept .
+
+ns2:many a ns3:Concept .
+
+ns2:satellite a ns3:Concept .
+
+ns2:small a ns3:Concept .
+
+ns2:usual a ns3:Concept .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:after a ns3:Concept .
+
+ns3:and a ns3:Concept .
+
+ns3:more a ns3:Concept .
+
+ns3:most a ns3:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> a ns2:body ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> a ns2:body .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> a <http://amr.isi.edu/entity-types#moon> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity .
+
+ns11:have-degree-91 a ns3:Frame .
+
+ns11:include-91 a ns3:Frame .
+
+ns2:body a ns3:Concept .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:quant "6" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> a ns2:satellite .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..fe0d5f6fce427b9b98bbb15923e007d7ca966227
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1870 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns11:include-91.ARG1 a ns11:FrameRole .
+
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:possible-01.ARG1 a ns11:FrameRole .
+
+ns11:term-01.ARG1 a ns11:FrameRole .
+
+ns11:term-01.ARG2 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_b a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a2_p a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_m a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_m3 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_h2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii2_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_ii_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m2_quant_6 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_n_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_d a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p3_h a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_quant_6 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_a a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_t_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_t_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t_u a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-17 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#root01> ;
+    :hasRootLeaf :leaf_orbit-01_o ;
+    :hasSentenceID "WikiAbstract-SolarSystem-17" ;
+    :hasSentenceStatement "Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed \"moons\" after the Moon." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#after> a owl:ObjectProperty ;
+    rdfs:label "after" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#body-include-body> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#body> ],
+        <https://tenet.tetras-libre.fr/extract-result#body> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#many> a owl:Class ;
+    rdfs:label "many" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#moon> a owl:Class ;
+    rdfs:label "moon" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#natural> a owl:ObjectProperty ;
+    rdfs:label "natural" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet-include-dwarf-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#dwarf-planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite-orbit-body> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#orbit> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#body> ],
+        <https://tenet.tetras-libre.fr/extract-result#satellite> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite-orbit-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#orbit> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#satellite> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#term> a owl:ObjectProperty ;
+    rdfs:label "term" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#usual> a owl:Class ;
+    rdfs:label "usual" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_after_a a net:Atom_Property_Net ;
+    :role_op1 net:atomClass_moon_m ;
+    net:coverBaseNode :leaf_after_a ;
+    net:coverNode :leaf_after_a ;
+    net:hasNaming "after" ;
+    net:hasPropertyName "after" ;
+    net:hasPropertyName01 "aftering" ;
+    net:hasPropertyName10 "after-by" ;
+    net:hasPropertyName12 "after-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_moon_m .
+
+net:atomProperty_natural_n a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s ;
+    net:coverBaseNode :leaf_natural-03_n ;
+    net:coverNode :leaf_natural-03_n ;
+    net:hasNaming "natural" ;
+    net:hasPropertyName "natural" ;
+    net:hasPropertyName01 "naturaling" ;
+    net:hasPropertyName10 "natural-by" ;
+    net:hasPropertyName12 "natural-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_satellite_s .
+
+net:atomProperty_term_t a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s ;
+    :role_ARG2 net:atomClass_moon_m ;
+    :role_mod net:atomClass_usual_u ;
+    net:coverBaseNode :leaf_term-01_t ;
+    net:coverNode :leaf_term-01_t ;
+    net:hasNaming "term" ;
+    net:hasPropertyName "term" ;
+    net:hasPropertyName01 "terming" ;
+    net:hasPropertyName10 "term-by" ;
+    net:hasPropertyName12 "term-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_moon_m,
+        :leaf_satellite_s,
+        :leaf_usual_u .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_body-include-body_b a net:Composite_Class_Net ;
+    :role_quant net:atomClass_many_m3 ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_body_b2,
+        net:atomProperty_include_ii2 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b,
+        :leaf_body_b2,
+        :leaf_include-91_ii2 ;
+    net:hasMotherClassNet net:atomClass_body_b ;
+    net:hasNaming "body-include-body" ;
+    net:hasRestriction net:restriction_include-body_ii2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:compositeClass_planet-include-dwarf-planet_p a net:Composite_Class_Net ;
+    :role_quant net:value_6_blankNode ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomProperty_include_ii,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_include-91_ii,
+        :leaf_planet_p,
+        :leaf_planet_p2 ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "planet-include-dwarf-planet" ;
+    net:hasRestriction net:restriction_include-dwarf-planet_ii ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:compositeClass_satellite-orbit-body_s a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_satellite_s,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_satellite_s ;
+    net:coverNode :leaf_body_b,
+        :leaf_orbit-01_o,
+        :leaf_satellite_s ;
+    net:hasMotherClassNet net:atomClass_satellite_s ;
+    net:hasNaming "satellite-orbit-body" ;
+    net:hasRestriction net:restriction_orbit-body_o ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:compositeClass_satellite-orbit-planet_s a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomClass_satellite_s,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_satellite_s ;
+    net:coverNode :leaf_orbit-01_o,
+        :leaf_planet_p,
+        :leaf_satellite_s ;
+    net:hasMotherClassNet net:atomClass_satellite_s ;
+    net:hasNaming "satellite-orbit-planet" ;
+    net:hasRestriction net:restriction_orbit-planet_o ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_dwarf_d a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_body_b2 ;
+    :role_ARG2 net:atomClass_small_s2 ;
+    :role_ARG3 net:atomProperty_more_m4 ;
+    :role_ARG4 net:atomClass_planet_p ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:phenomena_possible-modality_p3 a net:Modality_Phenomena_Net,
+        net:Phenomena_Net ;
+    :role_ARG1 net:phenomena_degree_h ;
+    net:coverBaseNode :leaf_possible-01_p3 ;
+    net:coverNode :leaf_possible-01_p3 ;
+    net:hasNaming "possible-modality" ;
+    net:hasPhenomenaRef "possible-01" ;
+    net:hasPhenomenaType :phenomena_modality_possible ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii2> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p3> a ns11:possible-01 ;
+    ns11:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-17" ;
+    ns3:has-sentence "Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed \"moons\" after the Moon." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#t> a ns11:term-01 ;
+    ns11:term-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:term-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_after rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:after ;
+    :label "after" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_many rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:many ;
+    :label "many" .
+
+:concept_moon rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#moon> ;
+    :label "moon" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_term-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:term-01 ;
+    :label "term-01" .
+
+:concept_usual rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:usual ;
+    :label "usual" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
+    :label "b" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    :label "b2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> ;
+    :label "d" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii> ;
+    :label "ii" .
+
+:variable_ii2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii2> ;
+    :label "ii2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    :label "p2" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p3> ;
+    :label "p3" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> ;
+    :label "s2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#t> ;
+    :label "t" .
+
+:variable_u a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> ;
+    :label "u" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:atomClass_small_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s2 ;
+    net:coverNode :leaf_small_s2 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:atomClass_usual_u a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_usual_u ;
+    net:coverNode :leaf_usual_u ;
+    net:hasClassName "usual" ;
+    net:hasNaming "usual" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:atomProperty_more_m4 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m2 a net:Atom_Property_Net ;
+    :role_quant net:value_6_blankNode ;
+    net:coverBaseNode :leaf_most_m2 ;
+    net:coverNode :leaf_most_m2 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :value_6 .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_planet_p ;
+    :role_op2 net:atomClass_body_b ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_most_m2 ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:restriction_include-body_ii2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_body_b2,
+        net:atomProperty_include_ii2 ;
+    net:coverBaseNode :leaf_include-91_ii2 ;
+    net:coverNode :leaf_body_b2,
+        :leaf_include-91_ii2 ;
+    net:hasNaming "include-body" ;
+    net:hasRestrictionNetValue net:atomClass_body_b2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:restriction_include-dwarf-planet_ii a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_include_ii,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_include-91_ii,
+        :leaf_planet_p2 ;
+    net:hasNaming "include-dwarf-planet" ;
+    net:hasRestrictionNetValue net:compositeClass_dwarf-planet_p2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:restriction_orbit-body_o a net:Restriction_Net ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_body_b,
+        :leaf_orbit-01_o ;
+    net:hasNaming "orbit-body" ;
+    net:hasRestrictionNetValue net:atomClass_body_b ;
+    net:hasRestrictionOnProperty net:atomProperty_orbit_o ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:restriction_orbit-planet_o a net:Restriction_Net ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o,
+        :leaf_planet_p ;
+    net:hasNaming "orbit-planet" ;
+    net:hasRestrictionNetValue net:atomClass_planet_p ;
+    net:hasRestrictionOnProperty net:atomProperty_orbit_o ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> a ns3:after ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> a ns2:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> a ns3:most ;
+    ns2:quant "6" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> a ns2:many ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> a ns2:usual ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#moon> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:natural-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:possible-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:term-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:dwarf a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:many a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:usual a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:after a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:body ;
+    :label "body" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:include-91 ;
+    :label "include-91" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_b2 :leaf_body_b2 ;
+    :edge_h2_m4 :leaf_more_m4 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s :leaf_satellite_s ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:leaf_possible-01_p3 a :AMR_Leaf ;
+    :edge_p3_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p3 .
+
+:leaf_term-01_t a :AMR_Leaf ;
+    :edge_t_a :leaf_after_a ;
+    :edge_t_m :leaf_moon_m ;
+    :edge_t_s :leaf_satellite_s ;
+    :edge_t_u :leaf_usual_u ;
+    :hasConcept :concept_term-01 ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite> a owl:Class ;
+    rdfs:label "satellite" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_many_m3 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_many_m3 ;
+    net:coverNode :leaf_many_m3 ;
+    net:hasClassName "many" ;
+    net:hasNaming "many" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:atomClass_moon_m a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_moon_m ;
+    net:coverNode :leaf_moon_m ;
+    net:hasClassName "moon" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "moon" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> a ns2:body ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> a ns2:body ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> a <http://amr.isi.edu/entity-types#moon> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:include-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:body a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_after_a a :AMR_Leaf ;
+    :edge_a_m :leaf_moon_m ;
+    :hasConcept :concept_after ;
+    :hasVariable :variable_a .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_most_m2 ;
+    :edge_h_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_many_m3 a :AMR_Leaf ;
+    :hasConcept :concept_many ;
+    :hasVariable :variable_m3 .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_most_m2 a :AMR_Leaf ;
+    :edge_m2_quant_6 :value_6 ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m2 .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
+    rdfs:label "body" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-17" .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_planet_p ;
+    :role_ARG2 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_planet_p,
+        :leaf_planet_p2 .
+
+net:atomProperty_include_ii2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_body_b ;
+    :role_ARG2 net:atomClass_body_b2 ;
+    net:coverBaseNode :leaf_include-91_ii2 ;
+    net:coverNode :leaf_include-91_ii2 ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_body_b,
+        :leaf_body_b2 .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:value_6_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_6 ;
+    net:hasNaming "6" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:hasValueLabel "6" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:quant "6" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_body_b ;
+    :edge_a2_p :leaf_planet_p ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_usual_u a :AMR_Leaf ;
+    :hasConcept :concept_usual ;
+    :hasVariable :variable_u .
+
+:value_6 a :AMR_Value ;
+    rdfs:label "6" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_p :leaf_planet_p ;
+    :edge_ii_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_include-91_ii2 a :AMR_Leaf ;
+    :edge_ii2_b :leaf_body_b ;
+    :edge_ii2_b2 :leaf_body_b2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii2 .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:atomClass_body_b2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_body_b2 ;
+    net:coverNode :leaf_body_b2 ;
+    net:hasClassName "body" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "body" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:atomClass_dwarf_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:compositeClass_dwarf-planet_p2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:composeFrom net:atomClass_dwarf_d,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_planet_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "dwarf-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_moon_m a :AMR_Leaf ;
+    :hasConcept :concept_moon ;
+    :hasVariable :variable_m .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomProperty_orbit_o a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_satellite_s ;
+    :role_ARG1 net:atomClass_body_b,
+        net:atomClass_planet_p,
+        net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2,
+        :leaf_satellite_s .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_body_b2 a :AMR_Leaf ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b2 .
+
+net:atomClass_satellite_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_satellite_s ;
+    net:coverNode :leaf_satellite_s ;
+    net:hasClassName "satellite" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "satellite" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomClass_body_b a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_many_m3 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b ;
+    net:hasClassName "body" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "body" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_m3 :leaf_many_m3 ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+:leaf_orbit-01_o a :AMR_Leaf ;
+    :edge_o_a2 :leaf_and_a2 ;
+    :edge_o_s :leaf_satellite_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:value_6_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_quant_6 :value_6 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:leaf_satellite_s a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..15698bfdd2c562202d5e4abd200407e18f712d40
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1351 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns11:include-91.ARG1 a ns11:FrameRole .
+
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:possible-01.ARG1 a ns11:FrameRole .
+
+ns11:term-01.ARG1 a ns11:FrameRole .
+
+ns11:term-01.ARG2 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_b a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a2_p a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_m a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_m3 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_h2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii2_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_ii_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m2_quant_6 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_n_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_d a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p3_h a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_quant_6 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_a a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_t_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_t_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t_u a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_b2 :leaf_body_b2 ;
+    :edge_h2_m4 :leaf_more_m4 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_p :leaf_planet_p ;
+    :edge_ii_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_include-91_ii2 a :AMR_Leaf ;
+    :edge_ii2_b :leaf_body_b ;
+    :edge_ii2_b2 :leaf_body_b2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii2 .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s :leaf_satellite_s ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:leaf_possible-01_p3 a :AMR_Leaf ;
+    :edge_p3_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p3 .
+
+:leaf_term-01_t a :AMR_Leaf ;
+    :edge_t_a :leaf_after_a ;
+    :edge_t_m :leaf_moon_m ;
+    :edge_t_s :leaf_satellite_s ;
+    :edge_t_u :leaf_usual_u ;
+    :hasConcept :concept_term-01 ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-17 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#root01> ;
+    :hasRootLeaf :leaf_orbit-01_o ;
+    :hasSentenceID "WikiAbstract-SolarSystem-17" ;
+    :hasSentenceStatement "Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed \"moons\" after the Moon." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii2> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p3> a ns11:possible-01 ;
+    ns11:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-17" ;
+    ns3:has-sentence "Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed \"moons\" after the Moon." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#t> a ns11:term-01 ;
+    ns11:term-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:term-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_after rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:after ;
+    :label "after" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_many rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:many ;
+    :label "many" .
+
+:concept_moon rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#moon> ;
+    :label "moon" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_term-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:term-01 ;
+    :label "term-01" .
+
+:concept_usual rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:usual ;
+    :label "usual" .
+
+:leaf_after_a a :AMR_Leaf ;
+    :edge_a_m :leaf_moon_m ;
+    :hasConcept :concept_after ;
+    :hasVariable :variable_a .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_body_b ;
+    :edge_a2_p :leaf_planet_p ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_most_m2 ;
+    :edge_h_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_many_m3 a :AMR_Leaf ;
+    :hasConcept :concept_many ;
+    :hasVariable :variable_m3 .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_most_m2 a :AMR_Leaf ;
+    :edge_m2_quant_6 :value_6 ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m2 .
+
+:leaf_orbit-01_o a :AMR_Leaf ;
+    :edge_o_a2 :leaf_and_a2 ;
+    :edge_o_s :leaf_satellite_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:leaf_usual_u a :AMR_Leaf ;
+    :hasConcept :concept_usual ;
+    :hasVariable :variable_u .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
+    :label "b" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    :label "b2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> ;
+    :label "d" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii> ;
+    :label "ii" .
+
+:variable_ii2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii2> ;
+    :label "ii2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    :label "p2" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p3> ;
+    :label "p3" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> ;
+    :label "s2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#t> ;
+    :label "t" .
+
+:variable_u a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> ;
+    :label "u" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> a ns3:after ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> a ns2:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> a ns3:most ;
+    ns2:quant "6" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> a ns2:many ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> a ns2:usual ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#moon> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:natural-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:possible-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:term-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:dwarf a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:many a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:usual a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:after a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:body ;
+    :label "body" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:include-91 ;
+    :label "include-91" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_m3 :leaf_many_m3 ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+:leaf_body_b2 a :AMR_Leaf ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b2 .
+
+:leaf_moon_m a :AMR_Leaf ;
+    :hasConcept :concept_moon ;
+    :hasVariable :variable_m .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:value_6 a :AMR_Value ;
+    rdfs:label "6" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> a ns2:body ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> a ns2:body ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> a <http://amr.isi.edu/entity-types#moon> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:include-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:body a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_quant_6 :value_6 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_satellite_s a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:quant "6" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..19087913c8d75a420dbf26c77fc8789256ade6c7
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1756 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns11:include-91.ARG1 a ns11:FrameRole .
+
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:possible-01.ARG1 a ns11:FrameRole .
+
+ns11:term-01.ARG1 a ns11:FrameRole .
+
+ns11:term-01.ARG2 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_b a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a2_p a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_m a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_m3 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_h2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii2_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii2_b2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_ii_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m2_quant_6 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_n_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_d a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p3_h a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_quant_6 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_a a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_t_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_t_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t_u a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-17 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#root01> ;
+    :hasRootLeaf :leaf_orbit-01_o ;
+    :hasSentenceID "WikiAbstract-SolarSystem-17" ;
+    :hasSentenceStatement "Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed \"moons\" after the Moon." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_after_a a net:Atom_Property_Net ;
+    :role_op1 net:atomClass_moon_m ;
+    net:coverBaseNode :leaf_after_a ;
+    net:coverNode :leaf_after_a ;
+    net:hasNaming "after" ;
+    net:hasPropertyName "after" ;
+    net:hasPropertyName01 "aftering" ;
+    net:hasPropertyName10 "after-by" ;
+    net:hasPropertyName12 "after-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_moon_m .
+
+net:atomProperty_natural_n a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s ;
+    net:coverBaseNode :leaf_natural-03_n ;
+    net:coverNode :leaf_natural-03_n ;
+    net:hasNaming "natural" ;
+    net:hasPropertyName "natural" ;
+    net:hasPropertyName01 "naturaling" ;
+    net:hasPropertyName10 "natural-by" ;
+    net:hasPropertyName12 "natural-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_satellite_s .
+
+net:atomProperty_term_t a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s ;
+    :role_ARG2 net:atomClass_moon_m ;
+    :role_mod net:atomClass_usual_u ;
+    net:coverBaseNode :leaf_term-01_t ;
+    net:coverNode :leaf_term-01_t ;
+    net:hasNaming "term" ;
+    net:hasPropertyName "term" ;
+    net:hasPropertyName01 "terming" ;
+    net:hasPropertyName10 "term-by" ;
+    net:hasPropertyName12 "term-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_moon_m,
+        :leaf_satellite_s,
+        :leaf_usual_u .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_body-include-body_b a net:Composite_Class_Net ;
+    :role_quant net:atomClass_many_m3 ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_body_b2,
+        net:atomProperty_include_ii2 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b,
+        :leaf_body_b2,
+        :leaf_include-91_ii2 ;
+    net:hasMotherClassNet net:atomClass_body_b ;
+    net:hasNaming "body-include-body" ;
+    net:hasRestriction net:restriction_include-body_ii2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:compositeClass_planet-include-dwarf-planet_p a net:Composite_Class_Net ;
+    :role_quant net:value_6_blankNode ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomProperty_include_ii,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_include-91_ii,
+        :leaf_planet_p,
+        :leaf_planet_p2 ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "planet-include-dwarf-planet" ;
+    net:hasRestriction net:restriction_include-dwarf-planet_ii ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:compositeClass_satellite-orbit-body_s a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_satellite_s,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_satellite_s ;
+    net:coverNode :leaf_body_b,
+        :leaf_orbit-01_o,
+        :leaf_satellite_s ;
+    net:hasMotherClassNet net:atomClass_satellite_s ;
+    net:hasNaming "satellite-orbit-body" ;
+    net:hasRestriction net:restriction_orbit-body_o ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:compositeClass_satellite-orbit-planet_s a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomClass_satellite_s,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_satellite_s ;
+    net:coverNode :leaf_orbit-01_o,
+        :leaf_planet_p,
+        :leaf_satellite_s ;
+    net:hasMotherClassNet net:atomClass_satellite_s ;
+    net:hasNaming "satellite-orbit-planet" ;
+    net:hasRestriction net:restriction_orbit-planet_o ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_dwarf_d a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_body_b2 ;
+    :role_ARG2 net:atomClass_small_s2 ;
+    :role_ARG3 net:atomProperty_more_m4 ;
+    :role_ARG4 net:atomClass_planet_p ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:phenomena_possible-modality_p3 a net:Modality_Phenomena_Net,
+        net:Phenomena_Net ;
+    :role_ARG1 net:phenomena_degree_h ;
+    net:coverBaseNode :leaf_possible-01_p3 ;
+    net:coverNode :leaf_possible-01_p3 ;
+    net:hasNaming "possible-modality" ;
+    net:hasPhenomenaRef "possible-01" ;
+    net:hasPhenomenaType :phenomena_modality_possible ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii2> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p3> a ns11:possible-01 ;
+    ns11:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-17" ;
+    ns3:has-sentence "Six of the planets, the six largest possible dwarf planets, and many of the smaller bodies are orbited by natural satellites, usually termed \"moons\" after the Moon." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#t> a ns11:term-01 ;
+    ns11:term-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:term-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_after rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:after ;
+    :label "after" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:dwarf ;
+    :label "dwarf" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_many rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:many ;
+    :label "many" .
+
+:concept_moon rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#moon> ;
+    :label "moon" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_term-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:term-01 ;
+    :label "term-01" .
+
+:concept_usual rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:usual ;
+    :label "usual" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
+    :label "b" .
+
+:variable_b2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> ;
+    :label "b2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> ;
+    :label "d" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii> ;
+    :label "ii" .
+
+:variable_ii2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#ii2> ;
+    :label "ii2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    :label "p2" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p3> ;
+    :label "p3" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> ;
+    :label "s2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#t> ;
+    :label "t" .
+
+:variable_u a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> ;
+    :label "u" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:atomClass_small_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s2 ;
+    net:coverNode :leaf_small_s2 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:atomClass_usual_u a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_usual_u ;
+    net:coverNode :leaf_usual_u ;
+    net:hasClassName "usual" ;
+    net:hasNaming "usual" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:atomProperty_more_m4 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m2 a net:Atom_Property_Net ;
+    :role_quant net:value_6_blankNode ;
+    net:coverBaseNode :leaf_most_m2 ;
+    net:coverNode :leaf_most_m2 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :value_6 .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_planet_p ;
+    :role_op2 net:atomClass_body_b ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_most_m2 ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:restriction_include-body_ii2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_body_b2,
+        net:atomProperty_include_ii2 ;
+    net:coverBaseNode :leaf_include-91_ii2 ;
+    net:coverNode :leaf_body_b2,
+        :leaf_include-91_ii2 ;
+    net:hasNaming "include-body" ;
+    net:hasRestrictionNetValue net:atomClass_body_b2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:restriction_include-dwarf-planet_ii a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_include_ii,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_include-91_ii,
+        :leaf_planet_p2 ;
+    net:hasNaming "include-dwarf-planet" ;
+    net:hasRestrictionNetValue net:compositeClass_dwarf-planet_p2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:restriction_orbit-body_o a net:Restriction_Net ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_body_b,
+        :leaf_orbit-01_o ;
+    net:hasNaming "orbit-body" ;
+    net:hasRestrictionNetValue net:atomClass_body_b ;
+    net:hasRestrictionOnProperty net:atomProperty_orbit_o ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:restriction_orbit-planet_o a net:Restriction_Net ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o,
+        :leaf_planet_p ;
+    net:hasNaming "orbit-planet" ;
+    net:hasRestrictionNetValue net:atomClass_planet_p ;
+    net:hasRestrictionOnProperty net:atomProperty_orbit_o ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a> a ns3:after ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> a ns2:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m2> a ns3:most ;
+    ns2:quant "6" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> a ns2:many ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m4> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#o> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s2> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#u> a ns2:usual ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#moon> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:natural-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:possible-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:term-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:dwarf a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:many a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:usual a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:after a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:body ;
+    :label "body" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:include-91 ;
+    :label "include-91" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_b2 :leaf_body_b2 ;
+    :edge_h2_m4 :leaf_more_m4 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s :leaf_satellite_s ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:leaf_possible-01_p3 a :AMR_Leaf ;
+    :edge_p3_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p3 .
+
+:leaf_term-01_t a :AMR_Leaf ;
+    :edge_t_a :leaf_after_a ;
+    :edge_t_m :leaf_moon_m ;
+    :edge_t_s :leaf_satellite_s ;
+    :edge_t_u :leaf_usual_u ;
+    :hasConcept :concept_term-01 ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_many_m3 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_many_m3 ;
+    net:coverNode :leaf_many_m3 ;
+    net:hasClassName "many" ;
+    net:hasNaming "many" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:atomClass_moon_m a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_moon_m ;
+    net:coverNode :leaf_moon_m ;
+    net:hasClassName "moon" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "moon" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b> a ns2:body ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#b2> a ns2:body ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#m> a <http://amr.isi.edu/entity-types#moon> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:include-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:body a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_after_a a :AMR_Leaf ;
+    :edge_a_m :leaf_moon_m ;
+    :hasConcept :concept_after ;
+    :hasVariable :variable_a .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_most_m2 ;
+    :edge_h_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_many_m3 a :AMR_Leaf ;
+    :hasConcept :concept_many ;
+    :hasVariable :variable_m3 .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_most_m2 a :AMR_Leaf ;
+    :edge_m2_quant_6 :value_6 ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m2 .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_planet_p ;
+    :role_ARG2 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_planet_p,
+        :leaf_planet_p2 .
+
+net:atomProperty_include_ii2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_body_b ;
+    :role_ARG2 net:atomClass_body_b2 ;
+    net:coverBaseNode :leaf_include-91_ii2 ;
+    net:coverNode :leaf_include-91_ii2 ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_body_b,
+        :leaf_body_b2 .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:value_6_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_6 ;
+    net:hasNaming "6" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:hasValueLabel "6" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:quant "6" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-17#s> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_body_b ;
+    :edge_a2_p :leaf_planet_p ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_usual_u a :AMR_Leaf ;
+    :hasConcept :concept_usual ;
+    :hasVariable :variable_u .
+
+:value_6 a :AMR_Value ;
+    rdfs:label "6" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_p :leaf_planet_p ;
+    :edge_ii_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_include-91_ii2 a :AMR_Leaf ;
+    :edge_ii2_b :leaf_body_b ;
+    :edge_ii2_b2 :leaf_body_b2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii2 .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:atomClass_body_b2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_body_b2 ;
+    net:coverNode :leaf_body_b2 ;
+    net:hasClassName "body" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "body" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:atomClass_dwarf_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d ;
+    net:coverNode :leaf_dwarf_d ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:compositeClass_dwarf-planet_p2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d ;
+    net:composeFrom net:atomClass_dwarf_d,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_dwarf_d,
+        :leaf_planet_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "dwarf-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_moon_m a :AMR_Leaf ;
+    :hasConcept :concept_moon ;
+    :hasVariable :variable_m .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomProperty_orbit_o a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_satellite_s ;
+    :role_ARG1 net:atomClass_body_b,
+        net:atomClass_planet_p,
+        net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2,
+        :leaf_satellite_s .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_body_b2 a :AMR_Leaf ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b2 .
+
+net:atomClass_satellite_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_satellite_s ;
+    net:coverNode :leaf_satellite_s ;
+    net:hasClassName "satellite" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "satellite" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+:leaf_dwarf_d a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomClass_body_b a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_many_m3 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b ;
+    net:hasClassName "body" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "body" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_m3 :leaf_many_m3 ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+:leaf_orbit-01_o a :AMR_Leaf ;
+    :edge_o_a2 :leaf_and_a2 ;
+    :edge_o_s :leaf_satellite_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d :leaf_dwarf_d ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:value_6_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-17" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_quant_6 :value_6 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:leaf_satellite_s a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..787704bf901efcb59d25a86906cf5d4777cea483
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-17/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,118 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#after> a owl:ObjectProperty ;
+    rdfs:label "after" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#body-include-body> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#body> ],
+        <https://tenet.tetras-libre.fr/extract-result#body> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#many> a owl:Class ;
+    rdfs:label "many" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#moon> a owl:Class ;
+    rdfs:label "moon" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#natural> a owl:ObjectProperty ;
+    rdfs:label "natural" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet-include-dwarf-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#dwarf-planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite-orbit-body> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#orbit> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#body> ],
+        <https://tenet.tetras-libre.fr/extract-result#satellite> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite-orbit-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#orbit> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#satellite> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#term> a owl:ObjectProperty ;
+    rdfs:label "term" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#usual> a owl:Class ;
+    rdfs:label "usual" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:ObjectProperty ;
+    rdfs:label "orbit" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite> a owl:Class ;
+    rdfs:label "satellite" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
+    rdfs:label "body" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-17" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..b7aadc3de725e9c83615f742993089b42ead20e4
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,828 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#a> a ns2:and ;
+    ns11:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#root01> a ns2:AMR ;
+    ns2:has-id "WikiAbstract-SolarSystem-18" ;
+    ns2:has-sentence "Each of the outer planets is encircled by planetary rings of dust and other small objects." ;
+    ns2:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:encircle-01.ARG1 a ns3:FrameRole .
+
+ns3:encircle-01.ARG2 a ns3:FrameRole .
+
+ns11:consist a ns2:Role .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:mod a ns2:Role .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#d> a ns11:dust .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e> a ns3:encircle-01 ;
+    ns3:encircle-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> ;
+    ns3:encircle-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e2> a ns11:each .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o> a ns11:object ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o2>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#s> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o2> a ns11:other .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o3> a ns11:outer .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p> a <http://amr.isi.edu/entity-types#planet> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e2>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#s> a ns11:small .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:encircle-01 a ns2:Frame .
+
+ns11:dust a ns2:Concept .
+
+ns11:each a ns2:Concept .
+
+ns11:object a ns2:Concept .
+
+ns11:other a ns2:Concept .
+
+ns11:outer a ns2:Concept .
+
+ns11:ring a ns2:Concept .
+
+ns11:small a ns2:Concept .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> a ns11:ring ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p> .
+
+<http://amr.isi.edu/entity-types#planet> a ns2:NamedEntity .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..1a8fd73946a53cab8e4c5a4955d5d4a0eb96f369
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1406 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:encircle-01.ARG1 a ns3:FrameRole .
+
+ns3:encircle-01.ARG2 a ns3:FrameRole .
+
+ns11:consist a ns2:Role .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:mod a ns2:Role .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_a_d a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_o a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_r a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_e_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_o2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p2_e2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_r_p a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-18 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#root01> ;
+    :hasRootLeaf :leaf_encircle-01_e ;
+    :hasSentenceID "WikiAbstract-SolarSystem-18" ;
+    :hasSentenceStatement "Each of the outer planets is encircled by planetary rings of dust and other small objects." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#dust> a owl:Class ;
+    rdfs:label "dust" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#other-object> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#object> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet-ring-encircle-each-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#encircle> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#each-planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#planet-ring> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet-ring-encircle-outer-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#encircle> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#outer-planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#planet-ring> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#small-object> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#object> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_planet-ring-encircle-each-planet_r a net:Composite_Class_Net ;
+    :role_mod net:atomClass_planet_p ;
+    net:composeFrom net:atomProperty_encircle_e,
+        net:compositeClass_each-planet_p2,
+        net:compositeClass_planet-ring_r ;
+    net:coverBaseNode :leaf_ring_r ;
+    net:coverNode :leaf_each_e2,
+        :leaf_encircle-01_e,
+        :leaf_planet_p,
+        :leaf_planet_p2,
+        :leaf_ring_r ;
+    net:hasMotherClassNet net:compositeClass_planet-ring_r ;
+    net:hasNaming "planet-ring-encircle-each-planet" ;
+    net:hasRestriction net:restriction_encircle-each-planet_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:compositeClass_planet-ring-encircle-outer-planet_r a net:Composite_Class_Net ;
+    :role_mod net:atomClass_planet_p ;
+    net:composeFrom net:atomProperty_encircle_e,
+        net:compositeClass_outer-planet_p2,
+        net:compositeClass_planet-ring_r ;
+    net:coverBaseNode :leaf_ring_r ;
+    net:coverNode :leaf_encircle-01_e,
+        :leaf_outer_o3,
+        :leaf_planet_p,
+        :leaf_planet_p2,
+        :leaf_ring_r ;
+    net:hasMotherClassNet net:compositeClass_planet-ring_r ;
+    net:hasNaming "planet-ring-encircle-outer-planet" ;
+    net:hasRestriction net:restriction_encircle-outer-planet_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_each_e2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_each_e2 ;
+    net:coverBaseNode :leaf_each_e2 ;
+    net:coverNode :leaf_each_e2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "each" ;
+    net:hasMotherClassNet net:atomClass_each_e2 ;
+    net:hasNaming "each" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:individual_other_o2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_other_o2 ;
+    net:coverBaseNode :leaf_other_o2 ;
+    net:coverNode :leaf_other_o2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "other" ;
+    net:hasMotherClassNet net:atomClass_other_o2 ;
+    net:hasNaming "other" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:individual_outer_o3 a net:Individual_Net ;
+    net:composeFrom net:atomClass_outer_o3 ;
+    net:coverBaseNode :leaf_outer_o3 ;
+    net:coverNode :leaf_outer_o3 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "outer" ;
+    net:hasMotherClassNet net:atomClass_outer_o3 ;
+    net:hasNaming "outer" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:individual_planet_p a net:Individual_Net ;
+    net:composeFrom net:atomClass_planet_p ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "planet" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:individual_small_s a net:Individual_Net ;
+    net:composeFrom net:atomClass_small_s ;
+    net:coverBaseNode :leaf_small_s ;
+    net:coverNode :leaf_small_s ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "small" ;
+    net:hasMotherClassNet net:atomClass_small_s ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_dust_d ;
+    :role_op2 net:atomClass_object_o,
+        net:compositeClass_other-object_o,
+        net:compositeClass_small-object_o ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#a> a ns2:and ;
+    ns11:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#root01> a ns2:AMR ;
+    ns2:has-id "WikiAbstract-SolarSystem-18" ;
+    ns2:has-sentence "Each of the outer planets is encircled by planetary rings of dust and other small objects." ;
+    ns2:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_dust rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:dust ;
+    :label "dust" .
+
+:concept_each rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:each ;
+    :label "each" .
+
+:concept_encircle-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:encircle-01 ;
+    :label "encircle-01" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:object ;
+    :label "object" .
+
+:concept_other rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:other ;
+    :label "other" .
+
+:concept_outer rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:outer ;
+    :label "outer" .
+
+:concept_ring rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:ring ;
+    :label "ring" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:small ;
+    :label "small" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#a> ;
+    :label "a" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e> ;
+    :label "e" .
+
+:variable_e2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e2> ;
+    :label "e2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#s> ;
+    :label "s" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#each> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#each> ;
+    rdfs:label "each" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#each-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#other> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#other> ;
+    rdfs:label "other" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#outer> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#outer> ;
+    rdfs:label "outer" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#outer-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#ring> a owl:Class ;
+    rdfs:label "ring" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#small> ;
+    rdfs:label "small" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_dust_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dust_d ;
+    net:coverNode :leaf_dust_d ;
+    net:hasClassName "dust" ;
+    net:hasNaming "dust" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:compositeClass_other-object_o a net:Composite_Class_Net ;
+    :role_mod net:atomClass_other_o2,
+        net:atomClass_small_s ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_other_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o,
+        :leaf_other_o2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "other-object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:compositeClass_small-object_o a net:Composite_Class_Net ;
+    :role_mod net:atomClass_other_o2,
+        net:atomClass_small_s ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_small_s ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o,
+        :leaf_small_s ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "small-object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_encircle-each-planet_e a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_encircle_e,
+        net:compositeClass_each-planet_p2 ;
+    net:coverBaseNode :leaf_encircle-01_e ;
+    net:coverNode :leaf_each_e2,
+        :leaf_encircle-01_e,
+        :leaf_planet_p2 ;
+    net:hasNaming "encircle-each-planet" ;
+    net:hasRestrictionNetValue net:compositeClass_each-planet_p2 ;
+    net:hasRestrictionOnProperty net:atomProperty_encircle_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:restriction_encircle-outer-planet_e a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_encircle_e,
+        net:compositeClass_outer-planet_p2 ;
+    net:coverBaseNode :leaf_encircle-01_e ;
+    net:coverNode :leaf_encircle-01_e,
+        :leaf_outer_o3,
+        :leaf_planet_p2 ;
+    net:hasNaming "encircle-outer-planet" ;
+    net:hasRestrictionNetValue net:compositeClass_outer-planet_p2 ;
+    net:hasRestrictionOnProperty net:atomProperty_encircle_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#d> a ns11:dust ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e> a ns3:encircle-01 ;
+    ns3:encircle-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> ;
+    ns3:encircle-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e2> a ns11:each ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o> a ns11:object ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o2>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o2> a ns11:other ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o3> a ns11:outer ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e2>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#s> a ns11:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:encircle-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:dust a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:each a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:object a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:other a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:outer a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:ring a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:small a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_d :leaf_dust_d ;
+    :edge_a_o :leaf_object_o ;
+    :edge_a_r :leaf_ring_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+<https://tenet.tetras-libre.fr/extract-result#encircle> a owl:ObjectProperty ;
+    rdfs:label "encircle" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet-ring> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#ring> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> a ns11:ring ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns2:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_dust_d a :AMR_Leaf ;
+    :hasConcept :concept_dust ;
+    :hasVariable :variable_d .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf sys:Entity,
+        sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-18" .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_ring_r a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_planet_p ;
+    net:coverBaseNode :leaf_ring_r ;
+    net:coverNode :leaf_ring_r ;
+    net:hasClassName "ring" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "ring" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:compositeClass_each-planet_p2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_each_e2,
+        net:atomClass_outer_o3 ;
+    net:composeFrom net:atomClass_each_e2,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_each_e2,
+        :leaf_planet_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "each-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:compositeClass_outer-planet_p2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_each_e2,
+        net:atomClass_outer_o3 ;
+    net:composeFrom net:atomClass_outer_o3,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_outer_o3,
+        :leaf_planet_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "outer-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_other_o2,
+        net:atomClass_small_s ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_each_e2,
+        net:atomClass_outer_o3 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:compositeClass_planet-ring_r a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_planet_p ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomClass_ring_r ;
+    net:coverBaseNode :leaf_ring_r ;
+    net:coverNode :leaf_planet_p,
+        :leaf_ring_r ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_ring_r ;
+    net:hasNaming "planet-ring" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_other_o2 a :AMR_Leaf ;
+    :hasConcept :concept_other ;
+    :hasVariable :variable_o2 .
+
+:leaf_small_s a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_each_e2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_each_e2 ;
+    net:coverNode :leaf_each_e2 ;
+    net:hasClassName "each" ;
+    net:hasNaming "each" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:atomClass_other_o2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_other_o2 ;
+    net:coverNode :leaf_other_o2 ;
+    net:hasClassName "other" ;
+    net:hasNaming "other" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:atomClass_outer_o3 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_outer_o3 ;
+    net:coverNode :leaf_outer_o3 ;
+    net:hasClassName "outer" ;
+    net:hasNaming "outer" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:atomClass_small_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_small_s ;
+    net:coverNode :leaf_small_s ;
+    net:hasClassName "small" ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:atomProperty_encircle_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_ring_r,
+        net:compositeClass_planet-ring_r ;
+    :role_ARG2 net:atomClass_planet_p2,
+        net:compositeClass_each-planet_p2,
+        net:compositeClass_outer-planet_p2 ;
+    net:coverBaseNode :leaf_encircle-01_e ;
+    net:coverNode :leaf_encircle-01_e ;
+    net:hasNaming "encircle" ;
+    net:hasPropertyName "encircle" ;
+    net:hasPropertyName01 "encircleing" ;
+    net:hasPropertyName10 "encircle-by" ;
+    net:hasPropertyName12 "encircle-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_planet_p2,
+        :leaf_ring_r .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_o2 :leaf_other_o2 ;
+    :edge_o_s :leaf_small_s ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:atomClass_planet_p a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_each_e2 a :AMR_Leaf ;
+    :hasConcept :concept_each ;
+    :hasVariable :variable_e2 .
+
+:leaf_outer_o3 a :AMR_Leaf ;
+    :hasConcept :concept_outer ;
+    :hasVariable :variable_o3 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_encircle-01_e a :AMR_Leaf ;
+    :edge_e_p2 :leaf_planet_p2 ;
+    :edge_e_r :leaf_ring_r ;
+    :hasConcept :concept_encircle-01 ;
+    :hasVariable :variable_e .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_ring_r a :AMR_Leaf ;
+    :edge_r_p :leaf_planet_p ;
+    :hasConcept :concept_ring ;
+    :hasVariable :variable_r .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_e2 :leaf_each_e2 ;
+    :edge_p2_o3 :leaf_outer_o3 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..5a22206f37aacd603112112a28d1480435f51122
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1033 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:encircle-01.ARG1 a ns3:FrameRole .
+
+ns3:encircle-01.ARG2 a ns3:FrameRole .
+
+ns11:consist a ns2:Role .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:mod a ns2:Role .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_a_d a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_o a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_r a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_e_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_o2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p2_e2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_r_p a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_d :leaf_dust_d ;
+    :edge_a_o :leaf_object_o ;
+    :edge_a_r :leaf_ring_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-18 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#root01> ;
+    :hasRootLeaf :leaf_encircle-01_e ;
+    :hasSentenceID "WikiAbstract-SolarSystem-18" ;
+    :hasSentenceStatement "Each of the outer planets is encircled by planetary rings of dust and other small objects." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#a> a ns2:and ;
+    ns11:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#root01> a ns2:AMR ;
+    ns2:has-id "WikiAbstract-SolarSystem-18" ;
+    ns2:has-sentence "Each of the outer planets is encircled by planetary rings of dust and other small objects." ;
+    ns2:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_dust rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:dust ;
+    :label "dust" .
+
+:concept_each rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:each ;
+    :label "each" .
+
+:concept_encircle-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:encircle-01 ;
+    :label "encircle-01" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:object ;
+    :label "object" .
+
+:concept_other rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:other ;
+    :label "other" .
+
+:concept_outer rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:outer ;
+    :label "outer" .
+
+:concept_ring rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:ring ;
+    :label "ring" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:small ;
+    :label "small" .
+
+:leaf_dust_d a :AMR_Leaf ;
+    :hasConcept :concept_dust ;
+    :hasVariable :variable_d .
+
+:leaf_each_e2 a :AMR_Leaf ;
+    :hasConcept :concept_each ;
+    :hasVariable :variable_e2 .
+
+:leaf_encircle-01_e a :AMR_Leaf ;
+    :edge_e_p2 :leaf_planet_p2 ;
+    :edge_e_r :leaf_ring_r ;
+    :hasConcept :concept_encircle-01 ;
+    :hasVariable :variable_e .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_o2 :leaf_other_o2 ;
+    :edge_o_s :leaf_small_s ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_other_o2 a :AMR_Leaf ;
+    :hasConcept :concept_other ;
+    :hasVariable :variable_o2 .
+
+:leaf_outer_o3 a :AMR_Leaf ;
+    :hasConcept :concept_outer ;
+    :hasVariable :variable_o3 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_e2 :leaf_each_e2 ;
+    :edge_p2_o3 :leaf_outer_o3 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_small_s a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#a> ;
+    :label "a" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e> ;
+    :label "e" .
+
+:variable_e2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e2> ;
+    :label "e2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#s> ;
+    :label "s" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#d> a ns11:dust ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e> a ns3:encircle-01 ;
+    ns3:encircle-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> ;
+    ns3:encircle-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e2> a ns11:each ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o> a ns11:object ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o2>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o2> a ns11:other ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o3> a ns11:outer ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e2>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#s> a ns11:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:encircle-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:dust a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:each a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:object a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:other a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:outer a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:ring a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:small a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_ring_r a :AMR_Leaf ;
+    :edge_r_p :leaf_planet_p ;
+    :hasConcept :concept_ring ;
+    :hasVariable :variable_r .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> a ns11:ring ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns2:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..21661cb265f5490b2f054a8dda0e2fa71bdf42d0
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1316 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns2:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns2:hasID "test-1" ;
+    ns2:hasSentence "The sun is a star." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns2:hasID "test-2" ;
+    ns2:hasSentence "Earth is a planet." ;
+    ns2:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:encircle-01.ARG1 a ns3:FrameRole .
+
+ns3:encircle-01.ARG2 a ns3:FrameRole .
+
+ns11:consist a ns2:Role .
+
+ns11:domain a ns2:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:mod a ns2:Role .
+
+ns11:op1 a ns2:Role .
+
+ns11:op2 a ns2:Role .
+
+ns2:hasID a owl:AnnotationProperty .
+
+ns2:hasSentence a owl:AnnotationProperty .
+
+ns2:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_a_d a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_o a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_r a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_e_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_o2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_o_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p2_e2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_r_p a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-18 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#root01> ;
+    :hasRootLeaf :leaf_encircle-01_e ;
+    :hasSentenceID "WikiAbstract-SolarSystem-18" ;
+    :hasSentenceStatement "Each of the outer planets is encircled by planetary rings of dust and other small objects." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_planet-ring-encircle-each-planet_r a net:Composite_Class_Net ;
+    :role_mod net:atomClass_planet_p ;
+    net:composeFrom net:atomProperty_encircle_e,
+        net:compositeClass_each-planet_p2,
+        net:compositeClass_planet-ring_r ;
+    net:coverBaseNode :leaf_ring_r ;
+    net:coverNode :leaf_each_e2,
+        :leaf_encircle-01_e,
+        :leaf_planet_p,
+        :leaf_planet_p2,
+        :leaf_ring_r ;
+    net:hasMotherClassNet net:compositeClass_planet-ring_r ;
+    net:hasNaming "planet-ring-encircle-each-planet" ;
+    net:hasRestriction net:restriction_encircle-each-planet_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:compositeClass_planet-ring-encircle-outer-planet_r a net:Composite_Class_Net ;
+    :role_mod net:atomClass_planet_p ;
+    net:composeFrom net:atomProperty_encircle_e,
+        net:compositeClass_outer-planet_p2,
+        net:compositeClass_planet-ring_r ;
+    net:coverBaseNode :leaf_ring_r ;
+    net:coverNode :leaf_encircle-01_e,
+        :leaf_outer_o3,
+        :leaf_planet_p,
+        :leaf_planet_p2,
+        :leaf_ring_r ;
+    net:hasMotherClassNet net:compositeClass_planet-ring_r ;
+    net:hasNaming "planet-ring-encircle-outer-planet" ;
+    net:hasRestriction net:restriction_encircle-outer-planet_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_each_e2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_each_e2 ;
+    net:coverBaseNode :leaf_each_e2 ;
+    net:coverNode :leaf_each_e2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "each" ;
+    net:hasMotherClassNet net:atomClass_each_e2 ;
+    net:hasNaming "each" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:individual_other_o2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_other_o2 ;
+    net:coverBaseNode :leaf_other_o2 ;
+    net:coverNode :leaf_other_o2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "other" ;
+    net:hasMotherClassNet net:atomClass_other_o2 ;
+    net:hasNaming "other" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:individual_outer_o3 a net:Individual_Net ;
+    net:composeFrom net:atomClass_outer_o3 ;
+    net:coverBaseNode :leaf_outer_o3 ;
+    net:coverNode :leaf_outer_o3 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "outer" ;
+    net:hasMotherClassNet net:atomClass_outer_o3 ;
+    net:hasNaming "outer" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:individual_planet_p a net:Individual_Net ;
+    net:composeFrom net:atomClass_planet_p ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "planet" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:individual_small_s a net:Individual_Net ;
+    net:composeFrom net:atomClass_small_s ;
+    net:coverBaseNode :leaf_small_s ;
+    net:coverNode :leaf_small_s ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "small" ;
+    net:hasMotherClassNet net:atomClass_small_s ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_dust_d ;
+    :role_op2 net:atomClass_object_o,
+        net:compositeClass_other-object_o,
+        net:compositeClass_small-object_o ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#a> a ns2:and ;
+    ns11:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#d> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#root01> a ns2:AMR ;
+    ns2:has-id "WikiAbstract-SolarSystem-18" ;
+    ns2:has-sentence "Each of the outer planets is encircled by planetary rings of dust and other small objects." ;
+    ns2:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns2:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:Frame a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:NamedEntity a ns2:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_dust rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:dust ;
+    :label "dust" .
+
+:concept_each rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:each ;
+    :label "each" .
+
+:concept_encircle-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:encircle-01 ;
+    :label "encircle-01" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:object ;
+    :label "object" .
+
+:concept_other rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:other ;
+    :label "other" .
+
+:concept_outer rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:outer ;
+    :label "outer" .
+
+:concept_ring rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:ring ;
+    :label "ring" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:small ;
+    :label "small" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#a> ;
+    :label "a" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e> ;
+    :label "e" .
+
+:variable_e2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e2> ;
+    :label "e2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#s> ;
+    :label "s" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_dust_d a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dust_d ;
+    net:coverNode :leaf_dust_d ;
+    net:hasClassName "dust" ;
+    net:hasNaming "dust" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:compositeClass_other-object_o a net:Composite_Class_Net ;
+    :role_mod net:atomClass_other_o2,
+        net:atomClass_small_s ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_other_o2 ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o,
+        :leaf_other_o2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "other-object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:compositeClass_small-object_o a net:Composite_Class_Net ;
+    :role_mod net:atomClass_other_o2,
+        net:atomClass_small_s ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_small_s ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o,
+        :leaf_small_s ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "small-object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_encircle-each-planet_e a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_encircle_e,
+        net:compositeClass_each-planet_p2 ;
+    net:coverBaseNode :leaf_encircle-01_e ;
+    net:coverNode :leaf_each_e2,
+        :leaf_encircle-01_e,
+        :leaf_planet_p2 ;
+    net:hasNaming "encircle-each-planet" ;
+    net:hasRestrictionNetValue net:compositeClass_each-planet_p2 ;
+    net:hasRestrictionOnProperty net:atomProperty_encircle_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:restriction_encircle-outer-planet_e a net:Restriction_Net ;
+    net:composeFrom net:atomProperty_encircle_e,
+        net:compositeClass_outer-planet_p2 ;
+    net:coverBaseNode :leaf_encircle-01_e ;
+    net:coverNode :leaf_encircle-01_e,
+        :leaf_outer_o3,
+        :leaf_planet_p2 ;
+    net:hasNaming "encircle-outer-planet" ;
+    net:hasRestrictionNetValue net:compositeClass_outer-planet_p2 ;
+    net:hasRestrictionOnProperty net:atomProperty_encircle_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#d> a ns11:dust ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e> a ns3:encircle-01 ;
+    ns3:encircle-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> ;
+    ns3:encircle-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e2> a ns11:each ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o> a ns11:object ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o2>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o2> a ns11:other ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o3> a ns11:outer ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#e2>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#o3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#s> a ns11:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:FrameRole a ns2:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:encircle-01 a ns2:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:dust a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:each a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:object a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:other a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:outer a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:ring a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:small a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:and a ns2:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_d :leaf_dust_d ;
+    :edge_a_o :leaf_object_o ;
+    :edge_a_r :leaf_ring_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#r> a ns11:ring ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-18#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns2:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_dust_d a :AMR_Leaf ;
+    :hasConcept :concept_dust ;
+    :hasVariable :variable_d .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_ring_r a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_planet_p ;
+    net:coverBaseNode :leaf_ring_r ;
+    net:coverNode :leaf_ring_r ;
+    net:hasClassName "ring" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "ring" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:compositeClass_each-planet_p2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_each_e2,
+        net:atomClass_outer_o3 ;
+    net:composeFrom net:atomClass_each_e2,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_each_e2,
+        :leaf_planet_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "each-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:compositeClass_outer-planet_p2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_each_e2,
+        net:atomClass_outer_o3 ;
+    net:composeFrom net:atomClass_outer_o3,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_outer_o3,
+        :leaf_planet_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "outer-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_other_o2,
+        net:atomClass_small_s ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_each_e2,
+        net:atomClass_outer_o3 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:compositeClass_planet-ring_r a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_planet_p ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomClass_ring_r ;
+    net:coverBaseNode :leaf_ring_r ;
+    net:coverNode :leaf_planet_p,
+        :leaf_ring_r ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_ring_r ;
+    net:hasNaming "planet-ring" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_other_o2 a :AMR_Leaf ;
+    :hasConcept :concept_other ;
+    :hasVariable :variable_o2 .
+
+:leaf_small_s a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_each_e2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_each_e2 ;
+    net:coverNode :leaf_each_e2 ;
+    net:hasClassName "each" ;
+    net:hasNaming "each" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:atomClass_other_o2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_other_o2 ;
+    net:coverNode :leaf_other_o2 ;
+    net:hasClassName "other" ;
+    net:hasNaming "other" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:atomClass_outer_o3 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_outer_o3 ;
+    net:coverNode :leaf_outer_o3 ;
+    net:hasClassName "outer" ;
+    net:hasNaming "outer" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:atomClass_small_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_small_s ;
+    net:coverNode :leaf_small_s ;
+    net:hasClassName "small" ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+net:atomProperty_encircle_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_ring_r,
+        net:compositeClass_planet-ring_r ;
+    :role_ARG2 net:atomClass_planet_p2,
+        net:compositeClass_each-planet_p2,
+        net:compositeClass_outer-planet_p2 ;
+    net:coverBaseNode :leaf_encircle-01_e ;
+    net:coverNode :leaf_encircle-01_e ;
+    net:hasNaming "encircle" ;
+    net:hasPropertyName "encircle" ;
+    net:hasPropertyName01 "encircleing" ;
+    net:hasPropertyName10 "encircle-by" ;
+    net:hasPropertyName12 "encircle-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_planet_p2,
+        :leaf_ring_r .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_o2 :leaf_other_o2 ;
+    :edge_o_s :leaf_small_s ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:atomClass_planet_p a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-18" .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_each_e2 a :AMR_Leaf ;
+    :hasConcept :concept_each ;
+    :hasVariable :variable_e2 .
+
+:leaf_outer_o3 a :AMR_Leaf ;
+    :hasConcept :concept_outer ;
+    :hasVariable :variable_o3 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_encircle-01_e a :AMR_Leaf ;
+    :edge_e_p2 :leaf_planet_p2 ;
+    :edge_e_r :leaf_ring_r ;
+    :hasConcept :concept_encircle-01 ;
+    :hasVariable :variable_e .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_ring_r a :AMR_Leaf ;
+    :edge_r_p :leaf_planet_p ;
+    :hasConcept :concept_ring ;
+    :hasVariable :variable_r .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_e2 :leaf_each_e2 ;
+    :edge_p2_o3 :leaf_outer_o3 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..e0492b3a2a828af8e15e4379428e6e3706df9358
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-18/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,94 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#dust> a owl:Class ;
+    rdfs:label "dust" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#other-object> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#object> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet-ring-encircle-each-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#encircle> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#each-planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#planet-ring> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet-ring-encircle-outer-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#encircle> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#outer-planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#planet-ring> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#small-object> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#object> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#each> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#each> ;
+    rdfs:label "each" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#each-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#other> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#other> ;
+    rdfs:label "other" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#outer> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#outer> ;
+    rdfs:label "outer" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#outer-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#ring> a owl:Class ;
+    rdfs:label "ring" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#small> ;
+    rdfs:label "small" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#encircle> a owl:ObjectProperty ;
+    rdfs:label "encircle" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet-ring> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#ring> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-18" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..0db7aa2693f74e490f7309a2cb85bbbcc7dec33f
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,867 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c2> a ns2:charge-03 ;
+    ns2:charge-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#k> a ns2:know-02 ;
+    ns2:know-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    ns2:know-02.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#h> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m> a ns2:mean-01 ;
+    ns2:mean-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> ;
+    ns2:mean-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r2> a ns2:resemble-01 ;
+    ns2:resemble-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    ns2:resemble-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#b> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-19" ;
+    ns3:has-sentence "The solar wind, a stream of charged particles flowing outwards from the Sun, creates a bubble-like region in the interstellar medium known as the heliosphere." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:charge-03.ARG1 a ns2:FrameRole .
+
+ns2:create-01.ARG0 a ns2:FrameRole .
+
+ns2:create-01.ARG1 a ns2:FrameRole .
+
+ns2:know-02.ARG1 a ns2:FrameRole .
+
+ns2:know-02.ARG2 a ns2:FrameRole .
+
+ns2:mean-01.ARG1 a ns2:FrameRole .
+
+ns2:mean-01.ARG2 a ns2:FrameRole .
+
+ns2:resemble-01.ARG1 a ns2:FrameRole .
+
+ns2:resemble-01.ARG2 a ns2:FrameRole .
+
+ns2:stream-01.ARG1 a ns2:FrameRole .
+
+ns11:direction a ns3:Role .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:location a ns3:Role .
+
+ns11:mod a ns3:Role .
+
+ns11:source a ns3:Role .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#b> a ns11:bubble .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c> a ns2:create-01 ;
+    ns2:create-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> ;
+    ns2:create-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#h> a ns11:heliosphere .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#ii> a ns11:interstellar .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m2> a ns3:medium ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#ii> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#o> a ns11:outwards .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s2> a ns2:stream-01 ;
+    ns2:stream-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> ;
+    ns11:direction <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#o> ;
+    ns11:source <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns2:charge-03 a ns3:Frame .
+
+ns2:create-01 a ns3:Frame .
+
+ns2:know-02 a ns3:Frame .
+
+ns2:mean-01 a ns3:Frame .
+
+ns2:resemble-01 a ns3:Frame .
+
+ns2:stream-01 a ns3:Frame .
+
+ns11:bubble a ns3:Concept .
+
+ns11:heliosphere a ns3:Concept .
+
+ns11:interstellar a ns3:Concept .
+
+ns11:outwards a ns3:Concept .
+
+ns11:particle a ns3:Concept .
+
+ns11:region a ns3:Concept .
+
+ns11:sun a ns3:Concept .
+
+ns11:wind a ns3:Concept .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:medium a ns3:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> a ns11:particle .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> a ns11:sun .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> a ns11:wind ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> a ns11:region ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m2> .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..544dce343690e01057b32f26f2279f5b33d0a389
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1549 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:charge-03.ARG1 a ns2:FrameRole .
+
+ns2:create-01.ARG0 a ns2:FrameRole .
+
+ns2:create-01.ARG1 a ns2:FrameRole .
+
+ns2:know-02.ARG1 a ns2:FrameRole .
+
+ns2:know-02.ARG2 a ns2:FrameRole .
+
+ns2:mean-01.ARG1 a ns2:FrameRole .
+
+ns2:mean-01.ARG2 a ns2:FrameRole .
+
+ns2:resemble-01.ARG1 a ns2:FrameRole .
+
+ns2:resemble-01.ARG2 a ns2:FrameRole .
+
+ns2:stream-01.ARG1 a ns2:FrameRole .
+
+ns11:direction a ns3:Role .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:location a ns3:Role .
+
+ns11:mod a ns3:Role .
+
+ns11:source a ns3:Role .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_c2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_w a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_k_h a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_k_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m2_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m_w a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r2_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_r2_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r_m2 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_s2_o a :AMR_Edge ;
+    :hasRoleID "direction" .
+
+:edge_s2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s2_s a :AMR_Edge ;
+    :hasRoleID "source" .
+
+:edge_w_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-19 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#root01> ;
+    :hasRootLeaf :leaf_create-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-19" ;
+    :hasSentenceStatement "The solar wind, a stream of charged particles flowing outwards from the Sun, creates a bubble-like region in the interstellar medium known as the heliosphere." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#charge> a owl:ObjectProperty ;
+    rdfs:label "charge" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#interstellar> a owl:Class ;
+    rdfs:label "interstellar" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#mean> a owl:ObjectProperty ;
+    rdfs:label "mean" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#medium> a owl:ObjectProperty ;
+    rdfs:label "medium" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#outwards> a owl:Class ;
+    rdfs:label "outwards" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#particle> a owl:Class ;
+    rdfs:label "particle" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#region-know-heliosphere> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#know> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#heliosphere> ],
+        <https://tenet.tetras-libre.fr/extract-result#region> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#region-resemble-bubble> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#resemble> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#bubble> ],
+        <https://tenet.tetras-libre.fr/extract-result#region> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#stream> a owl:Class ;
+    rdfs:label "stream" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun-wind-create-region> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#create> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#region> ],
+        <https://tenet.tetras-libre.fr/extract-result#sun-wind> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_outwards_o a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_outwards_o ;
+    net:coverNode :leaf_outwards_o ;
+    net:hasClassName "outwards" ;
+    net:hasNaming "outwards" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_charge_c2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_particle_p ;
+    net:coverBaseNode :leaf_charge-03_c2 ;
+    net:coverNode :leaf_charge-03_c2 ;
+    net:hasNaming "charge" ;
+    net:hasPropertyName "charge" ;
+    net:hasPropertyName01 "chargeing" ;
+    net:hasPropertyName10 "charge-by" ;
+    net:hasPropertyName12 "charge-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_particle_p .
+
+net:atomProperty_mean_m a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_wind_w,
+        net:compositeClass_sun-wind_w ;
+    :role_ARG2 net:atomClass_stream_s2,
+        net:atomProperty_stream_s2 ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m ;
+    net:hasNaming "mean" ;
+    net:hasPropertyName "mean" ;
+    net:hasPropertyName01 "meaning" ;
+    net:hasPropertyName10 "mean-by" ;
+    net:hasPropertyName12 "mean-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_stream-01_s2,
+        :leaf_wind_w .
+
+net:atomProperty_medium_m2 a net:Atom_Property_Net ;
+    :role_mod net:atomClass_interstellar_ii ;
+    net:coverBaseNode :leaf_medium_m2 ;
+    net:coverNode :leaf_medium_m2 ;
+    net:hasNaming "medium" ;
+    net:hasPropertyName "medium" ;
+    net:hasPropertyName01 "mediuming" ;
+    net:hasPropertyName10 "medium-by" ;
+    net:hasPropertyName12 "medium-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_interstellar_ii .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_region-know-heliosphere_r a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_heliosphere_h,
+        net:atomClass_region_r,
+        net:atomProperty_know_k ;
+    net:coverBaseNode :leaf_region_r ;
+    net:coverNode :leaf_heliosphere_h,
+        :leaf_know-02_k,
+        :leaf_region_r ;
+    net:hasMotherClassNet net:atomClass_region_r ;
+    net:hasNaming "region-know-heliosphere" ;
+    net:hasRestriction net:restriction_know-heliosphere_k ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:compositeClass_region-resemble-bubble_r a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_bubble_b,
+        net:atomClass_region_r,
+        net:atomProperty_resemble_r2 ;
+    net:coverBaseNode :leaf_region_r ;
+    net:coverNode :leaf_bubble_b,
+        :leaf_region_r,
+        :leaf_resemble-01_r2 ;
+    net:hasMotherClassNet net:atomClass_region_r ;
+    net:hasNaming "region-resemble-bubble" ;
+    net:hasRestriction net:restriction_resemble-bubble_r2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:compositeClass_sun-wind-create-region_w a net:Composite_Class_Net ;
+    :role_mod net:atomClass_sun_s ;
+    net:composeFrom net:atomClass_region_r,
+        net:atomProperty_create_c,
+        net:compositeClass_sun-wind_w ;
+    net:coverBaseNode :leaf_wind_w ;
+    net:coverNode :leaf_create-01_c,
+        :leaf_region_r,
+        :leaf_sun_s,
+        :leaf_wind_w ;
+    net:hasMotherClassNet net:compositeClass_sun-wind_w ;
+    net:hasNaming "sun-wind-create-region" ;
+    net:hasRestriction net:restriction_create-region_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_sun_s a net:Individual_Net ;
+    net:composeFrom net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "sun" ;
+    net:hasMotherClassNet net:atomClass_sun_s ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c2> a ns2:charge-03 ;
+    ns2:charge-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#k> a ns2:know-02 ;
+    ns2:know-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    ns2:know-02.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#h> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m> a ns2:mean-01 ;
+    ns2:mean-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> ;
+    ns2:mean-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r2> a ns2:resemble-01 ;
+    ns2:resemble-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    ns2:resemble-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-19" ;
+    ns3:has-sentence "The solar wind, a stream of charged particles flowing outwards from the Sun, creates a bubble-like region in the interstellar medium known as the heliosphere." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_bubble rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:bubble ;
+    :label "bubble" .
+
+:concept_charge-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:charge-03 ;
+    :label "charge-03" .
+
+:concept_create-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:create-01 ;
+    :label "create-01" .
+
+:concept_heliosphere rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:heliosphere ;
+    :label "heliosphere" .
+
+:concept_interstellar rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:interstellar ;
+    :label "interstellar" .
+
+:concept_know-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:know-02 ;
+    :label "know-02" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:mean-01 ;
+    :label "mean-01" .
+
+:concept_medium rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:medium ;
+    :label "medium" .
+
+:concept_outwards rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:outwards ;
+    :label "outwards" .
+
+:concept_particle rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:particle ;
+    :label "particle" .
+
+:concept_region rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:region ;
+    :label "region" .
+
+:concept_resemble-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:resemble-01 ;
+    :label "resemble-01" .
+
+:concept_stream-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:stream-01 ;
+    :label "stream-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sun ;
+    :label "sun" .
+
+:concept_wind rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:wind ;
+    :label "wind" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c2> ;
+    :label "c2" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#h> ;
+    :label "h" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#ii> ;
+    :label "ii" .
+
+:variable_k a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#k> ;
+    :label "k" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> ;
+    :label "p" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    :label "r" .
+
+:variable_r2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r2> ;
+    :label "r2" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s2> ;
+    :label "s2" .
+
+:variable_w a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> ;
+    :label "w" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#bubble> a owl:Class ;
+    rdfs:label "bubble" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#create> a owl:ObjectProperty ;
+    rdfs:label "create" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#heliosphere> a owl:Class ;
+    rdfs:label "heliosphere" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#know> a owl:ObjectProperty ;
+    rdfs:label "know" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#resemble> a owl:ObjectProperty ;
+    rdfs:label "resemble" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#sun> ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun-wind> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#wind> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#wind> a owl:Class ;
+    rdfs:label "wind" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_interstellar_ii a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_interstellar_ii ;
+    net:coverNode :leaf_interstellar_ii ;
+    net:hasClassName "interstellar" ;
+    net:hasNaming "interstellar" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:atomClass_stream_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG1 net:atomClass_particle_p ;
+    net:composeFrom net:atomProperty_stream_s2 ;
+    net:coverBaseNode :leaf_stream-01_s2 ;
+    net:coverNode :leaf_stream-01_s2 ;
+    net:hasClassName "stream" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "stream" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_create-region_c a net:Restriction_Net ;
+    net:composeFrom net:atomClass_region_r,
+        net:atomProperty_create_c ;
+    net:coverBaseNode :leaf_create-01_c ;
+    net:coverNode :leaf_create-01_c,
+        :leaf_region_r ;
+    net:hasNaming "create-region" ;
+    net:hasRestrictionNetValue net:atomClass_region_r ;
+    net:hasRestrictionOnProperty net:atomProperty_create_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:restriction_know-heliosphere_k a net:Restriction_Net ;
+    net:composeFrom net:atomClass_heliosphere_h,
+        net:atomProperty_know_k ;
+    net:coverBaseNode :leaf_know-02_k ;
+    net:coverNode :leaf_heliosphere_h,
+        :leaf_know-02_k ;
+    net:hasNaming "know-heliosphere" ;
+    net:hasRestrictionNetValue net:atomClass_heliosphere_h ;
+    net:hasRestrictionOnProperty net:atomProperty_know_k ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:restriction_resemble-bubble_r2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_bubble_b,
+        net:atomProperty_resemble_r2 ;
+    net:coverBaseNode :leaf_resemble-01_r2 ;
+    net:coverNode :leaf_bubble_b,
+        :leaf_resemble-01_r2 ;
+    net:hasNaming "resemble-bubble" ;
+    net:hasRestrictionNetValue net:atomClass_bubble_b ;
+    net:hasRestrictionOnProperty net:atomProperty_resemble_r2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#b> a ns11:bubble ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c> a ns2:create-01 ;
+    ns2:create-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> ;
+    ns2:create-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#h> a ns11:heliosphere ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#ii> a ns11:interstellar ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m2> a ns3:medium ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#o> a ns11:outwards ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s2> a ns2:stream-01 ;
+    ns2:stream-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> ;
+    ns11:direction <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#o> ;
+    ns11:source <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:charge-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:create-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:know-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:mean-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:resemble-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:stream-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:bubble a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:heliosphere a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:interstellar a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:outwards a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:particle a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:region a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:wind a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:medium a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_charge-03_c2 a :AMR_Leaf ;
+    :edge_c2_p :leaf_particle_p ;
+    :hasConcept :concept_charge-03 ;
+    :hasVariable :variable_c2 .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_s2 :leaf_stream-01_s2 ;
+    :edge_m_w :leaf_wind_w ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_stream_s2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_particle_p ;
+    net:coverBaseNode :leaf_stream-01_s2 ;
+    net:coverNode :leaf_stream-01_s2 ;
+    net:hasNaming "stream" ;
+    net:hasPropertyName "stream" ;
+    net:hasPropertyName01 "streaming" ;
+    net:hasPropertyName10 "stream-by" ;
+    net:hasPropertyName12 "stream-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_particle_p .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> a ns11:particle ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> a ns11:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> a ns11:wind ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_medium_m2 a :AMR_Leaf ;
+    :edge_m2_ii :leaf_interstellar_ii ;
+    :hasConcept :concept_medium ;
+    :hasVariable :variable_m2 .
+
+:leaf_outwards_o a :AMR_Leaf ;
+    :hasConcept :concept_outwards ;
+    :hasVariable :variable_o .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+<https://tenet.tetras-libre.fr/extract-result#region> a owl:Class ;
+    rdfs:label "region" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-19" .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_particle_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_particle_p ;
+    net:coverNode :leaf_particle_p ;
+    net:hasClassName "particle" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "particle" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:atomProperty_create_c a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_wind_w,
+        net:compositeClass_sun-wind_w ;
+    :role_ARG1 net:atomClass_region_r ;
+    net:coverBaseNode :leaf_create-01_c ;
+    net:coverNode :leaf_create-01_c ;
+    net:hasNaming "create" ;
+    net:hasPropertyName "create" ;
+    net:hasPropertyName01 "createing" ;
+    net:hasPropertyName10 "create-by" ;
+    net:hasPropertyName12 "create-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_region_r,
+        :leaf_wind_w .
+
+net:atomProperty_know_k a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_region_r ;
+    :role_ARG2 net:atomClass_heliosphere_h ;
+    net:coverBaseNode :leaf_know-02_k ;
+    net:coverNode :leaf_know-02_k ;
+    net:hasNaming "know" ;
+    net:hasPropertyName "know" ;
+    net:hasPropertyName01 "knowing" ;
+    net:hasPropertyName10 "know-by" ;
+    net:hasPropertyName12 "know-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_heliosphere_h,
+        :leaf_region_r .
+
+net:atomProperty_resemble_r2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_region_r ;
+    :role_ARG2 net:atomClass_bubble_b ;
+    net:coverBaseNode :leaf_resemble-01_r2 ;
+    net:coverNode :leaf_resemble-01_r2 ;
+    net:hasNaming "resemble" ;
+    net:hasPropertyName "resemble" ;
+    net:hasPropertyName01 "resembleing" ;
+    net:hasPropertyName10 "resemble-by" ;
+    net:hasPropertyName12 "resemble-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_bubble_b,
+        :leaf_region_r .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> a ns11:region ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_interstellar_ii a :AMR_Leaf ;
+    :hasConcept :concept_interstellar ;
+    :hasVariable :variable_ii .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_bubble_b a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_bubble_b ;
+    net:coverNode :leaf_bubble_b ;
+    net:hasClassName "bubble" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "bubble" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:atomClass_heliosphere_h a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_heliosphere_h ;
+    net:coverNode :leaf_heliosphere_h ;
+    net:hasClassName "heliosphere" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "heliosphere" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:atomClass_wind_w a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_wind_w ;
+    net:coverNode :leaf_wind_w ;
+    net:hasClassName "wind" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "wind" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:compositeClass_sun-wind_w a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sun_s ;
+    net:composeFrom net:atomClass_sun_s,
+        net:atomClass_wind_w ;
+    net:coverBaseNode :leaf_wind_w ;
+    net:coverNode :leaf_sun_s,
+        :leaf_wind_w ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_wind_w ;
+    net:hasNaming "sun-wind" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_know-02_k a :AMR_Leaf ;
+    :edge_k_h :leaf_heliosphere_h ;
+    :edge_k_r :leaf_region_r ;
+    :hasConcept :concept_know-02 ;
+    :hasVariable :variable_k .
+
+:leaf_resemble-01_r2 a :AMR_Leaf ;
+    :edge_r2_b :leaf_bubble_b ;
+    :edge_r2_r :leaf_region_r ;
+    :hasConcept :concept_resemble-01 ;
+    :hasVariable :variable_r2 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_bubble_b a :AMR_Leaf ;
+    :hasConcept :concept_bubble ;
+    :hasVariable :variable_b .
+
+:leaf_create-01_c a :AMR_Leaf ;
+    :edge_c_r :leaf_region_r ;
+    :edge_c_w :leaf_wind_w ;
+    :hasConcept :concept_create-01 ;
+    :hasVariable :variable_c .
+
+:leaf_heliosphere_h a :AMR_Leaf ;
+    :hasConcept :concept_heliosphere ;
+    :hasVariable :variable_h .
+
+:leaf_particle_p a :AMR_Leaf ;
+    :hasConcept :concept_particle ;
+    :hasVariable :variable_p .
+
+:leaf_stream-01_s2 a :AMR_Leaf ;
+    :edge_s2_o :leaf_outwards_o ;
+    :edge_s2_p :leaf_particle_p ;
+    :edge_s2_s :leaf_sun_s ;
+    :hasConcept :concept_stream-01 ;
+    :hasVariable :variable_s2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_sun_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_wind_w a :AMR_Leaf ;
+    :edge_w_s :leaf_sun_s ;
+    :hasConcept :concept_wind ;
+    :hasVariable :variable_w .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_region_r a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_region_r ;
+    net:coverNode :leaf_region_r ;
+    net:hasClassName "region" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "region" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+:leaf_region_r a :AMR_Leaf ;
+    :edge_r_m2 :leaf_medium_m2 ;
+    :hasConcept :concept_region ;
+    :hasVariable :variable_r .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..9ea9e16d9e51a5f3ab341ed402fd832983f58be4
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1155 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:charge-03.ARG1 a ns2:FrameRole .
+
+ns2:create-01.ARG0 a ns2:FrameRole .
+
+ns2:create-01.ARG1 a ns2:FrameRole .
+
+ns2:know-02.ARG1 a ns2:FrameRole .
+
+ns2:know-02.ARG2 a ns2:FrameRole .
+
+ns2:mean-01.ARG1 a ns2:FrameRole .
+
+ns2:mean-01.ARG2 a ns2:FrameRole .
+
+ns2:resemble-01.ARG1 a ns2:FrameRole .
+
+ns2:resemble-01.ARG2 a ns2:FrameRole .
+
+ns2:stream-01.ARG1 a ns2:FrameRole .
+
+ns11:direction a ns3:Role .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:location a ns3:Role .
+
+ns11:mod a ns3:Role .
+
+ns11:source a ns3:Role .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_c2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_w a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_k_h a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_k_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m2_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m_w a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r2_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_r2_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r_m2 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_s2_o a :AMR_Edge ;
+    :hasRoleID "direction" .
+
+:edge_s2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s2_s a :AMR_Edge ;
+    :hasRoleID "source" .
+
+:edge_w_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_charge-03_c2 a :AMR_Leaf ;
+    :edge_c2_p :leaf_particle_p ;
+    :hasConcept :concept_charge-03 ;
+    :hasVariable :variable_c2 .
+
+:leaf_know-02_k a :AMR_Leaf ;
+    :edge_k_h :leaf_heliosphere_h ;
+    :edge_k_r :leaf_region_r ;
+    :hasConcept :concept_know-02 ;
+    :hasVariable :variable_k .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_s2 :leaf_stream-01_s2 ;
+    :edge_m_w :leaf_wind_w ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:leaf_resemble-01_r2 a :AMR_Leaf ;
+    :edge_r2_b :leaf_bubble_b ;
+    :edge_r2_r :leaf_region_r ;
+    :hasConcept :concept_resemble-01 ;
+    :hasVariable :variable_r2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-19 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#root01> ;
+    :hasRootLeaf :leaf_create-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-19" ;
+    :hasSentenceStatement "The solar wind, a stream of charged particles flowing outwards from the Sun, creates a bubble-like region in the interstellar medium known as the heliosphere." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c2> a ns2:charge-03 ;
+    ns2:charge-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#k> a ns2:know-02 ;
+    ns2:know-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    ns2:know-02.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#h> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m> a ns2:mean-01 ;
+    ns2:mean-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> ;
+    ns2:mean-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r2> a ns2:resemble-01 ;
+    ns2:resemble-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    ns2:resemble-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-19" ;
+    ns3:has-sentence "The solar wind, a stream of charged particles flowing outwards from the Sun, creates a bubble-like region in the interstellar medium known as the heliosphere." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_bubble rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:bubble ;
+    :label "bubble" .
+
+:concept_charge-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:charge-03 ;
+    :label "charge-03" .
+
+:concept_create-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:create-01 ;
+    :label "create-01" .
+
+:concept_heliosphere rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:heliosphere ;
+    :label "heliosphere" .
+
+:concept_interstellar rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:interstellar ;
+    :label "interstellar" .
+
+:concept_know-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:know-02 ;
+    :label "know-02" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:mean-01 ;
+    :label "mean-01" .
+
+:concept_medium rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:medium ;
+    :label "medium" .
+
+:concept_outwards rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:outwards ;
+    :label "outwards" .
+
+:concept_particle rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:particle ;
+    :label "particle" .
+
+:concept_region rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:region ;
+    :label "region" .
+
+:concept_resemble-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:resemble-01 ;
+    :label "resemble-01" .
+
+:concept_stream-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:stream-01 ;
+    :label "stream-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sun ;
+    :label "sun" .
+
+:concept_wind rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:wind ;
+    :label "wind" .
+
+:leaf_bubble_b a :AMR_Leaf ;
+    :hasConcept :concept_bubble ;
+    :hasVariable :variable_b .
+
+:leaf_create-01_c a :AMR_Leaf ;
+    :edge_c_r :leaf_region_r ;
+    :edge_c_w :leaf_wind_w ;
+    :hasConcept :concept_create-01 ;
+    :hasVariable :variable_c .
+
+:leaf_heliosphere_h a :AMR_Leaf ;
+    :hasConcept :concept_heliosphere ;
+    :hasVariable :variable_h .
+
+:leaf_interstellar_ii a :AMR_Leaf ;
+    :hasConcept :concept_interstellar ;
+    :hasVariable :variable_ii .
+
+:leaf_medium_m2 a :AMR_Leaf ;
+    :edge_m2_ii :leaf_interstellar_ii ;
+    :hasConcept :concept_medium ;
+    :hasVariable :variable_m2 .
+
+:leaf_outwards_o a :AMR_Leaf ;
+    :hasConcept :concept_outwards ;
+    :hasVariable :variable_o .
+
+:leaf_stream-01_s2 a :AMR_Leaf ;
+    :edge_s2_o :leaf_outwards_o ;
+    :edge_s2_p :leaf_particle_p ;
+    :edge_s2_s :leaf_sun_s ;
+    :hasConcept :concept_stream-01 ;
+    :hasVariable :variable_s2 .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c2> ;
+    :label "c2" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#h> ;
+    :label "h" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#ii> ;
+    :label "ii" .
+
+:variable_k a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#k> ;
+    :label "k" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> ;
+    :label "p" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    :label "r" .
+
+:variable_r2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r2> ;
+    :label "r2" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s2> ;
+    :label "s2" .
+
+:variable_w a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> ;
+    :label "w" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#b> a ns11:bubble ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c> a ns2:create-01 ;
+    ns2:create-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> ;
+    ns2:create-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#h> a ns11:heliosphere ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#ii> a ns11:interstellar ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m2> a ns3:medium ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#o> a ns11:outwards ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s2> a ns2:stream-01 ;
+    ns2:stream-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> ;
+    ns11:direction <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#o> ;
+    ns11:source <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:charge-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:create-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:know-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:mean-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:resemble-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:stream-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:bubble a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:heliosphere a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:interstellar a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:outwards a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:particle a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:region a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:wind a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:medium a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_particle_p a :AMR_Leaf ;
+    :hasConcept :concept_particle ;
+    :hasVariable :variable_p .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+:leaf_wind_w a :AMR_Leaf ;
+    :edge_w_s :leaf_sun_s ;
+    :hasConcept :concept_wind ;
+    :hasVariable :variable_w .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> a ns11:particle ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> a ns11:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> a ns11:wind ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_region_r a :AMR_Leaf ;
+    :edge_r_m2 :leaf_medium_m2 ;
+    :hasConcept :concept_region ;
+    :hasVariable :variable_r .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> a ns11:region ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..f5c2d690f4527b80216201c1da9caff90feb1cb0
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1447 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:charge-03.ARG1 a ns2:FrameRole .
+
+ns2:create-01.ARG0 a ns2:FrameRole .
+
+ns2:create-01.ARG1 a ns2:FrameRole .
+
+ns2:know-02.ARG1 a ns2:FrameRole .
+
+ns2:know-02.ARG2 a ns2:FrameRole .
+
+ns2:mean-01.ARG1 a ns2:FrameRole .
+
+ns2:mean-01.ARG2 a ns2:FrameRole .
+
+ns2:resemble-01.ARG1 a ns2:FrameRole .
+
+ns2:resemble-01.ARG2 a ns2:FrameRole .
+
+ns2:stream-01.ARG1 a ns2:FrameRole .
+
+ns11:direction a ns3:Role .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:location a ns3:Role .
+
+ns11:mod a ns3:Role .
+
+ns11:source a ns3:Role .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_c2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_w a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_k_h a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_k_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m2_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m_w a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r2_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_r2_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r_m2 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_s2_o a :AMR_Edge ;
+    :hasRoleID "direction" .
+
+:edge_s2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s2_s a :AMR_Edge ;
+    :hasRoleID "source" .
+
+:edge_w_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-19 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#root01> ;
+    :hasRootLeaf :leaf_create-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-19" ;
+    :hasSentenceStatement "The solar wind, a stream of charged particles flowing outwards from the Sun, creates a bubble-like region in the interstellar medium known as the heliosphere." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_outwards_o a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_outwards_o ;
+    net:coverNode :leaf_outwards_o ;
+    net:hasClassName "outwards" ;
+    net:hasNaming "outwards" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_charge_c2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_particle_p ;
+    net:coverBaseNode :leaf_charge-03_c2 ;
+    net:coverNode :leaf_charge-03_c2 ;
+    net:hasNaming "charge" ;
+    net:hasPropertyName "charge" ;
+    net:hasPropertyName01 "chargeing" ;
+    net:hasPropertyName10 "charge-by" ;
+    net:hasPropertyName12 "charge-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_particle_p .
+
+net:atomProperty_mean_m a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_wind_w,
+        net:compositeClass_sun-wind_w ;
+    :role_ARG2 net:atomClass_stream_s2,
+        net:atomProperty_stream_s2 ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m ;
+    net:hasNaming "mean" ;
+    net:hasPropertyName "mean" ;
+    net:hasPropertyName01 "meaning" ;
+    net:hasPropertyName10 "mean-by" ;
+    net:hasPropertyName12 "mean-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_stream-01_s2,
+        :leaf_wind_w .
+
+net:atomProperty_medium_m2 a net:Atom_Property_Net ;
+    :role_mod net:atomClass_interstellar_ii ;
+    net:coverBaseNode :leaf_medium_m2 ;
+    net:coverNode :leaf_medium_m2 ;
+    net:hasNaming "medium" ;
+    net:hasPropertyName "medium" ;
+    net:hasPropertyName01 "mediuming" ;
+    net:hasPropertyName10 "medium-by" ;
+    net:hasPropertyName12 "medium-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_interstellar_ii .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_region-know-heliosphere_r a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_heliosphere_h,
+        net:atomClass_region_r,
+        net:atomProperty_know_k ;
+    net:coverBaseNode :leaf_region_r ;
+    net:coverNode :leaf_heliosphere_h,
+        :leaf_know-02_k,
+        :leaf_region_r ;
+    net:hasMotherClassNet net:atomClass_region_r ;
+    net:hasNaming "region-know-heliosphere" ;
+    net:hasRestriction net:restriction_know-heliosphere_k ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:compositeClass_region-resemble-bubble_r a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_bubble_b,
+        net:atomClass_region_r,
+        net:atomProperty_resemble_r2 ;
+    net:coverBaseNode :leaf_region_r ;
+    net:coverNode :leaf_bubble_b,
+        :leaf_region_r,
+        :leaf_resemble-01_r2 ;
+    net:hasMotherClassNet net:atomClass_region_r ;
+    net:hasNaming "region-resemble-bubble" ;
+    net:hasRestriction net:restriction_resemble-bubble_r2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:compositeClass_sun-wind-create-region_w a net:Composite_Class_Net ;
+    :role_mod net:atomClass_sun_s ;
+    net:composeFrom net:atomClass_region_r,
+        net:atomProperty_create_c,
+        net:compositeClass_sun-wind_w ;
+    net:coverBaseNode :leaf_wind_w ;
+    net:coverNode :leaf_create-01_c,
+        :leaf_region_r,
+        :leaf_sun_s,
+        :leaf_wind_w ;
+    net:hasMotherClassNet net:compositeClass_sun-wind_w ;
+    net:hasNaming "sun-wind-create-region" ;
+    net:hasRestriction net:restriction_create-region_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_sun_s a net:Individual_Net ;
+    net:composeFrom net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "sun" ;
+    net:hasMotherClassNet net:atomClass_sun_s ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c2> a ns2:charge-03 ;
+    ns2:charge-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#k> a ns2:know-02 ;
+    ns2:know-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    ns2:know-02.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#h> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m> a ns2:mean-01 ;
+    ns2:mean-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> ;
+    ns2:mean-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r2> a ns2:resemble-01 ;
+    ns2:resemble-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    ns2:resemble-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-19" ;
+    ns3:has-sentence "The solar wind, a stream of charged particles flowing outwards from the Sun, creates a bubble-like region in the interstellar medium known as the heliosphere." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_bubble rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:bubble ;
+    :label "bubble" .
+
+:concept_charge-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:charge-03 ;
+    :label "charge-03" .
+
+:concept_create-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:create-01 ;
+    :label "create-01" .
+
+:concept_heliosphere rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:heliosphere ;
+    :label "heliosphere" .
+
+:concept_interstellar rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:interstellar ;
+    :label "interstellar" .
+
+:concept_know-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:know-02 ;
+    :label "know-02" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:mean-01 ;
+    :label "mean-01" .
+
+:concept_medium rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:medium ;
+    :label "medium" .
+
+:concept_outwards rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:outwards ;
+    :label "outwards" .
+
+:concept_particle rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:particle ;
+    :label "particle" .
+
+:concept_region rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:region ;
+    :label "region" .
+
+:concept_resemble-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:resemble-01 ;
+    :label "resemble-01" .
+
+:concept_stream-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:stream-01 ;
+    :label "stream-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sun ;
+    :label "sun" .
+
+:concept_wind rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:wind ;
+    :label "wind" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c2> ;
+    :label "c2" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#h> ;
+    :label "h" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#ii> ;
+    :label "ii" .
+
+:variable_k a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#k> ;
+    :label "k" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> ;
+    :label "p" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    :label "r" .
+
+:variable_r2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r2> ;
+    :label "r2" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s2> ;
+    :label "s2" .
+
+:variable_w a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> ;
+    :label "w" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_interstellar_ii a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_interstellar_ii ;
+    net:coverNode :leaf_interstellar_ii ;
+    net:hasClassName "interstellar" ;
+    net:hasNaming "interstellar" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:atomClass_stream_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG1 net:atomClass_particle_p ;
+    net:composeFrom net:atomProperty_stream_s2 ;
+    net:coverBaseNode :leaf_stream-01_s2 ;
+    net:coverNode :leaf_stream-01_s2 ;
+    net:hasClassName "stream" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "stream" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_create-region_c a net:Restriction_Net ;
+    net:composeFrom net:atomClass_region_r,
+        net:atomProperty_create_c ;
+    net:coverBaseNode :leaf_create-01_c ;
+    net:coverNode :leaf_create-01_c,
+        :leaf_region_r ;
+    net:hasNaming "create-region" ;
+    net:hasRestrictionNetValue net:atomClass_region_r ;
+    net:hasRestrictionOnProperty net:atomProperty_create_c ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:restriction_know-heliosphere_k a net:Restriction_Net ;
+    net:composeFrom net:atomClass_heliosphere_h,
+        net:atomProperty_know_k ;
+    net:coverBaseNode :leaf_know-02_k ;
+    net:coverNode :leaf_heliosphere_h,
+        :leaf_know-02_k ;
+    net:hasNaming "know-heliosphere" ;
+    net:hasRestrictionNetValue net:atomClass_heliosphere_h ;
+    net:hasRestrictionOnProperty net:atomProperty_know_k ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:restriction_resemble-bubble_r2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_bubble_b,
+        net:atomProperty_resemble_r2 ;
+    net:coverBaseNode :leaf_resemble-01_r2 ;
+    net:coverNode :leaf_bubble_b,
+        :leaf_resemble-01_r2 ;
+    net:hasNaming "resemble-bubble" ;
+    net:hasRestrictionNetValue net:atomClass_bubble_b ;
+    net:hasRestrictionOnProperty net:atomProperty_resemble_r2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#b> a ns11:bubble ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#c> a ns2:create-01 ;
+    ns2:create-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> ;
+    ns2:create-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#h> a ns11:heliosphere ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#ii> a ns11:interstellar ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m2> a ns3:medium ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#o> a ns11:outwards ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s2> a ns2:stream-01 ;
+    ns2:stream-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> ;
+    ns11:direction <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#o> ;
+    ns11:source <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:charge-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:create-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:know-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:mean-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:resemble-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:stream-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:bubble a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:heliosphere a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:interstellar a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:outwards a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:particle a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:region a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:wind a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:medium a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_charge-03_c2 a :AMR_Leaf ;
+    :edge_c2_p :leaf_particle_p ;
+    :hasConcept :concept_charge-03 ;
+    :hasVariable :variable_c2 .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_s2 :leaf_stream-01_s2 ;
+    :edge_m_w :leaf_wind_w ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_stream_s2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_particle_p ;
+    net:coverBaseNode :leaf_stream-01_s2 ;
+    net:coverNode :leaf_stream-01_s2 ;
+    net:hasNaming "stream" ;
+    net:hasPropertyName "stream" ;
+    net:hasPropertyName01 "streaming" ;
+    net:hasPropertyName10 "stream-by" ;
+    net:hasPropertyName12 "stream-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_particle_p .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#p> a ns11:particle ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> a ns11:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#w> a ns11:wind ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_medium_m2 a :AMR_Leaf ;
+    :edge_m2_ii :leaf_interstellar_ii ;
+    :hasConcept :concept_medium ;
+    :hasVariable :variable_m2 .
+
+:leaf_outwards_o a :AMR_Leaf ;
+    :hasConcept :concept_outwards ;
+    :hasVariable :variable_o .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_particle_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_particle_p ;
+    net:coverNode :leaf_particle_p ;
+    net:hasClassName "particle" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "particle" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:atomProperty_create_c a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_wind_w,
+        net:compositeClass_sun-wind_w ;
+    :role_ARG1 net:atomClass_region_r ;
+    net:coverBaseNode :leaf_create-01_c ;
+    net:coverNode :leaf_create-01_c ;
+    net:hasNaming "create" ;
+    net:hasPropertyName "create" ;
+    net:hasPropertyName01 "createing" ;
+    net:hasPropertyName10 "create-by" ;
+    net:hasPropertyName12 "create-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_region_r,
+        :leaf_wind_w .
+
+net:atomProperty_know_k a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_region_r ;
+    :role_ARG2 net:atomClass_heliosphere_h ;
+    net:coverBaseNode :leaf_know-02_k ;
+    net:coverNode :leaf_know-02_k ;
+    net:hasNaming "know" ;
+    net:hasPropertyName "know" ;
+    net:hasPropertyName01 "knowing" ;
+    net:hasPropertyName10 "know-by" ;
+    net:hasPropertyName12 "know-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_heliosphere_h,
+        :leaf_region_r .
+
+net:atomProperty_resemble_r2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_region_r ;
+    :role_ARG2 net:atomClass_bubble_b ;
+    net:coverBaseNode :leaf_resemble-01_r2 ;
+    net:coverNode :leaf_resemble-01_r2 ;
+    net:hasNaming "resemble" ;
+    net:hasPropertyName "resemble" ;
+    net:hasPropertyName01 "resembleing" ;
+    net:hasPropertyName10 "resemble-by" ;
+    net:hasPropertyName12 "resemble-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_bubble_b,
+        :leaf_region_r .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#r> a ns11:region ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-19#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_interstellar_ii a :AMR_Leaf ;
+    :hasConcept :concept_interstellar ;
+    :hasVariable :variable_ii .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_bubble_b a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_bubble_b ;
+    net:coverNode :leaf_bubble_b ;
+    net:hasClassName "bubble" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "bubble" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:atomClass_heliosphere_h a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_heliosphere_h ;
+    net:coverNode :leaf_heliosphere_h ;
+    net:hasClassName "heliosphere" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "heliosphere" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:atomClass_wind_w a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_wind_w ;
+    net:coverNode :leaf_wind_w ;
+    net:hasClassName "wind" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "wind" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:compositeClass_sun-wind_w a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sun_s ;
+    net:composeFrom net:atomClass_sun_s,
+        net:atomClass_wind_w ;
+    net:coverBaseNode :leaf_wind_w ;
+    net:coverNode :leaf_sun_s,
+        :leaf_wind_w ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_wind_w ;
+    net:hasNaming "sun-wind" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_know-02_k a :AMR_Leaf ;
+    :edge_k_h :leaf_heliosphere_h ;
+    :edge_k_r :leaf_region_r ;
+    :hasConcept :concept_know-02 ;
+    :hasVariable :variable_k .
+
+:leaf_resemble-01_r2 a :AMR_Leaf ;
+    :edge_r2_b :leaf_bubble_b ;
+    :edge_r2_r :leaf_region_r ;
+    :hasConcept :concept_resemble-01 ;
+    :hasVariable :variable_r2 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_bubble_b a :AMR_Leaf ;
+    :hasConcept :concept_bubble ;
+    :hasVariable :variable_b .
+
+:leaf_create-01_c a :AMR_Leaf ;
+    :edge_c_r :leaf_region_r ;
+    :edge_c_w :leaf_wind_w ;
+    :hasConcept :concept_create-01 ;
+    :hasVariable :variable_c .
+
+:leaf_heliosphere_h a :AMR_Leaf ;
+    :hasConcept :concept_heliosphere ;
+    :hasVariable :variable_h .
+
+:leaf_particle_p a :AMR_Leaf ;
+    :hasConcept :concept_particle ;
+    :hasVariable :variable_p .
+
+:leaf_stream-01_s2 a :AMR_Leaf ;
+    :edge_s2_o :leaf_outwards_o ;
+    :edge_s2_p :leaf_particle_p ;
+    :edge_s2_s :leaf_sun_s ;
+    :hasConcept :concept_stream-01 ;
+    :hasVariable :variable_s2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_sun_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_wind_w a :AMR_Leaf ;
+    :edge_w_s :leaf_sun_s ;
+    :hasConcept :concept_wind ;
+    :hasVariable :variable_w .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_region_r a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_region_r ;
+    net:coverNode :leaf_region_r ;
+    net:hasClassName "region" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "region" ;
+    net:hasStructure "WikiAbstract-SolarSystem-19" .
+
+:leaf_region_r a :AMR_Leaf ;
+    :edge_r_m2 :leaf_medium_m2 ;
+    :hasConcept :concept_region ;
+    :hasVariable :variable_r .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..684ae1125d2e90cbf3d59b9d13f8ed0ae38b0fc8
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-19/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,106 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#charge> a owl:ObjectProperty ;
+    rdfs:label "charge" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#interstellar> a owl:Class ;
+    rdfs:label "interstellar" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#mean> a owl:ObjectProperty ;
+    rdfs:label "mean" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#medium> a owl:ObjectProperty ;
+    rdfs:label "medium" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#outwards> a owl:Class ;
+    rdfs:label "outwards" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#particle> a owl:Class ;
+    rdfs:label "particle" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#region-know-heliosphere> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#know> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#heliosphere> ],
+        <https://tenet.tetras-libre.fr/extract-result#region> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#region-resemble-bubble> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#resemble> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#bubble> ],
+        <https://tenet.tetras-libre.fr/extract-result#region> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#stream> a owl:Class ;
+    rdfs:label "stream" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun-wind-create-region> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#create> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#region> ],
+        <https://tenet.tetras-libre.fr/extract-result#sun-wind> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#bubble> a owl:Class ;
+    rdfs:label "bubble" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#create> a owl:ObjectProperty ;
+    rdfs:label "create" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#heliosphere> a owl:Class ;
+    rdfs:label "heliosphere" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#know> a owl:ObjectProperty ;
+    rdfs:label "know" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#resemble> a owl:ObjectProperty ;
+    rdfs:label "resemble" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#sun> ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun-wind> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#wind> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#wind> a owl:Class ;
+    rdfs:label "wind" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
+<https://tenet.tetras-libre.fr/extract-result#region> a owl:Class ;
+    rdfs:label "region" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-19" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..27d24dc33b4f4fe3e1aa3b67b0c424c6c083f645
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,881 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-02" ;
+    ns21:has-sentence "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s4> a ns3:system ;
+    rdfs:label "Solar System" ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG5 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns3:op1 a ns21:Role .
+
+ns3:op2 a ns21:Role .
+
+ns3:op3 a ns21:Role .
+
+ns3:part a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> ;
+    ns3:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> a ns3:dwarf .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> ;
+    ns11:have-degree-91.ARG5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> a ns3:large .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> a ns21:most .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> a ns21:more .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:quant "8" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> a ns3:sun .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> a ns3:small .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> a ns3:small .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns11:direct-02 a ns21:Frame .
+
+ns11:orbit-01 a ns21:Frame .
+
+ns11:remain-01 a ns21:Frame .
+
+ns3:body a ns21:Concept .
+
+ns3:dwarf a ns21:Concept .
+
+ns3:large a ns21:Concept .
+
+ns3:sun a ns21:Concept .
+
+ns3:system a ns21:Concept .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:more a ns21:Concept .
+
+ns21:most a ns21:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> a ns3:body ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> a ns3:object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> a ns3:object .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity .
+
+ns11:have-degree-91 a ns21:Frame .
+
+ns3:object a ns21:Concept .
+
+ns3:small a ns21:Concept .
+
+ns21:and a ns21:Concept .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..c6dce7e9432572fc9f816ba5de154437e08ba395
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1691 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG5 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns3:op1 a ns21:Role .
+
+ns3:op2 a ns21:Role .
+
+ns3:op3 a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_b a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_r a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_s3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_d_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG5 ;
+    :hasRoleID "ARG5" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p2_d2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p9_ARG0_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_quant_8 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_r_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s4_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-02 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-02" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#direct> a owl:ObjectProperty ;
+    rdfs:label "direct" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#remain> a owl:ObjectProperty ;
+    rdfs:label "remain" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#small-body> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#body> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_direct_d a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_orbit_o2,
+        net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_orbit-01_o2 .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s4,
+        net:individual_SolarSystem_s4 ;
+    :role_ARG1 net:atomClass_body_b,
+        net:compositeClass_small-body_b ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_body_b,
+        :leaf_system_s4 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_dwarf_d2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d2 ;
+    net:coverBaseNode :leaf_dwarf_d2 ;
+    net:coverNode :leaf_dwarf_d2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d2 ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:individual_small_s3 a net:Individual_Net ;
+    net:composeFrom net:atomClass_small_s3 ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "small" ;
+    net:hasMotherClassNet net:atomClass_small_s3 ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:phenomena_degree_h ;
+    :role_op2 net:atomProperty_remain_r ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o3 ;
+    :role_ARG2 net:atomClass_small_s2 ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-02" ;
+    ns21:has-sentence "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s4> a ns3:system ;
+    rdfs:label "Solar System" ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:body ;
+    :label "body" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:direct-02 ;
+    :label "direct-02" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:dwarf ;
+    :label "dwarf" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:large ;
+    :label "large" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:more ;
+    :label "more" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:most ;
+    :label "most" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:remain-01 ;
+    :label "remain-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:sun ;
+    :label "sun" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:system ;
+    :label "system" .
+
+:role_ARG5 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> ;
+    :label "d2" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> ;
+    :label "p2" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s4> ;
+    :label "s4" ;
+    :name "Solar System" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
+    rdfs:label "body" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#small> ;
+    rdfs:label "small" ;
+    rdfs:subClassOf sys:Entity,
+        sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-02" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_orbit_o2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:composeFrom net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:value_8_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_small_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s2 ;
+    net:coverNode :leaf_small_s2 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_remain_r a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_body_b,
+        net:atomClass_object_o3,
+        net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2,
+        net:compositeClass_small-body_b,
+        net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_remain-01_r ;
+    net:coverNode :leaf_remain-01_r ;
+    net:hasNaming "remain" ;
+    net:hasPropertyName "remain" ;
+    net:hasPropertyName01 "remaining" ;
+    net:hasPropertyName10 "remain-by" ;
+    net:hasPropertyName12 "remain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2 .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_SolarSystem_s4 a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s4 ;
+    net:coverNode :leaf_system_s4 ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s4 ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_object_o3 ;
+    :role_op2 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    :role_op3 net:atomClass_body_b,
+        net:compositeClass_small-body_b ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_most_m ;
+    :role_ARG5 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:value_8_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_8 ;
+    net:hasNaming "8" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:hasValueLabel "8" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> ;
+    ns3:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> a ns3:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> ;
+    ns11:have-degree-91.ARG5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> a ns3:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> a ns21:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> a ns21:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:quant "8" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> a ns3:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> a ns3:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> a ns3:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:direct-02 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:remain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:body a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:dwarf a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:large a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns21:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:sun a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:system a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:more a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:most a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:object ;
+    :label "object" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:small ;
+    :label "small" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s4 :leaf_system_s4 ;
+    :edge_p9_ARG1_b :leaf_body_b ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m2 :leaf_more_m2 ;
+    :edge_h2_o3 :leaf_object_o3 ;
+    :edge_h2_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_8 a :AMR_Value ;
+    rdfs:label "8" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_sun_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_system_s4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s4 ;
+    net:coverNode :leaf_system_s4 ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_sun_s .
+
+net:compositeClass_dwarf-planet_p2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d2 ;
+    net:composeFrom net:atomClass_dwarf_d2,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_dwarf_d2,
+        :leaf_planet_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "dwarf-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> a ns3:body ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> a ns3:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> a ns3:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:object a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:small a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:and a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :edge_a_r :leaf_remain-01_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m :leaf_most_m ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_quant_8 :value_8 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_remain-01_r a :AMR_Leaf ;
+    :edge_r_a2 :leaf_and_a2 ;
+    :hasConcept :concept_remain-01 ;
+    :hasVariable :variable_r .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_object_o3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:compositeClass_small-body_b a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_small_s3 ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_small_s3 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b,
+        :leaf_small_s3 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_body_b ;
+    net:hasNaming "small-body" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_body_b ;
+    :edge_a2_o3 :leaf_object_o3 ;
+    :edge_a2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_dwarf_d2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d2 :leaf_dwarf_d2 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_body_b a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_small_s3 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b ;
+    net:hasClassName "body" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "body" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_dwarf_d2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d2 ;
+    net:coverNode :leaf_dwarf_d2 ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_small_s3 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasClassName "small" ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Structure a owl:Class .
+
+:leaf_dwarf_d2 a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d2 .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:leaf_system_s4 a :AMR_Leaf ;
+    :edge_s4_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s4 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_s3 :leaf_small_s3 ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..aa1b4ba348c615b0e63ab57a8ba21e1773abe095
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1277 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG5 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns3:op1 a ns21:Role .
+
+ns3:op2 a ns21:Role .
+
+ns3:op3 a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_b a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_r a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_s3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_d_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG5 ;
+    :hasRoleID "ARG5" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p2_d2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p9_ARG0_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_quant_8 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_r_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s4_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s4 :leaf_system_s4 ;
+    :edge_p9_ARG1_b :leaf_body_b ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m2 :leaf_more_m2 ;
+    :edge_h2_o3 :leaf_object_o3 ;
+    :edge_h2_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-02 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-02" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-02" ;
+    ns21:has-sentence "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s4> a ns3:system ;
+    rdfs:label "Solar System" ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:body ;
+    :label "body" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:direct-02 ;
+    :label "direct-02" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:dwarf ;
+    :label "dwarf" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:large ;
+    :label "large" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:more ;
+    :label "more" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:most ;
+    :label "most" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:remain-01 ;
+    :label "remain-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:sun ;
+    :label "sun" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:system ;
+    :label "system" .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :edge_a_r :leaf_remain-01_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_body_b ;
+    :edge_a2_o3 :leaf_object_o3 ;
+    :edge_a2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_dwarf_d2 a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d2 .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m :leaf_most_m ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_quant_8 :value_8 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d2 :leaf_dwarf_d2 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_remain-01_r a :AMR_Leaf ;
+    :edge_r_a2 :leaf_and_a2 ;
+    :hasConcept :concept_remain-01 ;
+    :hasVariable :variable_r .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+:leaf_system_s4 a :AMR_Leaf ;
+    :edge_s4_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s4 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_8 a :AMR_Value ;
+    rdfs:label "8" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> ;
+    :label "d2" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> ;
+    :label "p2" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s4> ;
+    :label "s4" ;
+    :name "Solar System" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> ;
+    ns3:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> a ns3:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> ;
+    ns11:have-degree-91.ARG5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> a ns3:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> a ns21:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> a ns21:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:quant "8" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> a ns3:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> a ns3:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> a ns3:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:direct-02 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:remain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:body a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:dwarf a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:large a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns21:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:sun a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:system a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:more a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:most a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:object ;
+    :label "object" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:small ;
+    :label "small" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_s3 :leaf_small_s3 ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> a ns3:body ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> a ns3:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> a ns3:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:object a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:small a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:and a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Structure a owl:Class .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..fc90c77523830a9d8a65a029064eac8f83f250c6
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1608 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG5 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns3:op1 a ns21:Role .
+
+ns3:op2 a ns21:Role .
+
+ns3:op3 a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_b a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_r a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_s3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_d_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG5 ;
+    :hasRoleID "ARG5" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o2_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o2_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p2_d2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p9_ARG0_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_quant_8 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_r_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s4_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-02 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-02" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_direct_d a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_orbit_o2,
+        net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_orbit-01_o2 .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s4,
+        net:individual_SolarSystem_s4 ;
+    :role_ARG1 net:atomClass_body_b,
+        net:compositeClass_small-body_b ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_body_b,
+        :leaf_system_s4 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_dwarf_d2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_dwarf_d2 ;
+    net:coverBaseNode :leaf_dwarf_d2 ;
+    net:coverNode :leaf_dwarf_d2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "dwarf" ;
+    net:hasMotherClassNet net:atomClass_dwarf_d2 ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:individual_small_s3 a net:Individual_Net ;
+    net:composeFrom net:atomClass_small_s3 ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "small" ;
+    net:hasMotherClassNet net:atomClass_small_s3 ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:phenomena_degree_h ;
+    :role_op2 net:atomProperty_remain_r ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o3 ;
+    :role_ARG2 net:atomClass_small_s2 ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-02" ;
+    ns21:has-sentence "Of the objects that orbit the Sun directly, the largest are the eight planets, with the remainder being smaller objects, the dwarf planets and small Solar System bodies." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s4> a ns3:system ;
+    rdfs:label "Solar System" ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_body rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:body ;
+    :label "body" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:direct-02 ;
+    :label "direct-02" .
+
+:concept_dwarf rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:dwarf ;
+    :label "dwarf" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:large ;
+    :label "large" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:more ;
+    :label "more" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:most ;
+    :label "most" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:remain-01 ;
+    :label "remain-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:sun ;
+    :label "sun" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:system ;
+    :label "system" .
+
+:role_ARG5 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> ;
+    :label "a2" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+    :label "b" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> ;
+    :label "d2" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> ;
+    :label "p2" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s4> ;
+    :label "s4" ;
+    :name "Solar System" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_orbit_o2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:composeFrom net:atomProperty_orbit_o2 ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:value_8_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_small_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s2 ;
+    net:coverNode :leaf_small_s2 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_remain_r a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_body_b,
+        net:atomClass_object_o3,
+        net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2,
+        net:compositeClass_small-body_b,
+        net:phenomena_conjunction-AND_a2 ;
+    net:coverBaseNode :leaf_remain-01_r ;
+    net:coverNode :leaf_remain-01_r ;
+    net:hasNaming "remain" ;
+    net:hasPropertyName "remain" ;
+    net:hasPropertyName01 "remaining" ;
+    net:hasPropertyName10 "remain-by" ;
+    net:hasPropertyName12 "remain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2 .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_SolarSystem_s4 a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s4 ;
+    net:coverNode :leaf_system_s4 ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s4 ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_object_o3 ;
+    :role_op2 net:atomClass_planet_p2,
+        net:compositeClass_dwarf-planet_p2 ;
+    :role_op3 net:atomClass_body_b,
+        net:compositeClass_small-body_b ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_most_m ;
+    :role_ARG5 net:atomClass_object_o ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:value_8_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_8 ;
+    net:hasNaming "8" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:hasValueLabel "8" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> ;
+    ns3:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> a ns3:dwarf ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> ;
+    ns11:have-degree-91.ARG5 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#l> a ns3:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m> a ns21:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#m2> a ns21:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o2> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:quant "8" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s> a ns3:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s2> a ns3:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> a ns3:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:direct-02 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:remain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:body a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:dwarf a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:large a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns21:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:sun a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:system a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:more a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:most a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:object ;
+    :label "object" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:small ;
+    :label "small" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o2 :leaf_orbit-01_o2 ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s4 :leaf_system_s4 ;
+    :edge_p9_ARG1_b :leaf_body_b ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m2 :leaf_more_m2 ;
+    :edge_h2_o3 :leaf_object_o3 ;
+    :edge_h2_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_8 a :AMR_Value ;
+    rdfs:label "8" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_sun_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_system_s4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s4 ;
+    net:coverNode :leaf_system_s4 ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomProperty_orbit_o2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_orbit-01_o2 ;
+    net:coverNode :leaf_orbit-01_o2 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_sun_s .
+
+net:compositeClass_dwarf-planet_p2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_dwarf_d2 ;
+    net:composeFrom net:atomClass_dwarf_d2,
+        net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_dwarf_d2,
+        :leaf_planet_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "dwarf-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#b> a ns3:body ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#s3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o> a ns3:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-02#o3> a ns3:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:object a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:small a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:and a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :edge_a_r :leaf_remain-01_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m :leaf_most_m ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_quant_8 :value_8 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_remain-01_r a :AMR_Leaf ;
+    :edge_r_a2 :leaf_and_a2 ;
+    :hasConcept :concept_remain-01 ;
+    :hasVariable :variable_r .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_object_o3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_object_o3 ;
+    net:coverNode :leaf_object_o3 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:compositeClass_small-body_b a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_small_s3 ;
+    net:composeFrom net:atomClass_body_b,
+        net:atomClass_small_s3 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b,
+        :leaf_small_s3 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_body_b ;
+    net:hasNaming "small-body" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_b :leaf_body_b ;
+    :edge_a2_o3 :leaf_object_o3 ;
+    :edge_a2_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_object_o3 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o3 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_dwarf_d2 ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_object_o a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_d2 :leaf_dwarf_d2 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_body_b a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_small_s3 ;
+    net:coverBaseNode :leaf_body_b ;
+    net:coverNode :leaf_body_b ;
+    net:hasClassName "body" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "body" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_dwarf_d2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_dwarf_d2 ;
+    net:coverNode :leaf_dwarf_d2 ;
+    net:hasClassName "dwarf" ;
+    net:hasNaming "dwarf" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:atomClass_small_s3 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasClassName "small" ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-02" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Structure a owl:Class .
+
+:leaf_dwarf_d2 a :AMR_Leaf ;
+    :hasConcept :concept_dwarf ;
+    :hasVariable :variable_d2 .
+
+:leaf_orbit-01_o2 a :AMR_Leaf ;
+    :edge_o2_o :leaf_object_o ;
+    :edge_o2_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o2 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:leaf_system_s4 a :AMR_Leaf ;
+    :edge_s4_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s4 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_body_b a :AMR_Leaf ;
+    :edge_b_s3 :leaf_small_s3 ;
+    :hasConcept :concept_body ;
+    :hasVariable :variable_b .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..9614c0322ea0b9572dd7deb35d174d9fe8af7d6a
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-2/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,87 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#direct> a owl:ObjectProperty ;
+    rdfs:label "direct" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#remain> a owl:ObjectProperty ;
+    rdfs:label "remain" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#small-body> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#body> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#body> a owl:Class ;
+    rdfs:label "body" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#dwarf> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#dwarf> ;
+    rdfs:label "dwarf" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#small> ;
+    rdfs:label "small" ;
+    rdfs:subClassOf ns1:Entity,
+        ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-02" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..05af209052c32bf421ff9e2cee000c9dc1c24c12
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,856 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e> a ns21:equal-01 ;
+    ns21:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> ;
+    ns21:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e2> a ns21:extend-01 ;
+    ns21:extend-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> ;
+    ns21:extend-01.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
+    ns3:direction <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o> a ns21:oppose-01 ;
+    ns21:oppose-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-20" ;
+    ns1:has-sentence "The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s2> a ns21:scatter-01 ;
+    ns21:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns21:equal-01.ARG1 a ns21:FrameRole .
+
+ns21:equal-01.ARG2 a ns21:FrameRole .
+
+ns21:extend-01.ARG0 a ns21:FrameRole .
+
+ns21:extend-01.ARG4 a ns21:FrameRole .
+
+ns21:oppose-01.ARG0 a ns21:FrameRole .
+
+ns21:pressure-01.ARG0 a ns21:FrameRole .
+
+ns21:scatter-01.ARG1 a ns21:FrameRole .
+
+ns3:direction a ns1:Role .
+
+ns3:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns1:Role .
+
+ns3:part a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> a ns3:disc ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> a ns3:heliopause .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> a ns3:interstellar .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> a ns1:medium ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> a ns3:out .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> a ns21:pressure-01 ;
+    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> a ns3:sun .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> a ns3:wind ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:equal-01 a ns1:Frame .
+
+ns21:extend-01 a ns1:Frame .
+
+ns21:oppose-01 a ns1:Frame .
+
+ns21:scatter-01 a ns1:Frame .
+
+ns3:disc a ns1:Concept .
+
+ns3:edge a ns1:Concept .
+
+ns3:heliopause a ns1:Concept .
+
+ns3:interstellar a ns1:Concept .
+
+ns3:out a ns1:Concept .
+
+ns3:point a ns1:Concept .
+
+ns3:sun a ns1:Concept .
+
+ns3:wind a ns1:Concept .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:medium a ns1:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> a ns3:edge .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> a ns21:pressure-01 ;
+    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> .
+
+ns21:pressure-01 a ns1:Frame .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> a ns3:point ;
+    ns3:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns21:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..0f2ec3eefb5be25446d19af044c44957737fc4fb
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1629 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns21:equal-01.ARG1 a ns21:FrameRole .
+
+ns21:equal-01.ARG2 a ns21:FrameRole .
+
+ns21:extend-01.ARG0 a ns21:FrameRole .
+
+ns21:extend-01.ARG4 a ns21:FrameRole .
+
+ns21:oppose-01.ARG0 a ns21:FrameRole .
+
+ns21:pressure-01.ARG0 a ns21:FrameRole .
+
+ns21:scatter-01.ARG1 a ns21:FrameRole .
+
+ns3:direction a ns1:Role .
+
+ns3:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_e2_e3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_e2_o2 a :AMR_Edge ;
+    :hasRoleID "direction" .
+
+:edge_e2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_o_p3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_w a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p3_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG0_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_e3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_h a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_s2_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_w_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-20 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#root01> ;
+    :hasRootLeaf :leaf_point_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-20" ;
+    :hasSentenceStatement "The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#disc-hasPart-edge> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#hasPart> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#edge> ],
+        <https://tenet.tetras-libre.fr/extract-result#disc> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#extend> a owl:ObjectProperty ;
+    rdfs:label "extend" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#heliopause> a owl:Class ;
+    rdfs:label "heliopause" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#interstellar-medium> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#medium> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#oppose> a owl:ObjectProperty ;
+    rdfs:label "oppose" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#out> a owl:Class ;
+    rdfs:label "out" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#pressure-equal-point> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#equal> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#point> ],
+        <https://tenet.tetras-libre.fr/extract-result#pressure> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#pressure-equal-pressure> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#equal> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#pressure> ],
+        <https://tenet.tetras-libre.fr/extract-result#pressure> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#scatter> a owl:ObjectProperty ;
+    rdfs:label "scatter" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun-wind> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#wind> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_out_o2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_out_o2 ;
+    net:coverNode :leaf_out_o2 ;
+    net:hasClassName "out" ;
+    net:hasNaming "out" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_extend_e2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_point_p ;
+    :role_ARG4 net:atomClass_edge_e3 ;
+    net:coverBaseNode :leaf_extend-01_e2 ;
+    net:coverNode :leaf_extend-01_e2 ;
+    net:hasNaming "extend" ;
+    net:hasPropertyName "extend" ;
+    net:hasPropertyName01 "extending" ;
+    net:hasPropertyName10 "extend-by" ;
+    net:hasPropertyName12 "extend-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_edge_e3,
+        :leaf_point_p .
+
+net:atomProperty_oppose_o a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_pressure_p3,
+        net:atomProperty_pressure_p3 ;
+    net:coverBaseNode :leaf_oppose-01_o ;
+    net:coverNode :leaf_oppose-01_o ;
+    net:hasNaming "oppose" ;
+    net:hasPropertyName "oppose" ;
+    net:hasPropertyName01 "opposeing" ;
+    net:hasPropertyName10 "oppose-by" ;
+    net:hasPropertyName12 "oppose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_pressure-01_p3 .
+
+net:atomProperty_scatter_s2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_scatter-01_s2 ;
+    net:coverNode :leaf_scatter-01_s2 ;
+    net:hasNaming "scatter" ;
+    net:hasPropertyName "scatter" ;
+    net:hasPropertyName01 "scattering" ;
+    net:hasPropertyName10 "scatter-by" ;
+    net:hasPropertyName12 "scatter-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_disc_d .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_disc-hasPart-edge_d a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_disc_d,
+        net:atomClass_edge_e3,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_disc_d ;
+    net:coverNode :leaf_disc_d,
+        :leaf_edge_e3,
+        :leaf_hasPart_p9 ;
+    net:hasMotherClassNet net:atomClass_disc_d ;
+    net:hasNaming "disc-hasPart-edge" ;
+    net:hasRestriction net:restriction_hasPart-edge_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:compositeClass_pressure-equal-point_p2 a net:Composite_Class_Net ;
+    :role_ARG0 net:atomClass_wind_w,
+        net:compositeClass_sun-wind_w ;
+    net:composeFrom net:atomClass_point_p,
+        net:atomClass_pressure_p2,
+        net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_pressure-01_p2 ;
+    net:coverNode :leaf_equal-01_e,
+        :leaf_point_p,
+        :leaf_pressure-01_p2 ;
+    net:hasMotherClassNet net:atomClass_pressure_p2 ;
+    net:hasNaming "pressure-equal-point" ;
+    net:hasRestriction net:restriction_equal-point_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:compositeClass_pressure-equal-pressure_p2 a net:Composite_Class_Net ;
+    :role_ARG0 net:atomClass_wind_w,
+        net:compositeClass_sun-wind_w ;
+    net:composeFrom net:atomClass_pressure_p2,
+        net:atomClass_pressure_p3,
+        net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_pressure-01_p2 ;
+    net:coverNode :leaf_equal-01_e,
+        :leaf_pressure-01_p2,
+        :leaf_pressure-01_p3 ;
+    net:hasMotherClassNet net:atomClass_pressure_p2 ;
+    net:hasNaming "pressure-equal-pressure" ;
+    net:hasRestriction net:restriction_equal-pressure_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_interstellar_ii a net:Individual_Net ;
+    net:composeFrom net:atomClass_interstellar_ii ;
+    net:coverBaseNode :leaf_interstellar_ii ;
+    net:coverNode :leaf_interstellar_ii ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "interstellar" ;
+    net:hasMotherClassNet net:atomClass_interstellar_ii ;
+    net:hasNaming "interstellar" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:individual_sun_s a net:Individual_Net ;
+    net:composeFrom net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "sun" ;
+    net:hasMotherClassNet net:atomClass_sun_s ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e> a ns21:equal-01 ;
+    ns21:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> ;
+    ns21:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e2> a ns21:extend-01 ;
+    ns21:extend-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> ;
+    ns21:extend-01.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
+    ns3:direction <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o> a ns21:oppose-01 ;
+    ns21:oppose-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-20" ;
+    ns1:has-sentence "The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s2> a ns21:scatter-01 ;
+    ns21:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:disc ;
+    :label "disc" .
+
+:concept_edge rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:edge ;
+    :label "edge" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:equal-01 ;
+    :label "equal-01" .
+
+:concept_extend-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:extend-01 ;
+    :label "extend-01" .
+
+:concept_heliopause rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:heliopause ;
+    :label "heliopause" .
+
+:concept_interstellar rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:interstellar ;
+    :label "interstellar" .
+
+:concept_medium rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:medium ;
+    :label "medium" .
+
+:concept_oppose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:oppose-01 ;
+    :label "oppose-01" .
+
+:concept_out rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:out ;
+    :label "out" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_point rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:point ;
+    :label "point" .
+
+:concept_scatter-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:scatter-01 ;
+    :label "scatter-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:sun ;
+    :label "sun" .
+
+:concept_wind rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:wind ;
+    :label "wind" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e> ;
+    :label "e" .
+
+:variable_e2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e2> ;
+    :label "e2" .
+
+:variable_e3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
+    :label "e3" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> ;
+    :label "h" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> ;
+    :label "ii" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> ;
+    :label "m" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> ;
+    :label "o2" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> ;
+    :label "p2" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+    :label "p3" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s2> ;
+    :label "s2" .
+
+:variable_w a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> ;
+    :label "w" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#disc> a owl:Class ;
+    rdfs:label "disc" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#edge> a owl:Class ;
+    rdfs:label "edge" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#interstellar> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#interstellar> ;
+    rdfs:label "interstellar" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#medium> a owl:Class ;
+    rdfs:label "medium" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#point> a owl:Class ;
+    rdfs:label "point" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#sun> ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#wind> a owl:Class ;
+    rdfs:label "wind" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:compositeClass_interstellar-medium_m a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_interstellar_ii ;
+    net:composeFrom net:atomClass_interstellar_ii,
+        net:atomClass_medium_m ;
+    net:coverBaseNode :leaf_medium_m ;
+    net:coverNode :leaf_interstellar_ii,
+        :leaf_medium_m ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_medium_m ;
+    net:hasNaming "interstellar-medium" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_equal-point_e a net:Restriction_Net ;
+    net:composeFrom net:atomClass_point_p,
+        net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_equal-01_e ;
+    net:coverNode :leaf_equal-01_e,
+        :leaf_point_p ;
+    net:hasNaming "equal-point" ;
+    net:hasRestrictionNetValue net:atomClass_point_p ;
+    net:hasRestrictionOnProperty net:atomProperty_equal_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:restriction_equal-pressure_e a net:Restriction_Net ;
+    net:composeFrom net:atomClass_pressure_p3,
+        net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_equal-01_e ;
+    net:coverNode :leaf_equal-01_e,
+        :leaf_pressure-01_p3 ;
+    net:hasNaming "equal-pressure" ;
+    net:hasRestrictionNetValue net:atomClass_pressure_p3 ;
+    net:hasRestrictionOnProperty net:atomProperty_equal_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:restriction_hasPart-edge_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_edge_e3,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_edge_e3,
+        :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart-edge" ;
+    net:hasRestrictionNetValue net:atomClass_edge_e3 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> a ns3:disc ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> a ns3:heliopause ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> a ns3:interstellar ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> a ns1:medium ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> a ns3:out ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> a ns21:pressure-01 ;
+    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> a ns3:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> a ns3:wind ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:equal-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:extend-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:oppose-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:scatter-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:disc a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:edge a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:heliopause a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:interstellar a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:out a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns1:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:point a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:sun a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:wind a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:medium a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_pressure-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:pressure-01 ;
+    :label "pressure-01" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_extend-01_e2 a :AMR_Leaf ;
+    :edge_e2_e3 :leaf_edge_e3 ;
+    :edge_e2_o2 :leaf_out_o2 ;
+    :edge_e2_p :leaf_point_p ;
+    :hasConcept :concept_extend-01 ;
+    :hasVariable :variable_e2 .
+
+:leaf_oppose-01_o a :AMR_Leaf ;
+    :edge_o_p3 :leaf_pressure-01_p3 ;
+    :hasConcept :concept_oppose-01 ;
+    :hasVariable :variable_o .
+
+:leaf_scatter-01_s2 a :AMR_Leaf ;
+    :edge_s2_d :leaf_disc_d ;
+    :hasConcept :concept_scatter-01 ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+<https://tenet.tetras-libre.fr/extract-result#equal> a owl:ObjectProperty ;
+    rdfs:label "equal" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_heliopause_h a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_heliopause_h ;
+    net:coverNode :leaf_heliopause_h ;
+    net:hasClassName "heliopause" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "heliopause" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomProperty_pressure_p2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_wind_w,
+        net:compositeClass_sun-wind_w ;
+    net:coverBaseNode :leaf_pressure-01_p2 ;
+    net:coverNode :leaf_pressure-01_p2 ;
+    net:hasNaming "pressure" ;
+    net:hasPropertyName "pressure" ;
+    net:hasPropertyName01 "pressureing" ;
+    net:hasPropertyName10 "pressure-by" ;
+    net:hasPropertyName12 "pressure-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_wind_w .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> a ns3:edge ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> a ns21:pressure-01 ;
+    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:pressure-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_heliopause_h a :AMR_Leaf ;
+    :hasConcept :concept_heliopause ;
+    :hasVariable :variable_h .
+
+:leaf_out_o2 a :AMR_Leaf ;
+    :hasConcept :concept_out ;
+    :hasVariable :variable_o2 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+<https://tenet.tetras-libre.fr/extract-result#pressure> a owl:Class ;
+    rdfs:label "pressure" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-20" .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_medium_m a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_interstellar_ii ;
+    net:composeFrom net:atomProperty_medium_m ;
+    net:coverBaseNode :leaf_medium_m ;
+    net:coverNode :leaf_medium_m ;
+    net:hasClassName "medium" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "medium" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_disc_d ;
+    :role_ARG1 net:atomClass_edge_e3 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_disc_d,
+        :leaf_edge_e3 .
+
+net:atomProperty_medium_m a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_interstellar_ii ;
+    net:coverBaseNode :leaf_medium_m ;
+    net:coverNode :leaf_medium_m ;
+    net:hasNaming "medium" ;
+    net:hasPropertyName "medium" ;
+    net:hasPropertyName01 "mediuming" ;
+    net:hasPropertyName10 "medium-by" ;
+    net:hasPropertyName12 "medium-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_interstellar_ii .
+
+net:atomProperty_pressure_p3 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_medium_m,
+        net:atomProperty_medium_m,
+        net:compositeClass_interstellar-medium_m ;
+    net:coverBaseNode :leaf_pressure-01_p3 ;
+    net:coverNode :leaf_pressure-01_p3 ;
+    net:hasNaming "pressure" ;
+    net:hasPropertyName "pressure" ;
+    net:hasPropertyName01 "pressureing" ;
+    net:hasPropertyName10 "pressure-by" ;
+    net:hasPropertyName12 "pressure-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_medium_m .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> a ns3:point ;
+    ns3:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:atomClass_disc_d a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_disc_d ;
+    net:coverNode :leaf_disc_d ;
+    net:hasClassName "disc" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "disc" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:compositeClass_sun-wind_w a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_sun_s ;
+    net:composeFrom net:atomClass_sun_s,
+        net:atomClass_wind_w ;
+    net:coverBaseNode :leaf_wind_w ;
+    net:coverNode :leaf_sun_s,
+        :leaf_wind_w ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_wind_w ;
+    net:hasNaming "sun-wind" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_d :leaf_disc_d ;
+    :edge_p9_ARG1_e3 :leaf_edge_e3 ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:atomClass_edge_e3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_edge_e3 ;
+    net:coverNode :leaf_edge_e3 ;
+    net:hasClassName "edge" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "edge" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomClass_point_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_domain net:atomClass_heliopause_h ;
+    net:coverBaseNode :leaf_point_p ;
+    net:coverNode :leaf_point_p ;
+    net:hasClassName "point" ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_heliopause_h ;
+    net:hasNaming "point" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomClass_pressure_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_wind_w,
+        net:compositeClass_sun-wind_w ;
+    net:composeFrom net:atomProperty_pressure_p2 ;
+    net:coverBaseNode :leaf_pressure-01_p2 ;
+    net:coverNode :leaf_pressure-01_p2 ;
+    net:hasClassName "pressure" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "pressure" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomClass_pressure_p3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomProperty_medium_m ;
+    net:composeFrom net:atomProperty_pressure_p3 ;
+    net:coverBaseNode :leaf_pressure-01_p3 ;
+    net:coverNode :leaf_pressure-01_p3 ;
+    net:hasClassName "pressure" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "pressure" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomClass_sun_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+:leaf_wind_w a :AMR_Leaf ;
+    :edge_w_s :leaf_sun_s ;
+    :hasConcept :concept_wind ;
+    :hasVariable :variable_w .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_interstellar_ii a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_interstellar_ii ;
+    net:coverNode :leaf_interstellar_ii ;
+    net:hasClassName "interstellar" ;
+    net:hasNaming "interstellar" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomClass_wind_w a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_wind_w ;
+    net:coverNode :leaf_wind_w ;
+    net:hasClassName "wind" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "wind" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomProperty_equal_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_pressure_p2,
+        net:atomProperty_pressure_p2 ;
+    :role_ARG2 net:atomClass_point_p,
+        net:atomClass_pressure_p3,
+        net:atomProperty_pressure_p3 ;
+    net:coverBaseNode :leaf_equal-01_e ;
+    net:coverNode :leaf_equal-01_e ;
+    net:hasNaming "equal" ;
+    net:hasPropertyName "equal" ;
+    net:hasPropertyName01 "equaling" ;
+    net:hasPropertyName10 "equal-by" ;
+    net:hasPropertyName12 "equal-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_point_p,
+        :leaf_pressure-01_p2,
+        :leaf_pressure-01_p3 .
+
+ns21:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_interstellar_ii a :AMR_Leaf ;
+    :hasConcept :concept_interstellar ;
+    :hasVariable :variable_ii .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_disc_d a :AMR_Leaf ;
+    :hasConcept :concept_disc ;
+    :hasVariable :variable_d .
+
+:leaf_edge_e3 a :AMR_Leaf ;
+    :hasConcept :concept_edge ;
+    :hasVariable :variable_e3 .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_p :leaf_point_p ;
+    :edge_e_p2 :leaf_pressure-01_p2 ;
+    :edge_e_p3 :leaf_pressure-01_p3 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_medium_m a :AMR_Leaf ;
+    :edge_m_ii :leaf_interstellar_ii ;
+    :hasConcept :concept_medium ;
+    :hasVariable :variable_m .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_point_p a :AMR_Leaf ;
+    :edge_p_h :leaf_heliopause_h ;
+    :hasConcept :concept_point ;
+    :hasVariable :variable_p .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_pressure-01_p2 a :AMR_Leaf ;
+    :edge_p2_w :leaf_wind_w ;
+    :hasConcept :concept_pressure-01 ;
+    :hasVariable :variable_p2 .
+
+:leaf_pressure-01_p3 a :AMR_Leaf ;
+    :edge_p3_m :leaf_medium_m ;
+    :hasConcept :concept_pressure-01 ;
+    :hasVariable :variable_p3 .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..1bc6c50c8fea344efceff35ad5f6ee4b800eed94
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1157 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns21:equal-01.ARG1 a ns21:FrameRole .
+
+ns21:equal-01.ARG2 a ns21:FrameRole .
+
+ns21:extend-01.ARG0 a ns21:FrameRole .
+
+ns21:extend-01.ARG4 a ns21:FrameRole .
+
+ns21:oppose-01.ARG0 a ns21:FrameRole .
+
+ns21:pressure-01.ARG0 a ns21:FrameRole .
+
+ns21:scatter-01.ARG1 a ns21:FrameRole .
+
+ns3:direction a ns1:Role .
+
+ns3:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_e2_e3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_e2_o2 a :AMR_Edge ;
+    :hasRoleID "direction" .
+
+:edge_e2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_o_p3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_w a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p3_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG0_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_e3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_h a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_s2_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_w_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_p :leaf_point_p ;
+    :edge_e_p2 :leaf_pressure-01_p2 ;
+    :edge_e_p3 :leaf_pressure-01_p3 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_extend-01_e2 a :AMR_Leaf ;
+    :edge_e2_e3 :leaf_edge_e3 ;
+    :edge_e2_o2 :leaf_out_o2 ;
+    :edge_e2_p :leaf_point_p ;
+    :hasConcept :concept_extend-01 ;
+    :hasVariable :variable_e2 .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_d :leaf_disc_d ;
+    :edge_p9_ARG1_e3 :leaf_edge_e3 ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_oppose-01_o a :AMR_Leaf ;
+    :edge_o_p3 :leaf_pressure-01_p3 ;
+    :hasConcept :concept_oppose-01 ;
+    :hasVariable :variable_o .
+
+:leaf_scatter-01_s2 a :AMR_Leaf ;
+    :edge_s2_d :leaf_disc_d ;
+    :hasConcept :concept_scatter-01 ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-20 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#root01> ;
+    :hasRootLeaf :leaf_point_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-20" ;
+    :hasSentenceStatement "The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e> a ns21:equal-01 ;
+    ns21:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> ;
+    ns21:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e2> a ns21:extend-01 ;
+    ns21:extend-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> ;
+    ns21:extend-01.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
+    ns3:direction <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o> a ns21:oppose-01 ;
+    ns21:oppose-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-20" ;
+    ns1:has-sentence "The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s2> a ns21:scatter-01 ;
+    ns21:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:disc ;
+    :label "disc" .
+
+:concept_edge rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:edge ;
+    :label "edge" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:equal-01 ;
+    :label "equal-01" .
+
+:concept_extend-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:extend-01 ;
+    :label "extend-01" .
+
+:concept_heliopause rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:heliopause ;
+    :label "heliopause" .
+
+:concept_interstellar rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:interstellar ;
+    :label "interstellar" .
+
+:concept_medium rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:medium ;
+    :label "medium" .
+
+:concept_oppose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:oppose-01 ;
+    :label "oppose-01" .
+
+:concept_out rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:out ;
+    :label "out" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_point rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:point ;
+    :label "point" .
+
+:concept_scatter-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:scatter-01 ;
+    :label "scatter-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:sun ;
+    :label "sun" .
+
+:concept_wind rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:wind ;
+    :label "wind" .
+
+:leaf_heliopause_h a :AMR_Leaf ;
+    :hasConcept :concept_heliopause ;
+    :hasVariable :variable_h .
+
+:leaf_interstellar_ii a :AMR_Leaf ;
+    :hasConcept :concept_interstellar ;
+    :hasVariable :variable_ii .
+
+:leaf_medium_m a :AMR_Leaf ;
+    :edge_m_ii :leaf_interstellar_ii ;
+    :hasConcept :concept_medium ;
+    :hasVariable :variable_m .
+
+:leaf_out_o2 a :AMR_Leaf ;
+    :hasConcept :concept_out ;
+    :hasVariable :variable_o2 .
+
+:leaf_pressure-01_p2 a :AMR_Leaf ;
+    :edge_p2_w :leaf_wind_w ;
+    :hasConcept :concept_pressure-01 ;
+    :hasVariable :variable_p2 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+:leaf_wind_w a :AMR_Leaf ;
+    :edge_w_s :leaf_sun_s ;
+    :hasConcept :concept_wind ;
+    :hasVariable :variable_w .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e> ;
+    :label "e" .
+
+:variable_e2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e2> ;
+    :label "e2" .
+
+:variable_e3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
+    :label "e3" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> ;
+    :label "h" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> ;
+    :label "ii" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> ;
+    :label "m" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> ;
+    :label "o2" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> ;
+    :label "p2" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+    :label "p3" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s2> ;
+    :label "s2" .
+
+:variable_w a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> ;
+    :label "w" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> a ns3:disc ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> a ns3:heliopause ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> a ns3:interstellar ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> a ns1:medium ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> a ns3:out ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> a ns21:pressure-01 ;
+    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> a ns3:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> a ns3:wind ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:equal-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:extend-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:oppose-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:scatter-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:disc a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:edge a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:heliopause a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:interstellar a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:out a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns1:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:point a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:sun a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:wind a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:medium a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_pressure-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:pressure-01 ;
+    :label "pressure-01" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_disc_d a :AMR_Leaf ;
+    :hasConcept :concept_disc ;
+    :hasVariable :variable_d .
+
+:leaf_edge_e3 a :AMR_Leaf ;
+    :hasConcept :concept_edge ;
+    :hasVariable :variable_e3 .
+
+:leaf_pressure-01_p3 a :AMR_Leaf ;
+    :edge_p3_m :leaf_medium_m ;
+    :hasConcept :concept_pressure-01 ;
+    :hasVariable :variable_p3 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> a ns3:edge ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> a ns21:pressure-01 ;
+    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:pressure-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_point_p a :AMR_Leaf ;
+    :edge_p_h :leaf_heliopause_h ;
+    :hasConcept :concept_point ;
+    :hasVariable :variable_p .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> a ns3:point ;
+    ns3:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns21:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..b9f86ee1632ea6b1b655d1c1c553774cfdb6c955
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1521 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns21:equal-01.ARG1 a ns21:FrameRole .
+
+ns21:equal-01.ARG2 a ns21:FrameRole .
+
+ns21:extend-01.ARG0 a ns21:FrameRole .
+
+ns21:extend-01.ARG4 a ns21:FrameRole .
+
+ns21:oppose-01.ARG0 a ns21:FrameRole .
+
+ns21:pressure-01.ARG0 a ns21:FrameRole .
+
+ns21:scatter-01.ARG1 a ns21:FrameRole .
+
+ns3:direction a ns1:Role .
+
+ns3:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:edge_e2_e3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_e2_o2 a :AMR_Edge ;
+    :hasRoleID "direction" .
+
+:edge_e2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_o_p3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p2_w a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p3_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG0_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_e3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_h a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_s2_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_w_s a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-20 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#root01> ;
+    :hasRootLeaf :leaf_point_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-20" ;
+    :hasSentenceStatement "The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_out_o2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_out_o2 ;
+    net:coverNode :leaf_out_o2 ;
+    net:hasClassName "out" ;
+    net:hasNaming "out" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_extend_e2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_point_p ;
+    :role_ARG4 net:atomClass_edge_e3 ;
+    net:coverBaseNode :leaf_extend-01_e2 ;
+    net:coverNode :leaf_extend-01_e2 ;
+    net:hasNaming "extend" ;
+    net:hasPropertyName "extend" ;
+    net:hasPropertyName01 "extending" ;
+    net:hasPropertyName10 "extend-by" ;
+    net:hasPropertyName12 "extend-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_edge_e3,
+        :leaf_point_p .
+
+net:atomProperty_oppose_o a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_pressure_p3,
+        net:atomProperty_pressure_p3 ;
+    net:coverBaseNode :leaf_oppose-01_o ;
+    net:coverNode :leaf_oppose-01_o ;
+    net:hasNaming "oppose" ;
+    net:hasPropertyName "oppose" ;
+    net:hasPropertyName01 "opposeing" ;
+    net:hasPropertyName10 "oppose-by" ;
+    net:hasPropertyName12 "oppose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_pressure-01_p3 .
+
+net:atomProperty_scatter_s2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_scatter-01_s2 ;
+    net:coverNode :leaf_scatter-01_s2 ;
+    net:hasNaming "scatter" ;
+    net:hasPropertyName "scatter" ;
+    net:hasPropertyName01 "scattering" ;
+    net:hasPropertyName10 "scatter-by" ;
+    net:hasPropertyName12 "scatter-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_disc_d .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_disc-hasPart-edge_d a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_disc_d,
+        net:atomClass_edge_e3,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_disc_d ;
+    net:coverNode :leaf_disc_d,
+        :leaf_edge_e3,
+        :leaf_hasPart_p9 ;
+    net:hasMotherClassNet net:atomClass_disc_d ;
+    net:hasNaming "disc-hasPart-edge" ;
+    net:hasRestriction net:restriction_hasPart-edge_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:compositeClass_pressure-equal-point_p2 a net:Composite_Class_Net ;
+    :role_ARG0 net:atomClass_wind_w,
+        net:compositeClass_sun-wind_w ;
+    net:composeFrom net:atomClass_point_p,
+        net:atomClass_pressure_p2,
+        net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_pressure-01_p2 ;
+    net:coverNode :leaf_equal-01_e,
+        :leaf_point_p,
+        :leaf_pressure-01_p2 ;
+    net:hasMotherClassNet net:atomClass_pressure_p2 ;
+    net:hasNaming "pressure-equal-point" ;
+    net:hasRestriction net:restriction_equal-point_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:compositeClass_pressure-equal-pressure_p2 a net:Composite_Class_Net ;
+    :role_ARG0 net:atomClass_wind_w,
+        net:compositeClass_sun-wind_w ;
+    net:composeFrom net:atomClass_pressure_p2,
+        net:atomClass_pressure_p3,
+        net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_pressure-01_p2 ;
+    net:coverNode :leaf_equal-01_e,
+        :leaf_pressure-01_p2,
+        :leaf_pressure-01_p3 ;
+    net:hasMotherClassNet net:atomClass_pressure_p2 ;
+    net:hasNaming "pressure-equal-pressure" ;
+    net:hasRestriction net:restriction_equal-pressure_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_interstellar_ii a net:Individual_Net ;
+    net:composeFrom net:atomClass_interstellar_ii ;
+    net:coverBaseNode :leaf_interstellar_ii ;
+    net:coverNode :leaf_interstellar_ii ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "interstellar" ;
+    net:hasMotherClassNet net:atomClass_interstellar_ii ;
+    net:hasNaming "interstellar" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:individual_sun_s a net:Individual_Net ;
+    net:composeFrom net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "sun" ;
+    net:hasMotherClassNet net:atomClass_sun_s ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e> a ns21:equal-01 ;
+    ns21:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> ;
+    ns21:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e2> a ns21:extend-01 ;
+    ns21:extend-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> ;
+    ns21:extend-01.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
+    ns3:direction <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o> a ns21:oppose-01 ;
+    ns21:oppose-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-20" ;
+    ns1:has-sentence "The heliopause is the point at which pressure from the solar wind is equal to the opposing pressure of the interstellar medium; it extends out to the edge of the scattered disc." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s2> a ns21:scatter-01 ;
+    ns21:scatter-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:disc ;
+    :label "disc" .
+
+:concept_edge rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:edge ;
+    :label "edge" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:equal-01 ;
+    :label "equal-01" .
+
+:concept_extend-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:extend-01 ;
+    :label "extend-01" .
+
+:concept_heliopause rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:heliopause ;
+    :label "heliopause" .
+
+:concept_interstellar rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:interstellar ;
+    :label "interstellar" .
+
+:concept_medium rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:medium ;
+    :label "medium" .
+
+:concept_oppose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:oppose-01 ;
+    :label "oppose-01" .
+
+:concept_out rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:out ;
+    :label "out" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_point rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:point ;
+    :label "point" .
+
+:concept_scatter-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:scatter-01 ;
+    :label "scatter-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:sun ;
+    :label "sun" .
+
+:concept_wind rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:wind ;
+    :label "wind" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e> ;
+    :label "e" .
+
+:variable_e2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e2> ;
+    :label "e2" .
+
+:variable_e3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
+    :label "e3" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> ;
+    :label "h" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> ;
+    :label "ii" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> ;
+    :label "m" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> ;
+    :label "o2" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> ;
+    :label "p2" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> ;
+    :label "p3" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s2> ;
+    :label "s2" .
+
+:variable_w a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> ;
+    :label "w" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:compositeClass_interstellar-medium_m a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_interstellar_ii ;
+    net:composeFrom net:atomClass_interstellar_ii,
+        net:atomClass_medium_m ;
+    net:coverBaseNode :leaf_medium_m ;
+    net:coverNode :leaf_interstellar_ii,
+        :leaf_medium_m ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_medium_m ;
+    net:hasNaming "interstellar-medium" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_equal-point_e a net:Restriction_Net ;
+    net:composeFrom net:atomClass_point_p,
+        net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_equal-01_e ;
+    net:coverNode :leaf_equal-01_e,
+        :leaf_point_p ;
+    net:hasNaming "equal-point" ;
+    net:hasRestrictionNetValue net:atomClass_point_p ;
+    net:hasRestrictionOnProperty net:atomProperty_equal_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:restriction_equal-pressure_e a net:Restriction_Net ;
+    net:composeFrom net:atomClass_pressure_p3,
+        net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_equal-01_e ;
+    net:coverNode :leaf_equal-01_e,
+        :leaf_pressure-01_p3 ;
+    net:hasNaming "equal-pressure" ;
+    net:hasRestrictionNetValue net:atomClass_pressure_p3 ;
+    net:hasRestrictionOnProperty net:atomProperty_equal_e ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:restriction_hasPart-edge_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_edge_e3,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_edge_e3,
+        :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart-edge" ;
+    net:hasRestrictionNetValue net:atomClass_edge_e3 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#d> a ns3:disc ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> a ns3:heliopause ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> a ns3:interstellar ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> a ns1:medium ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#o2> a ns3:out ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p2> a ns21:pressure-01 ;
+    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> a ns3:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#w> a ns3:wind ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:equal-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:extend-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:oppose-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:scatter-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:disc a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:edge a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:heliopause a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:interstellar a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:out a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns1:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:point a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:sun a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:wind a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:medium a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_pressure-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:pressure-01 ;
+    :label "pressure-01" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_extend-01_e2 a :AMR_Leaf ;
+    :edge_e2_e3 :leaf_edge_e3 ;
+    :edge_e2_o2 :leaf_out_o2 ;
+    :edge_e2_p :leaf_point_p ;
+    :hasConcept :concept_extend-01 ;
+    :hasVariable :variable_e2 .
+
+:leaf_oppose-01_o a :AMR_Leaf ;
+    :edge_o_p3 :leaf_pressure-01_p3 ;
+    :hasConcept :concept_oppose-01 ;
+    :hasVariable :variable_o .
+
+:leaf_scatter-01_s2 a :AMR_Leaf ;
+    :edge_s2_d :leaf_disc_d ;
+    :hasConcept :concept_scatter-01 ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_heliopause_h a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_heliopause_h ;
+    net:coverNode :leaf_heliopause_h ;
+    net:hasClassName "heliopause" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "heliopause" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomProperty_pressure_p2 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_wind_w,
+        net:compositeClass_sun-wind_w ;
+    net:coverBaseNode :leaf_pressure-01_p2 ;
+    net:coverNode :leaf_pressure-01_p2 ;
+    net:hasNaming "pressure" ;
+    net:hasPropertyName "pressure" ;
+    net:hasPropertyName01 "pressureing" ;
+    net:hasPropertyName10 "pressure-by" ;
+    net:hasPropertyName12 "pressure-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_wind_w .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#e3> a ns3:edge ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p3> a ns21:pressure-01 ;
+    ns21:pressure-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:pressure-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_heliopause_h a :AMR_Leaf ;
+    :hasConcept :concept_heliopause ;
+    :hasVariable :variable_h .
+
+:leaf_out_o2 a :AMR_Leaf ;
+    :hasConcept :concept_out ;
+    :hasVariable :variable_o2 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_medium_m a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_interstellar_ii ;
+    net:composeFrom net:atomProperty_medium_m ;
+    net:coverBaseNode :leaf_medium_m ;
+    net:coverNode :leaf_medium_m ;
+    net:hasClassName "medium" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "medium" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_disc_d ;
+    :role_ARG1 net:atomClass_edge_e3 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_disc_d,
+        :leaf_edge_e3 .
+
+net:atomProperty_medium_m a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_interstellar_ii ;
+    net:coverBaseNode :leaf_medium_m ;
+    net:coverNode :leaf_medium_m ;
+    net:hasNaming "medium" ;
+    net:hasPropertyName "medium" ;
+    net:hasPropertyName01 "mediuming" ;
+    net:hasPropertyName10 "medium-by" ;
+    net:hasPropertyName12 "medium-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_interstellar_ii .
+
+net:atomProperty_pressure_p3 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_medium_m,
+        net:atomProperty_medium_m,
+        net:compositeClass_interstellar-medium_m ;
+    net:coverBaseNode :leaf_pressure-01_p3 ;
+    net:coverNode :leaf_pressure-01_p3 ;
+    net:hasNaming "pressure" ;
+    net:hasPropertyName "pressure" ;
+    net:hasPropertyName01 "pressureing" ;
+    net:hasPropertyName10 "pressure-by" ;
+    net:hasPropertyName12 "pressure-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_medium_m .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#p> a ns3:point ;
+    ns3:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-20#h> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:atomClass_disc_d a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_disc_d ;
+    net:coverNode :leaf_disc_d ;
+    net:hasClassName "disc" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "disc" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:compositeClass_sun-wind_w a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_sun_s ;
+    net:composeFrom net:atomClass_sun_s,
+        net:atomClass_wind_w ;
+    net:coverBaseNode :leaf_wind_w ;
+    net:coverNode :leaf_sun_s,
+        :leaf_wind_w ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_wind_w ;
+    net:hasNaming "sun-wind" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_d :leaf_disc_d ;
+    :edge_p9_ARG1_e3 :leaf_edge_e3 ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:atomClass_edge_e3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_edge_e3 ;
+    net:coverNode :leaf_edge_e3 ;
+    net:hasClassName "edge" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "edge" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomClass_point_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_domain net:atomClass_heliopause_h ;
+    net:coverBaseNode :leaf_point_p ;
+    net:coverNode :leaf_point_p ;
+    net:hasClassName "point" ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_heliopause_h ;
+    net:hasNaming "point" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomClass_pressure_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_wind_w,
+        net:compositeClass_sun-wind_w ;
+    net:composeFrom net:atomProperty_pressure_p2 ;
+    net:coverBaseNode :leaf_pressure-01_p2 ;
+    net:coverNode :leaf_pressure-01_p2 ;
+    net:hasClassName "pressure" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "pressure" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomClass_pressure_p3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomProperty_medium_m ;
+    net:composeFrom net:atomProperty_pressure_p3 ;
+    net:coverBaseNode :leaf_pressure-01_p3 ;
+    net:coverNode :leaf_pressure-01_p3 ;
+    net:hasClassName "pressure" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "pressure" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomClass_sun_s a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+:leaf_wind_w a :AMR_Leaf ;
+    :edge_w_s :leaf_sun_s ;
+    :hasConcept :concept_wind ;
+    :hasVariable :variable_w .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_interstellar_ii a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_interstellar_ii ;
+    net:coverNode :leaf_interstellar_ii ;
+    net:hasClassName "interstellar" ;
+    net:hasNaming "interstellar" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomClass_wind_w a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_wind_w ;
+    net:coverNode :leaf_wind_w ;
+    net:hasClassName "wind" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "wind" ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" .
+
+net:atomProperty_equal_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_pressure_p2,
+        net:atomProperty_pressure_p2 ;
+    :role_ARG2 net:atomClass_point_p,
+        net:atomClass_pressure_p3,
+        net:atomProperty_pressure_p3 ;
+    net:coverBaseNode :leaf_equal-01_e ;
+    net:coverNode :leaf_equal-01_e ;
+    net:hasNaming "equal" ;
+    net:hasPropertyName "equal" ;
+    net:hasPropertyName01 "equaling" ;
+    net:hasPropertyName10 "equal-by" ;
+    net:hasPropertyName12 "equal-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-20" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_point_p,
+        :leaf_pressure-01_p2,
+        :leaf_pressure-01_p3 .
+
+ns21:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_interstellar_ii a :AMR_Leaf ;
+    :hasConcept :concept_interstellar ;
+    :hasVariable :variable_ii .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_disc_d a :AMR_Leaf ;
+    :hasConcept :concept_disc ;
+    :hasVariable :variable_d .
+
+:leaf_edge_e3 a :AMR_Leaf ;
+    :hasConcept :concept_edge ;
+    :hasVariable :variable_e3 .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_p :leaf_point_p ;
+    :edge_e_p2 :leaf_pressure-01_p2 ;
+    :edge_e_p3 :leaf_pressure-01_p3 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_medium_m a :AMR_Leaf ;
+    :edge_m_ii :leaf_interstellar_ii ;
+    :hasConcept :concept_medium ;
+    :hasVariable :variable_m .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_point_p a :AMR_Leaf ;
+    :edge_p_h :leaf_heliopause_h ;
+    :hasConcept :concept_point ;
+    :hasVariable :variable_p .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_pressure-01_p2 a :AMR_Leaf ;
+    :edge_p2_w :leaf_wind_w ;
+    :hasConcept :concept_pressure-01 ;
+    :hasVariable :variable_p2 .
+
+:leaf_pressure-01_p3 a :AMR_Leaf ;
+    :edge_p3_m :leaf_medium_m ;
+    :hasConcept :concept_pressure-01 ;
+    :hasVariable :variable_p3 .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..46b39de1f48864dced8523d588d963520433ffbd
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-20/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,112 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#disc-hasPart-edge> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#hasPart> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#edge> ],
+        <https://tenet.tetras-libre.fr/extract-result#disc> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#extend> a owl:ObjectProperty ;
+    rdfs:label "extend" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#heliopause> a owl:Class ;
+    rdfs:label "heliopause" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#interstellar-medium> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#medium> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#oppose> a owl:ObjectProperty ;
+    rdfs:label "oppose" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#out> a owl:Class ;
+    rdfs:label "out" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#pressure-equal-point> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#equal> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#point> ],
+        <https://tenet.tetras-libre.fr/extract-result#pressure> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#pressure-equal-pressure> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#equal> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#pressure> ],
+        <https://tenet.tetras-libre.fr/extract-result#pressure> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#scatter> a owl:ObjectProperty ;
+    rdfs:label "scatter" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun-wind> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#wind> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#disc> a owl:Class ;
+    rdfs:label "disc" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#edge> a owl:Class ;
+    rdfs:label "edge" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#interstellar> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#interstellar> ;
+    rdfs:label "interstellar" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#medium> a owl:Class ;
+    rdfs:label "medium" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#point> a owl:Class ;
+    rdfs:label "point" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#sun> ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#wind> a owl:Class ;
+    rdfs:label "wind" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#equal> a owl:ObjectProperty ;
+    rdfs:label "equal" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
+<https://tenet.tetras-libre.fr/extract-result#pressure> a owl:Class ;
+    rdfs:label "pressure" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-20" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..9f9fa74661ca96a98fdc4fb81c7415d87e7bf2de
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,862 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h> a ns21:have-degree-91 ;
+    ns21:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns21:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> ;
+    ns21:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#l> a ns21:long-03 ;
+    ns21:long-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-21" ;
+    ns1:has-sentence "The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t> a ns21:think-01 ;
+    ns21:think-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns21:exist-01.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG2 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG3 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG4 a ns21:FrameRole .
+
+ns21:long-03.ARG1 a ns21:FrameRole .
+
+ns21:possible-01.ARG1 a ns21:FrameRole .
+
+ns21:source-02.ARG0 a ns21:FrameRole .
+
+ns21:source-02.ARG1 a ns21:FrameRole .
+
+ns21:think-01.ARG1 a ns21:FrameRole .
+
+ns3:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:location a ns1:Role .
+
+ns3:mod a ns1:Role .
+
+ns3:quant a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> a ns3:also .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> a ns3:comet ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> a ns21:exist-01 ;
+    ns21:exist-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns3:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> a ns3:heliosphere .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> a ns21:possible-01 ;
+    ns21:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> a ns3:roughly ;
+    ns3:op1 "1000" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> a ns21:source-02 ;
+    ns21:source-02.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:source-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> a ns3:times ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:distant-02 a ns1:Frame .
+
+ns21:exist-01 a ns1:Frame .
+
+ns21:have-degree-91 a ns1:Frame .
+
+ns21:long-03 a ns1:Frame .
+
+ns21:possible-01 a ns1:Frame .
+
+ns21:source-02 a ns1:Frame .
+
+ns21:think-01 a ns1:Frame .
+
+ns3:also a ns1:Concept .
+
+ns3:cloud a ns1:Concept .
+
+ns3:comet a ns1:Concept .
+
+ns3:heliosphere a ns1:Concept .
+
+ns3:period a ns1:Concept .
+
+ns3:roughly a ns1:Concept .
+
+ns3:times a ns1:Concept .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> a ns21:distant-02 .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> a ns3:period .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> a ns3:cloud ;
+    rdfs:label "Oort cloud" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+ns21:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..c99c07aaeaeb0a40804f6d984f3774c1823c291e
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1430 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns21:exist-01.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG2 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG3 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG4 a ns21:FrameRole .
+
+ns21:long-03.ARG1 a ns21:FrameRole .
+
+ns21:possible-01.ARG1 a ns21:FrameRole .
+
+ns21:source-02.ARG0 a ns21:FrameRole .
+
+ns21:source-02.ARG1 a ns21:FrameRole .
+
+ns21:think-01.ARG1 a ns21:FrameRole .
+
+ns3:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:location a ns1:Role .
+
+ns3:mod a ns1:Role .
+
+ns3:quant a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_c2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_name_Oortcloud a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_e_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_e_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_d a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_h_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_h2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_l_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_e a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_s_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t2_r a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-21 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#root01> ;
+    :hasRootLeaf :leaf_possible-01_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-21" ;
+    :hasSentenceStatement "The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#Oortcloud> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    rdfs:label "Oortcloud" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#also> a owl:Class ;
+    rdfs:label "also" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#distant> a owl:ObjectProperty ;
+    rdfs:label "distant" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#exist> a owl:ObjectProperty ;
+    rdfs:label "exist" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#heliosphere> a owl:Class ;
+    rdfs:label "heliosphere" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#long> a owl:ObjectProperty ;
+    rdfs:label "long" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#period-comet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#comet> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#roughly> a owl:Class ;
+    rdfs:label "roughly" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#source> a owl:Class ;
+    rdfs:label "source" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#think> a owl:ObjectProperty ;
+    rdfs:label "think" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#times> a owl:Class ;
+    rdfs:label "times" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_long_l a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_long-03_l ;
+    net:coverNode :leaf_long-03_l ;
+    net:hasNaming "long" ;
+    net:hasPropertyName "long" ;
+    net:hasPropertyName01 "longing" ;
+    net:hasPropertyName10 "long-by" ;
+    net:hasPropertyName12 "long-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_period_p2 .
+
+net:atomProperty_think_t a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_source_s,
+        net:atomProperty_source_s ;
+    net:coverBaseNode :leaf_think-01_t ;
+    net:coverNode :leaf_think-01_t ;
+    net:hasNaming "think" ;
+    net:hasPropertyName "think" ;
+    net:hasPropertyName01 "thinking" ;
+    net:hasPropertyName10 "think-by" ;
+    net:hasPropertyName12 "think-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_source-02_s .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_period_p2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_period_p2 ;
+    net:coverNode :leaf_period_p2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "period" ;
+    net:hasMotherClassNet net:atomClass_period_p2 ;
+    net:hasNaming "period" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_ARG2 net:atomProperty_distant_d ;
+    :role_ARG3 net:atomClass_times_t2 ;
+    :role_ARG4 net:atomClass_heliosphere_h2 ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:phenomena_possible-modality_p a net:Modality_Phenomena_Net,
+        net:Phenomena_Net ;
+    :role_ARG1 net:atomProperty_exist_e ;
+    net:coverBaseNode :leaf_possible-01_p ;
+    net:coverNode :leaf_possible-01_p ;
+    net:hasNaming "possible-modality" ;
+    net:hasPhenomenaRef "possible-01" ;
+    net:hasPhenomenaType :phenomena_modality_possible ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h> a ns21:have-degree-91 ;
+    ns21:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns21:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> ;
+    ns21:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#l> a ns21:long-03 ;
+    ns21:long-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-21" ;
+    ns1:has-sentence "The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t> a ns21:think-01 ;
+    ns21:think-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_also rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:also ;
+    :label "also" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:cloud ;
+    :label "cloud" .
+
+:concept_comet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:comet ;
+    :label "comet" .
+
+:concept_distant-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:distant-02 ;
+    :label "distant-02" .
+
+:concept_exist-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:exist-01 ;
+    :label "exist-01" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_heliosphere rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:heliosphere ;
+    :label "heliosphere" .
+
+:concept_long-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:long-03 ;
+    :label "long-03" .
+
+:concept_period rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:period ;
+    :label "period" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_roughly rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:roughly ;
+    :label "roughly" .
+
+:concept_source-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:source-02 ;
+    :label "source-02" .
+
+:concept_think-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:think-01 ;
+    :label "think-01" .
+
+:concept_times rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:times ;
+    :label "times" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> ;
+    :label "a" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    :label "c" ;
+    :name "Oort cloud" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> ;
+    :label "c2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#l> ;
+    :label "l" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> ;
+    :label "t2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#comet> a owl:Class ;
+    rdfs:label "comet" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#period> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#period> ;
+    rdfs:label "period" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-21" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_also_a a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_also_a ;
+    net:coverNode :leaf_also_a ;
+    net:hasClassName "also" ;
+    net:hasNaming "also" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:atomClass_heliosphere_h2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_heliosphere_h2 ;
+    net:coverNode :leaf_heliosphere_h2 ;
+    net:hasClassName "heliosphere" ;
+    net:hasNaming "heliosphere" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:atomClass_roughly_r a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_roughly_r ;
+    net:coverNode :leaf_roughly_r ;
+    net:hasClassName "roughly" ;
+    net:hasNaming "roughly" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:atomClass_source_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_ARG1 net:atomClass_comet_c2,
+        net:compositeClass_period-comet_c2 ;
+    net:composeFrom net:atomProperty_source_s ;
+    net:coverBaseNode :leaf_source-02_s ;
+    net:coverNode :leaf_source-02_s ;
+    net:hasClassName "source" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "source" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:atomClass_times_t2 a net:Atom_Class_Net ;
+    :role_quant net:atomClass_roughly_r ;
+    net:coverBaseNode :leaf_times_t2 ;
+    net:coverNode :leaf_times_t2 ;
+    net:hasClassName "times" ;
+    net:hasNaming "times" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:atomProperty_distant_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_distant-02_d ;
+    net:coverNode :leaf_distant-02_d ;
+    net:hasNaming "distant" ;
+    net:hasPropertyName "distant" ;
+    net:hasPropertyName01 "distanting" ;
+    net:hasPropertyName10 "distant-by" ;
+    net:hasPropertyName12 "distant-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_exist_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_mod net:atomClass_also_a ;
+    net:coverBaseNode :leaf_exist-01_e ;
+    net:coverNode :leaf_exist-01_e ;
+    net:hasNaming "exist" ;
+    net:hasPropertyName "exist" ;
+    net:hasPropertyName01 "existing" ;
+    net:hasPropertyName10 "exist-by" ;
+    net:hasPropertyName12 "exist-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_also_a,
+        :leaf_cloud_c .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> a ns3:also ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> a ns3:comet ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> a ns21:exist-01 ;
+    ns21:exist-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns3:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> a ns3:heliosphere ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> a ns21:possible-01 ;
+    ns21:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> a ns3:roughly ;
+    ns3:op1 "1000" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> a ns21:source-02 ;
+    ns21:source-02.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:source-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> a ns3:times ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:distant-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:exist-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:long-03 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:possible-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:source-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:think-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:also a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:cloud a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:comet a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:heliosphere a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:period a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:roughly a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:times a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_c :leaf_cloud_c ;
+    :edge_h_d :leaf_distant-02_d ;
+    :edge_h_h2 :leaf_heliosphere_h2 ;
+    :edge_h_t2 :leaf_times_t2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_long-03_l a :AMR_Leaf ;
+    :edge_l_p2 :leaf_period_p2 ;
+    :hasConcept :concept_long-03 ;
+    :hasVariable :variable_l .
+
+:leaf_think-01_t a :AMR_Leaf ;
+    :edge_t_s :leaf_source-02_s ;
+    :hasConcept :concept_think-01 ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:value_Oortcloud a :AMR_Value ;
+    rdfs:label "Oortcloud" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_source_s a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_ARG1 net:atomClass_comet_c2,
+        net:compositeClass_period-comet_c2 ;
+    net:coverBaseNode :leaf_source-02_s ;
+    net:coverNode :leaf_source-02_s ;
+    net:hasNaming "source" ;
+    net:hasPropertyName "source" ;
+    net:hasPropertyName01 "sourceing" ;
+    net:hasPropertyName10 "source-by" ;
+    net:hasPropertyName12 "source-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_cloud_c,
+        :leaf_comet_c2 .
+
+net:compositeClass_period-comet_c2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_period_p2 ;
+    net:composeFrom net:atomClass_comet_c2,
+        net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_comet_c2 ;
+    net:coverNode :leaf_comet_c2,
+        :leaf_period_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_comet_c2 ;
+    net:hasNaming "period-comet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Oortcloud_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Oortcloud ;
+    net:hasNaming "Oortcloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" ;
+    net:hasValueLabel "Oortcloud" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> a ns21:distant-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> a ns3:period ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_exist-01_e a :AMR_Leaf ;
+    :edge_e_a :leaf_also_a ;
+    :edge_e_c :leaf_cloud_c ;
+    :edge_e_d :leaf_distant-02_d ;
+    :hasConcept :concept_exist-01 ;
+    :hasVariable :variable_e .
+
+:leaf_heliosphere_h2 a :AMR_Leaf ;
+    :hasConcept :concept_heliosphere ;
+    :hasVariable :variable_h2 .
+
+:leaf_possible-01_p a :AMR_Leaf ;
+    :edge_p_e :leaf_exist-01_e ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p .
+
+:leaf_roughly_r a :AMR_Leaf ;
+    :hasConcept :concept_roughly ;
+    :hasVariable :variable_r .
+
+:leaf_times_t2 a :AMR_Leaf ;
+    :edge_t2_r :leaf_roughly_r ;
+    :hasConcept :concept_times ;
+    :hasVariable :variable_t2 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> a ns3:cloud ;
+    rdfs:label "Oort cloud" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_also_a a :AMR_Leaf ;
+    :hasConcept :concept_also ;
+    :hasVariable :variable_a .
+
+:leaf_distant-02_d a :AMR_Leaf ;
+    :hasConcept :concept_distant-02 ;
+    :hasVariable :variable_d .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:atomClass_comet_c2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_comet_c2 ;
+    net:coverNode :leaf_comet_c2 ;
+    net:hasClassName "comet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "comet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:individual_Oortcloud_c a net:Individual_Net ;
+    :role_name net:value_Oortcloud_blankNode ;
+    net:coverBaseNode :leaf_cloud_c ;
+    net:coverNode :leaf_cloud_c ;
+    net:hasIndividualLabel "Oortcloud" ;
+    net:hasMotherClassNet net:atomClass_cloud_c ;
+    net:hasNaming "Oortcloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomClass_cloud_c a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Oortcloud_blankNode ;
+    net:coverBaseNode :leaf_cloud_c ;
+    net:coverNode :leaf_cloud_c ;
+    net:hasClassName "cloud" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "cloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_comet_c2 a :AMR_Leaf ;
+    :edge_c2_p2 :leaf_period_p2 ;
+    :hasConcept :concept_comet ;
+    :hasVariable :variable_c2 .
+
+:leaf_source-02_s a :AMR_Leaf ;
+    :edge_s_c :leaf_cloud_c ;
+    :edge_s_c2 :leaf_comet_c2 ;
+    :hasConcept :concept_source-02 ;
+    :hasVariable :variable_s .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_period_p2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_period_p2 ;
+    net:coverNode :leaf_period_p2 ;
+    net:hasClassName "period" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "period" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:leaf_period_p2 a :AMR_Leaf ;
+    :hasConcept :concept_period ;
+    :hasVariable :variable_p2 .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_cloud_c a :AMR_Leaf ;
+    :edge_c_name_Oortcloud :value_Oortcloud ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+ns21:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..97ef1baffb23fa944cc5f289ab149745495eb7a4
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1144 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns21:exist-01.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG2 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG3 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG4 a ns21:FrameRole .
+
+ns21:long-03.ARG1 a ns21:FrameRole .
+
+ns21:possible-01.ARG1 a ns21:FrameRole .
+
+ns21:source-02.ARG0 a ns21:FrameRole .
+
+ns21:source-02.ARG1 a ns21:FrameRole .
+
+ns21:think-01.ARG1 a ns21:FrameRole .
+
+ns3:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:location a ns1:Role .
+
+ns3:mod a ns1:Role .
+
+ns3:quant a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_c2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_name_Oortcloud a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_e_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_e_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_d a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_h_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_h2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_l_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_e a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_s_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t2_r a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_c :leaf_cloud_c ;
+    :edge_h_d :leaf_distant-02_d ;
+    :edge_h_h2 :leaf_heliosphere_h2 ;
+    :edge_h_t2 :leaf_times_t2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_long-03_l a :AMR_Leaf ;
+    :edge_l_p2 :leaf_period_p2 ;
+    :hasConcept :concept_long-03 ;
+    :hasVariable :variable_l .
+
+:leaf_think-01_t a :AMR_Leaf ;
+    :edge_t_s :leaf_source-02_s ;
+    :hasConcept :concept_think-01 ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-21 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#root01> ;
+    :hasRootLeaf :leaf_possible-01_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-21" ;
+    :hasSentenceStatement "The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h> a ns21:have-degree-91 ;
+    ns21:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns21:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> ;
+    ns21:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#l> a ns21:long-03 ;
+    ns21:long-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-21" ;
+    ns1:has-sentence "The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t> a ns21:think-01 ;
+    ns21:think-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_also rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:also ;
+    :label "also" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:cloud ;
+    :label "cloud" .
+
+:concept_comet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:comet ;
+    :label "comet" .
+
+:concept_distant-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:distant-02 ;
+    :label "distant-02" .
+
+:concept_exist-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:exist-01 ;
+    :label "exist-01" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_heliosphere rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:heliosphere ;
+    :label "heliosphere" .
+
+:concept_long-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:long-03 ;
+    :label "long-03" .
+
+:concept_period rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:period ;
+    :label "period" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_roughly rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:roughly ;
+    :label "roughly" .
+
+:concept_source-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:source-02 ;
+    :label "source-02" .
+
+:concept_think-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:think-01 ;
+    :label "think-01" .
+
+:concept_times rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:times ;
+    :label "times" .
+
+:leaf_also_a a :AMR_Leaf ;
+    :hasConcept :concept_also ;
+    :hasVariable :variable_a .
+
+:leaf_comet_c2 a :AMR_Leaf ;
+    :edge_c2_p2 :leaf_period_p2 ;
+    :hasConcept :concept_comet ;
+    :hasVariable :variable_c2 .
+
+:leaf_exist-01_e a :AMR_Leaf ;
+    :edge_e_a :leaf_also_a ;
+    :edge_e_c :leaf_cloud_c ;
+    :edge_e_d :leaf_distant-02_d ;
+    :hasConcept :concept_exist-01 ;
+    :hasVariable :variable_e .
+
+:leaf_heliosphere_h2 a :AMR_Leaf ;
+    :hasConcept :concept_heliosphere ;
+    :hasVariable :variable_h2 .
+
+:leaf_possible-01_p a :AMR_Leaf ;
+    :edge_p_e :leaf_exist-01_e ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p .
+
+:leaf_roughly_r a :AMR_Leaf ;
+    :hasConcept :concept_roughly ;
+    :hasVariable :variable_r .
+
+:leaf_source-02_s a :AMR_Leaf ;
+    :edge_s_c :leaf_cloud_c ;
+    :edge_s_c2 :leaf_comet_c2 ;
+    :hasConcept :concept_source-02 ;
+    :hasVariable :variable_s .
+
+:leaf_times_t2 a :AMR_Leaf ;
+    :edge_t2_r :leaf_roughly_r ;
+    :hasConcept :concept_times ;
+    :hasVariable :variable_t2 .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_Oortcloud a :AMR_Value ;
+    rdfs:label "Oortcloud" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> ;
+    :label "a" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    :label "c" ;
+    :name "Oort cloud" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> ;
+    :label "c2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#l> ;
+    :label "l" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> ;
+    :label "t2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> a ns3:also ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> a ns3:comet ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> a ns21:exist-01 ;
+    ns21:exist-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns3:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> a ns3:heliosphere ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> a ns21:possible-01 ;
+    ns21:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> a ns3:roughly ;
+    ns3:op1 "1000" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> a ns21:source-02 ;
+    ns21:source-02.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:source-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> a ns3:times ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:distant-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:exist-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:long-03 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:possible-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:source-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:think-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:also a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:cloud a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:comet a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:heliosphere a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:period a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:roughly a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:times a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_distant-02_d a :AMR_Leaf ;
+    :hasConcept :concept_distant-02 ;
+    :hasVariable :variable_d .
+
+:leaf_period_p2 a :AMR_Leaf ;
+    :hasConcept :concept_period ;
+    :hasVariable :variable_p2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> a ns21:distant-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> a ns3:period ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_cloud_c a :AMR_Leaf ;
+    :edge_c_name_Oortcloud :value_Oortcloud ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> a ns3:cloud ;
+    rdfs:label "Oort cloud" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+ns21:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..90fb79f538f46c080ee7f3204a1be3580e20c846
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1364 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns21: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns21:exist-01.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG1 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG2 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG3 a ns21:FrameRole .
+
+ns21:have-degree-91.ARG4 a ns21:FrameRole .
+
+ns21:long-03.ARG1 a ns21:FrameRole .
+
+ns21:possible-01.ARG1 a ns21:FrameRole .
+
+ns21:source-02.ARG0 a ns21:FrameRole .
+
+ns21:source-02.ARG1 a ns21:FrameRole .
+
+ns21:think-01.ARG1 a ns21:FrameRole .
+
+ns3:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:location a ns1:Role .
+
+ns3:mod a ns1:Role .
+
+ns3:quant a ns1:Role .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_c2_p2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_name_Oortcloud a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_e_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_e_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_d a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_h_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_h2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h_t2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_l_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_e a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_s_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_t2_r a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-21 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#root01> ;
+    :hasRootLeaf :leaf_possible-01_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-21" ;
+    :hasSentenceStatement "The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_long_l a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_long-03_l ;
+    net:coverNode :leaf_long-03_l ;
+    net:hasNaming "long" ;
+    net:hasPropertyName "long" ;
+    net:hasPropertyName01 "longing" ;
+    net:hasPropertyName10 "long-by" ;
+    net:hasPropertyName12 "long-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_period_p2 .
+
+net:atomProperty_think_t a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_source_s,
+        net:atomProperty_source_s ;
+    net:coverBaseNode :leaf_think-01_t ;
+    net:coverNode :leaf_think-01_t ;
+    net:hasNaming "think" ;
+    net:hasPropertyName "think" ;
+    net:hasPropertyName01 "thinking" ;
+    net:hasPropertyName10 "think-by" ;
+    net:hasPropertyName12 "think-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_source-02_s .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_period_p2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_period_p2 ;
+    net:coverNode :leaf_period_p2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "period" ;
+    net:hasMotherClassNet net:atomClass_period_p2 ;
+    net:hasNaming "period" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_ARG2 net:atomProperty_distant_d ;
+    :role_ARG3 net:atomClass_times_t2 ;
+    :role_ARG4 net:atomClass_heliosphere_h2 ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:phenomena_possible-modality_p a net:Modality_Phenomena_Net,
+        net:Phenomena_Net ;
+    :role_ARG1 net:atomProperty_exist_e ;
+    net:coverBaseNode :leaf_possible-01_p ;
+    net:coverNode :leaf_possible-01_p ;
+    net:hasNaming "possible-modality" ;
+    net:hasPhenomenaRef "possible-01" ;
+    net:hasPhenomenaType :phenomena_modality_possible ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h> a ns21:have-degree-91 ;
+    ns21:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns21:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> ;
+    ns21:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#l> a ns21:long-03 ;
+    ns21:long-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-21" ;
+    ns1:has-sentence "The Oort cloud, which is thought to be the source for long-period comets, may also exist at a distance roughly a thousand times further than the heliosphere." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t> a ns21:think-01 ;
+    ns21:think-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_also rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:also ;
+    :label "also" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:cloud ;
+    :label "cloud" .
+
+:concept_comet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:comet ;
+    :label "comet" .
+
+:concept_distant-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:distant-02 ;
+    :label "distant-02" .
+
+:concept_exist-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:exist-01 ;
+    :label "exist-01" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_heliosphere rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:heliosphere ;
+    :label "heliosphere" .
+
+:concept_long-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:long-03 ;
+    :label "long-03" .
+
+:concept_period rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:period ;
+    :label "period" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_roughly rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:roughly ;
+    :label "roughly" .
+
+:concept_source-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:source-02 ;
+    :label "source-02" .
+
+:concept_think-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:think-01 ;
+    :label "think-01" .
+
+:concept_times rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:times ;
+    :label "times" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> ;
+    :label "a" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    :label "c" ;
+    :name "Oort cloud" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> ;
+    :label "c2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> ;
+    :label "h2" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#l> ;
+    :label "l" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    :label "p2" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> ;
+    :label "s" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t> ;
+    :label "t" .
+
+:variable_t2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> ;
+    :label "t2" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_also_a a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_also_a ;
+    net:coverNode :leaf_also_a ;
+    net:hasClassName "also" ;
+    net:hasNaming "also" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:atomClass_heliosphere_h2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_heliosphere_h2 ;
+    net:coverNode :leaf_heliosphere_h2 ;
+    net:hasClassName "heliosphere" ;
+    net:hasNaming "heliosphere" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:atomClass_roughly_r a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_roughly_r ;
+    net:coverNode :leaf_roughly_r ;
+    net:hasClassName "roughly" ;
+    net:hasNaming "roughly" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:atomClass_source_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_ARG1 net:atomClass_comet_c2,
+        net:compositeClass_period-comet_c2 ;
+    net:composeFrom net:atomProperty_source_s ;
+    net:coverBaseNode :leaf_source-02_s ;
+    net:coverNode :leaf_source-02_s ;
+    net:hasClassName "source" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "source" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:atomClass_times_t2 a net:Atom_Class_Net ;
+    :role_quant net:atomClass_roughly_r ;
+    net:coverBaseNode :leaf_times_t2 ;
+    net:coverNode :leaf_times_t2 ;
+    net:hasClassName "times" ;
+    net:hasNaming "times" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:atomProperty_distant_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_distant-02_d ;
+    net:coverNode :leaf_distant-02_d ;
+    net:hasNaming "distant" ;
+    net:hasPropertyName "distant" ;
+    net:hasPropertyName01 "distanting" ;
+    net:hasPropertyName10 "distant-by" ;
+    net:hasPropertyName12 "distant-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_exist_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_mod net:atomClass_also_a ;
+    net:coverBaseNode :leaf_exist-01_e ;
+    net:coverNode :leaf_exist-01_e ;
+    net:hasNaming "exist" ;
+    net:hasPropertyName "exist" ;
+    net:hasPropertyName01 "existing" ;
+    net:hasPropertyName10 "exist-by" ;
+    net:hasPropertyName12 "exist-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_also_a,
+        :leaf_cloud_c .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> a ns3:also ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> a ns3:comet ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> a ns21:exist-01 ;
+    ns21:exist-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns3:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#h2> a ns3:heliosphere ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p> a ns21:possible-01 ;
+    ns21:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> a ns3:roughly ;
+    ns3:op1 "1000" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#s> a ns21:source-02 ;
+    ns21:source-02.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> ;
+    ns21:source-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#t2> a ns3:times ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:distant-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:exist-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:long-03 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:possible-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:source-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:think-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:also a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:cloud a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:comet a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:heliosphere a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:period a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:roughly a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:times a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_c :leaf_cloud_c ;
+    :edge_h_d :leaf_distant-02_d ;
+    :edge_h_h2 :leaf_heliosphere_h2 ;
+    :edge_h_t2 :leaf_times_t2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_long-03_l a :AMR_Leaf ;
+    :edge_l_p2 :leaf_period_p2 ;
+    :hasConcept :concept_long-03 ;
+    :hasVariable :variable_l .
+
+:leaf_think-01_t a :AMR_Leaf ;
+    :edge_t_s :leaf_source-02_s ;
+    :hasConcept :concept_think-01 ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:value_Oortcloud a :AMR_Value ;
+    rdfs:label "Oortcloud" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_source_s a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_cloud_c,
+        net:individual_Oortcloud_c ;
+    :role_ARG1 net:atomClass_comet_c2,
+        net:compositeClass_period-comet_c2 ;
+    net:coverBaseNode :leaf_source-02_s ;
+    net:coverNode :leaf_source-02_s ;
+    net:hasNaming "source" ;
+    net:hasPropertyName "source" ;
+    net:hasPropertyName01 "sourceing" ;
+    net:hasPropertyName10 "source-by" ;
+    net:hasPropertyName12 "source-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_cloud_c,
+        :leaf_comet_c2 .
+
+net:compositeClass_period-comet_c2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_period_p2 ;
+    net:composeFrom net:atomClass_comet_c2,
+        net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_comet_c2 ;
+    net:coverNode :leaf_comet_c2,
+        :leaf_period_p2 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_comet_c2 ;
+    net:hasNaming "period-comet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Oortcloud_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Oortcloud ;
+    net:hasNaming "Oortcloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" ;
+    net:hasValueLabel "Oortcloud" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#d> a ns21:distant-02 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#p2> a ns3:period ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_exist-01_e a :AMR_Leaf ;
+    :edge_e_a :leaf_also_a ;
+    :edge_e_c :leaf_cloud_c ;
+    :edge_e_d :leaf_distant-02_d ;
+    :hasConcept :concept_exist-01 ;
+    :hasVariable :variable_e .
+
+:leaf_heliosphere_h2 a :AMR_Leaf ;
+    :hasConcept :concept_heliosphere ;
+    :hasVariable :variable_h2 .
+
+:leaf_possible-01_p a :AMR_Leaf ;
+    :edge_p_e :leaf_exist-01_e ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p .
+
+:leaf_roughly_r a :AMR_Leaf ;
+    :hasConcept :concept_roughly ;
+    :hasVariable :variable_r .
+
+:leaf_times_t2 a :AMR_Leaf ;
+    :edge_t2_r :leaf_roughly_r ;
+    :hasConcept :concept_times ;
+    :hasVariable :variable_t2 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-21#c> a ns3:cloud ;
+    rdfs:label "Oort cloud" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_also_a a :AMR_Leaf ;
+    :hasConcept :concept_also ;
+    :hasVariable :variable_a .
+
+:leaf_distant-02_d a :AMR_Leaf ;
+    :hasConcept :concept_distant-02 ;
+    :hasVariable :variable_d .
+
+net:atomClass_comet_c2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_period_p2 ;
+    net:coverBaseNode :leaf_comet_c2 ;
+    net:coverNode :leaf_comet_c2 ;
+    net:hasClassName "comet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "comet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:individual_Oortcloud_c a net:Individual_Net ;
+    :role_name net:value_Oortcloud_blankNode ;
+    net:coverBaseNode :leaf_cloud_c ;
+    net:coverNode :leaf_cloud_c ;
+    net:hasIndividualLabel "Oortcloud" ;
+    net:hasMotherClassNet net:atomClass_cloud_c ;
+    net:hasNaming "Oortcloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomClass_cloud_c a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Oortcloud_blankNode ;
+    net:coverBaseNode :leaf_cloud_c ;
+    net:coverNode :leaf_cloud_c ;
+    net:hasClassName "cloud" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "cloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_comet_c2 a :AMR_Leaf ;
+    :edge_c2_p2 :leaf_period_p2 ;
+    :hasConcept :concept_comet ;
+    :hasVariable :variable_c2 .
+
+:leaf_source-02_s a :AMR_Leaf ;
+    :edge_s_c :leaf_cloud_c ;
+    :edge_s_c2 :leaf_comet_c2 ;
+    :hasConcept :concept_source-02 ;
+    :hasVariable :variable_s .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_period_p2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_period_p2 ;
+    net:coverNode :leaf_period_p2 ;
+    net:hasClassName "period" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "period" ;
+    net:hasStructure "WikiAbstract-SolarSystem-21" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:leaf_period_p2 a :AMR_Leaf ;
+    :hasConcept :concept_period ;
+    :hasVariable :variable_p2 .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_cloud_c a :AMR_Leaf ;
+    :edge_c_name_Oortcloud :value_Oortcloud ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c .
+
+ns21:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..f529b9609a621127aa1da5cb1ea1f53a1bb3cdd5
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-21/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,70 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#Oortcloud> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    rdfs:label "Oortcloud" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#also> a owl:Class ;
+    rdfs:label "also" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#distant> a owl:ObjectProperty ;
+    rdfs:label "distant" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#exist> a owl:ObjectProperty ;
+    rdfs:label "exist" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#heliosphere> a owl:Class ;
+    rdfs:label "heliosphere" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#long> a owl:ObjectProperty ;
+    rdfs:label "long" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#period-comet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#comet> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#roughly> a owl:Class ;
+    rdfs:label "roughly" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#source> a owl:Class ;
+    rdfs:label "source" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#think> a owl:ObjectProperty ;
+    rdfs:label "think" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#times> a owl:Class ;
+    rdfs:label "times" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#comet> a owl:Class ;
+    rdfs:label "comet" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
+<https://tenet.tetras-libre.fr/extract-result#period> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#period> ;
+    rdfs:label "period" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-21" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..62c4ea3947ee5ba34efdfeb1552924b5a4e29ad9
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,887 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c2> a ns2:contain-01 ;
+    ns2:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    ns2:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#g> a ns11:galaxy ;
+    rdfs:label "Milky Way" ;
+    ns11:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#ii> a ns2:include-91 ;
+    ns2:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
+    ns2:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns2:include-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#p> a ns2:possible-01 ;
+    ns2:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-22" ;
+    ns3:has-sentence "The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:be-located-at-91.ARG1 a ns2:FrameRole .
+
+ns2:be-located-at-91.ARG2 a ns2:FrameRole .
+
+ns2:contain-01.ARG0 a ns2:FrameRole .
+
+ns2:contain-01.ARG1 a ns2:FrameRole .
+
+ns2:include-91.ARG1 a ns2:FrameRole .
+
+ns2:include-91.ARG2 a ns2:FrameRole .
+
+ns2:include-91.ARG3 a ns2:FrameRole .
+
+ns2:possible-01.ARG1 a ns2:FrameRole .
+
+ns2:see-01.ARG1 a ns2:FrameRole .
+
+ns11:dayperiod a ns3:Role .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:location a ns3:Role .
+
+ns11:op1 a ns3:Role .
+
+ns11:part a ns3:Role .
+
+ns11:quant a ns3:Role .
+
+ns11:time a ns3:Role .
+
+ns11:unit a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> a ns2:be-located-at-91 ;
+    ns2:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> ;
+    ns2:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> a ns3:date-entity ;
+    ns11:dayperiod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> a ns11:distance-quantity ;
+    ns11:quant "26000" ;
+    ns11:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> a ns11:light-year .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> a ns3:most .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> a ns11:night .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> a ns11:relative-position ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    ns11:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> a ns11:system ;
+    rdfs:label "Solar System" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> a ns2:see-01 ;
+    ns2:see-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> a ns11:sky ;
+    ns11:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns2:be-located-at-91 a ns3:Frame .
+
+ns2:contain-01 a ns3:Frame .
+
+ns2:include-91 a ns3:Frame .
+
+ns2:possible-01 a ns3:Frame .
+
+ns2:see-01 a ns3:Frame .
+
+ns11:arm a ns3:Concept .
+
+ns11:center a ns3:Concept .
+
+ns11:distance-quantity a ns3:Concept .
+
+ns11:galaxy a ns3:Concept .
+
+ns11:light-year a ns3:Concept .
+
+ns11:night a ns3:Concept .
+
+ns11:relative-position a ns3:Concept .
+
+ns11:sky a ns3:Concept .
+
+ns11:system a ns3:Concept .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:date-entity a ns3:Concept .
+
+ns3:most a ns3:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> a ns11:arm ;
+    rdfs:label "Orion" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> a ns11:center ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> a <http://amr.isi.edu/entity-types#star> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> a <http://amr.isi.edu/entity-types#star> .
+
+<http://amr.isi.edu/entity-types#star> a ns3:NamedEntity .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..9337a29f50c1fb9c913746055cc46cc84a78389f
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1669 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:be-located-at-91.ARG1 a ns2:FrameRole .
+
+ns2:be-located-at-91.ARG2 a ns2:FrameRole .
+
+ns2:contain-01.ARG0 a ns2:FrameRole .
+
+ns2:contain-01.ARG1 a ns2:FrameRole .
+
+ns2:include-91.ARG1 a ns2:FrameRole .
+
+ns2:include-91.ARG2 a ns2:FrameRole .
+
+ns2:include-91.ARG3 a ns2:FrameRole .
+
+ns2:possible-01.ARG1 a ns2:FrameRole .
+
+ns2:see-01.ARG1 a ns2:FrameRole .
+
+ns11:dayperiod a ns3:Role .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:location a ns3:Role .
+
+ns11:op1 a ns3:Role .
+
+ns11:quant a ns3:Role .
+
+ns11:time a ns3:Role .
+
+ns11:unit a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_name_Orion a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_b_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c2_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_c2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_a a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_d2_l a :AMR_Edge ;
+    :hasRoleID "unit" .
+
+:edge_d2_quant_26000 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_d_n4 a :AMR_Edge ;
+    :hasRoleID "dayperiod" .
+
+:edge_g_name_MilkyWay a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_ii_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_ii_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_p9_ARG0_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r_c a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_r_d2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_s4_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s4_s5 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_s5_d a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-22 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#root01> ;
+    :hasRootLeaf :leaf_be-located-at-91_b ;
+    :hasSentenceID "WikiAbstract-SolarSystem-22" ;
+    :hasSentenceStatement "The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#MilkyWay> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#galaxy> ;
+    rdfs:label "MilkyWay" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#Orion> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#arm> ;
+    rdfs:label "Orion" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#be> a owl:ObjectProperty ;
+    rdfs:label "be" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#center> a owl:Class ;
+    rdfs:label "center" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
+    rdfs:label "contain" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#date> a owl:ObjectProperty ;
+    rdfs:label "date" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#distance-quantity> a owl:Class ;
+    rdfs:label "distance-quantity" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#light-year> a owl:Class ;
+    rdfs:label "light-year" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#night> a owl:Class ;
+    rdfs:label "night" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#relative-position> a owl:Class ;
+    rdfs:label "relative-position" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#see> a owl:ObjectProperty ;
+    rdfs:label "see" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#sky> a owl:Class ;
+    rdfs:label "sky" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#star-include-star> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#star> ],
+        <https://tenet.tetras-libre.fr/extract-result#star> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_light-year_l a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_light-year_l ;
+    net:coverNode :leaf_light-year_l ;
+    net:hasClassName "light-year" ;
+    net:hasNaming "light-year" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomClass_night_n4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_night_n4 ;
+    net:coverNode :leaf_night_n4 ;
+    net:hasClassName "night" ;
+    net:hasNaming "night" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomClass_sky_s5 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_sky_s5 ;
+    net:coverNode :leaf_sky_s5 ;
+    net:hasClassName "sky" ;
+    net:hasNaming "sky" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_be_b a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_system_s,
+        net:individual_SolarSystem_s ;
+    :role_ARG2 net:atomClass_relative-position_r ;
+    net:coverBaseNode :leaf_be-located-at-91_b ;
+    net:coverNode :leaf_be-located-at-91_b ;
+    net:hasNaming "be" ;
+    net:hasPropertyName "be" ;
+    net:hasPropertyName01 "being" ;
+    net:hasPropertyName10 "be-by" ;
+    net:hasPropertyName12 "be-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_relative-position_r,
+        :leaf_system_s .
+
+net:atomProperty_contain_c2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_arm_a,
+        net:individual_Orion_a ;
+    :role_ARG1 net:atomClass_star_s2 ;
+    net:coverBaseNode :leaf_contain-01_c2 ;
+    net:coverNode :leaf_contain-01_c2 ;
+    net:hasNaming "contain" ;
+    net:hasPropertyName "contain" ;
+    net:hasPropertyName01 "containing" ;
+    net:hasPropertyName10 "contain-by" ;
+    net:hasPropertyName12 "contain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_arm_a,
+        :leaf_star_s2 .
+
+net:atomProperty_date_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_date-entity_d ;
+    net:coverNode :leaf_date-entity_d ;
+    net:hasNaming "date" ;
+    net:hasPropertyName "date" ;
+    net:hasPropertyName01 "dateing" ;
+    net:hasPropertyName10 "date-by" ;
+    net:hasPropertyName12 "date-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_galaxy_g,
+        net:individual_MilkyWay_g ;
+    :role_ARG1 net:atomClass_center_c ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_center_c,
+        :leaf_galaxy_g .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_star-include-star_s2 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_star_s2,
+        net:atomClass_star_s3,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_star_s2 ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_star_s2,
+        :leaf_star_s3 ;
+    net:hasMotherClassNet net:atomClass_star_s2 ;
+    net:hasNaming "star-include-star" ;
+    net:hasRestriction net:restriction_include-star_ii ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_possible-modality_p a net:Modality_Phenomena_Net,
+        net:Phenomena_Net ;
+    :role_ARG1 net:atomProperty_see_s4 ;
+    net:coverBaseNode :leaf_possible-01_p ;
+    net:coverNode :leaf_possible-01_p ;
+    net:hasNaming "possible-modality" ;
+    net:hasPhenomenaRef "possible-01" ;
+    net:hasPhenomenaType :phenomena_modality_possible ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c2> a ns2:contain-01 ;
+    ns2:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    ns2:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#g> a ns11:galaxy ;
+    rdfs:label "Milky Way" ;
+    ns11:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#ii> a ns2:include-91 ;
+    ns2:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
+    ns2:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns2:include-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#p> a ns2:possible-01 ;
+    ns2:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-22" ;
+    ns3:has-sentence "The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_arm rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:arm ;
+    :label "arm" .
+
+:concept_be-located-at-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:be-located-at-91 ;
+    :label "be-located-at-91" .
+
+:concept_center rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:center ;
+    :label "center" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:contain-01 ;
+    :label "contain-01" .
+
+:concept_date-entity rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:date-entity ;
+    :label "date-entity" .
+
+:concept_distance-quantity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:distance-quantity ;
+    :label "distance-quantity" .
+
+:concept_galaxy rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:galaxy ;
+    :label "galaxy" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:include-91 ;
+    :label "include-91" .
+
+:concept_light-year rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:light-year ;
+    :label "light-year" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_night rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:night ;
+    :label "night" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_relative-position rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:relative-position ;
+    :label "relative-position" .
+
+:concept_see-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:see-01 ;
+    :label "see-01" .
+
+:concept_sky rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sky ;
+    :label "sky" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:system ;
+    :label "system" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    :label "a" ;
+    :name "Orion" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c2> ;
+    :label "c2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#g> ;
+    :label "g" ;
+    :name "Milky Way" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> ;
+    :label "m" .
+
+:variable_n4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> ;
+    :label "n4" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#p> ;
+    :label "p" .
+
+:variable_p9 a ns11:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> ;
+    :label "s" ;
+    :name "Solar System" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> ;
+    :label "s4" .
+
+:variable_s5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> ;
+    :label "s5" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_distance-quantity_d2 a net:Atom_Class_Net ;
+    :role_quant net:value_26000_blankNode ;
+    net:coverBaseNode :leaf_distance-quantity_d2 ;
+    net:coverNode :leaf_distance-quantity_d2 ;
+    net:hasClassName "distance-quantity" ;
+    net:hasNaming "distance-quantity" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomClass_relative-position_r a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_op1 net:atomClass_center_c ;
+    :role_quant net:atomClass_distance-quantity_d2 ;
+    net:coverBaseNode :leaf_relative-position_r ;
+    net:coverNode :leaf_relative-position_r ;
+    net:hasClassName "relative-position" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "relative-position" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_see_s4 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s3 ;
+    net:coverBaseNode :leaf_see-01_s4 ;
+    net:coverNode :leaf_see-01_s4 ;
+    net:hasNaming "see" ;
+    net:hasPropertyName "see" ;
+    net:hasPropertyName01 "seeing" ;
+    net:hasPropertyName10 "see-by" ;
+    net:hasPropertyName12 "see-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_star_s3 .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_MilkyWay_g a net:Individual_Net ;
+    :role_name net:value_MilkyWay_blankNode ;
+    net:coverBaseNode :leaf_galaxy_g ;
+    net:coverNode :leaf_galaxy_g ;
+    net:hasIndividualLabel "MilkyWay" ;
+    net:hasMotherClassNet net:atomClass_galaxy_g ;
+    net:hasNaming "MilkyWay" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:individual_Orion_a a net:Individual_Net ;
+    :role_name net:value_Orion_blankNode ;
+    net:coverBaseNode :leaf_arm_a ;
+    net:coverNode :leaf_arm_a ;
+    net:hasIndividualLabel "Orion" ;
+    net:hasMotherClassNet net:atomClass_arm_a ;
+    net:hasNaming "Orion" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:individual_SolarSystem_s a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_include-star_ii a net:Restriction_Net ;
+    net:composeFrom net:atomClass_star_s3,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_star_s3 ;
+    net:hasNaming "include-star" ;
+    net:hasRestrictionNetValue net:atomClass_star_s3 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:value_26000_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_26000 ;
+    net:hasNaming "26000" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:hasValueLabel "26000" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> a ns2:be-located-at-91 ;
+    ns2:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> ;
+    ns2:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> a ns3:date-entity ;
+    ns11:dayperiod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> a ns11:distance-quantity ;
+    ns11:quant "26000" ;
+    ns11:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> a ns11:light-year ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> a ns11:night ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> a ns11:relative-position ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    ns11:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> a ns11:system ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> a ns2:see-01 ;
+    ns2:see-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> a ns11:sky ;
+    ns11:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:be-located-at-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:contain-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:include-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:possible-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:see-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:arm a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:center a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:distance-quantity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:galaxy a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:light-year a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:night a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:part a ns3:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:relative-position a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sky a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:date-entity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_star rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#star> ;
+    :label "star" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_contain-01_c2 a :AMR_Leaf ;
+    :edge_c2_a :leaf_arm_a ;
+    :edge_c2_s2 :leaf_star_s2 ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_g :leaf_galaxy_g ;
+    :edge_p9_ARG1_c :leaf_center_c ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_possible-01_p a :AMR_Leaf ;
+    :edge_p_s4 :leaf_see-01_s4 ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_26000 a :AMR_Value ;
+    rdfs:label "26000" .
+
+:value_MilkyWay a :AMR_Value ;
+    rdfs:label "MilkyWay" .
+
+:value_Orion a :AMR_Value ;
+    rdfs:label "Orion" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+<https://tenet.tetras-libre.fr/extract-result#star> a owl:Class ;
+    rdfs:label "star" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-22" .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_arm_a a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Orion_blankNode ;
+    net:coverBaseNode :leaf_arm_a ;
+    net:coverNode :leaf_arm_a ;
+    net:hasClassName "arm" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "arm" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomClass_center_c a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_center_c ;
+    net:coverNode :leaf_center_c ;
+    net:hasClassName "center" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "center" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomClass_galaxy_g a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_MilkyWay_blankNode ;
+    net:coverBaseNode :leaf_galaxy_g ;
+    net:coverNode :leaf_galaxy_g ;
+    net:hasClassName "galaxy" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "galaxy" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_MilkyWay_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_MilkyWay ;
+    net:hasNaming "MilkyWay" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:hasValueLabel "MilkyWay" .
+
+net:value_Orion_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Orion ;
+    net:hasNaming "Orion" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:hasValueLabel "Orion" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> a ns11:arm ;
+    rdfs:label "Orion" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> a ns11:center ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> a <http://amr.isi.edu/entity-types#star> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> a <http://amr.isi.edu/entity-types#star> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#star> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_be-located-at-91_b a :AMR_Leaf ;
+    :edge_b_r :leaf_relative-position_r ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_be-located-at-91 ;
+    :hasVariable :variable_b .
+
+:leaf_date-entity_d a :AMR_Leaf ;
+    :edge_d_n4 :leaf_night_n4 ;
+    :hasConcept :concept_date-entity ;
+    :hasVariable :variable_d .
+
+:leaf_distance-quantity_d2 a :AMR_Leaf ;
+    :edge_d2_l :leaf_light-year_l ;
+    :edge_d2_quant_26000 :value_26000 ;
+    :hasConcept :concept_distance-quantity ;
+    :hasVariable :variable_d2 .
+
+:leaf_light-year_l a :AMR_Leaf ;
+    :hasConcept :concept_light-year ;
+    :hasVariable :variable_l .
+
+:leaf_night_n4 a :AMR_Leaf ;
+    :hasConcept :concept_night ;
+    :hasVariable :variable_n4 .
+
+:leaf_see-01_s4 a :AMR_Leaf ;
+    :edge_s4_s3 :leaf_star_s3 ;
+    :edge_s4_s5 :leaf_sky_s5 ;
+    :hasConcept :concept_see-01 ;
+    :hasVariable :variable_s4 .
+
+:leaf_sky_s5 a :AMR_Leaf ;
+    :edge_s5_d :leaf_date-entity_d ;
+    :hasConcept :concept_sky ;
+    :hasVariable :variable_s5 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s2 ;
+    :role_ARG2 net:atomClass_star_s3 ;
+    :role_ARG3 net:atomProperty_most_m ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_most_m,
+        :leaf_star_s2,
+        :leaf_star_s3 .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_relative-position_r a :AMR_Leaf ;
+    :edge_r_c :leaf_center_c ;
+    :edge_r_d2 :leaf_distance-quantity_d2 ;
+    :hasConcept :concept_relative-position ;
+    :hasVariable :variable_r .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_star_s2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_star_s2 ;
+    net:coverNode :leaf_star_s2 ;
+    net:hasClassName "star" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "star" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_center_c a :AMR_Leaf ;
+    :edge_c_a :leaf_arm_a ;
+    :hasConcept :concept_center ;
+    :hasVariable :variable_c .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_m :leaf_most_m ;
+    :edge_ii_s2 :leaf_star_s2 ;
+    :edge_ii_s3 :leaf_star_s3 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_star_s3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_star_s3 ;
+    net:coverNode :leaf_star_s3 ;
+    net:hasClassName "star" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "star" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_galaxy_g a :AMR_Leaf ;
+    :edge_g_name_MilkyWay :value_MilkyWay ;
+    :hasConcept :concept_galaxy ;
+    :hasVariable :variable_g .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_arm_a a :AMR_Leaf ;
+    :edge_a_name_Orion :value_Orion ;
+    :hasConcept :concept_arm ;
+    :hasVariable :variable_a .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:leaf_star_s2 a :AMR_Leaf ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s2 .
+
+:leaf_star_s3 a :AMR_Leaf ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s3 .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..57ca23e6e506837bc20602ad5794bc8531940619
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1277 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:be-located-at-91.ARG1 a ns2:FrameRole .
+
+ns2:be-located-at-91.ARG2 a ns2:FrameRole .
+
+ns2:contain-01.ARG0 a ns2:FrameRole .
+
+ns2:contain-01.ARG1 a ns2:FrameRole .
+
+ns2:include-91.ARG1 a ns2:FrameRole .
+
+ns2:include-91.ARG2 a ns2:FrameRole .
+
+ns2:include-91.ARG3 a ns2:FrameRole .
+
+ns2:possible-01.ARG1 a ns2:FrameRole .
+
+ns2:see-01.ARG1 a ns2:FrameRole .
+
+ns11:dayperiod a ns3:Role .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:location a ns3:Role .
+
+ns11:op1 a ns3:Role .
+
+ns11:quant a ns3:Role .
+
+ns11:time a ns3:Role .
+
+ns11:unit a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_name_Orion a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_b_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c2_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_c2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_a a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_d2_l a :AMR_Edge ;
+    :hasRoleID "unit" .
+
+:edge_d2_quant_26000 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_d_n4 a :AMR_Edge ;
+    :hasRoleID "dayperiod" .
+
+:edge_g_name_MilkyWay a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_ii_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_ii_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_p9_ARG0_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r_c a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_r_d2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_s4_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s4_s5 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_s5_d a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_contain-01_c2 a :AMR_Leaf ;
+    :edge_c2_a :leaf_arm_a ;
+    :edge_c2_s2 :leaf_star_s2 ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_g :leaf_galaxy_g ;
+    :edge_p9_ARG1_c :leaf_center_c ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_m :leaf_most_m ;
+    :edge_ii_s2 :leaf_star_s2 ;
+    :edge_ii_s3 :leaf_star_s3 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_possible-01_p a :AMR_Leaf ;
+    :edge_p_s4 :leaf_see-01_s4 ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-22 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#root01> ;
+    :hasRootLeaf :leaf_be-located-at-91_b ;
+    :hasSentenceID "WikiAbstract-SolarSystem-22" ;
+    :hasSentenceStatement "The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c2> a ns2:contain-01 ;
+    ns2:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    ns2:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#g> a ns11:galaxy ;
+    rdfs:label "Milky Way" ;
+    ns11:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#ii> a ns2:include-91 ;
+    ns2:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
+    ns2:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns2:include-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#p> a ns2:possible-01 ;
+    ns2:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-22" ;
+    ns3:has-sentence "The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_arm rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:arm ;
+    :label "arm" .
+
+:concept_be-located-at-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:be-located-at-91 ;
+    :label "be-located-at-91" .
+
+:concept_center rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:center ;
+    :label "center" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:contain-01 ;
+    :label "contain-01" .
+
+:concept_date-entity rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:date-entity ;
+    :label "date-entity" .
+
+:concept_distance-quantity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:distance-quantity ;
+    :label "distance-quantity" .
+
+:concept_galaxy rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:galaxy ;
+    :label "galaxy" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:include-91 ;
+    :label "include-91" .
+
+:concept_light-year rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:light-year ;
+    :label "light-year" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_night rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:night ;
+    :label "night" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_relative-position rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:relative-position ;
+    :label "relative-position" .
+
+:concept_see-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:see-01 ;
+    :label "see-01" .
+
+:concept_sky rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sky ;
+    :label "sky" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:system ;
+    :label "system" .
+
+:leaf_be-located-at-91_b a :AMR_Leaf ;
+    :edge_b_r :leaf_relative-position_r ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_be-located-at-91 ;
+    :hasVariable :variable_b .
+
+:leaf_date-entity_d a :AMR_Leaf ;
+    :edge_d_n4 :leaf_night_n4 ;
+    :hasConcept :concept_date-entity ;
+    :hasVariable :variable_d .
+
+:leaf_distance-quantity_d2 a :AMR_Leaf ;
+    :edge_d2_l :leaf_light-year_l ;
+    :edge_d2_quant_26000 :value_26000 ;
+    :hasConcept :concept_distance-quantity ;
+    :hasVariable :variable_d2 .
+
+:leaf_galaxy_g a :AMR_Leaf ;
+    :edge_g_name_MilkyWay :value_MilkyWay ;
+    :hasConcept :concept_galaxy ;
+    :hasVariable :variable_g .
+
+:leaf_light-year_l a :AMR_Leaf ;
+    :hasConcept :concept_light-year ;
+    :hasVariable :variable_l .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_night_n4 a :AMR_Leaf ;
+    :hasConcept :concept_night ;
+    :hasVariable :variable_n4 .
+
+:leaf_relative-position_r a :AMR_Leaf ;
+    :edge_r_c :leaf_center_c ;
+    :edge_r_d2 :leaf_distance-quantity_d2 ;
+    :hasConcept :concept_relative-position ;
+    :hasVariable :variable_r .
+
+:leaf_see-01_s4 a :AMR_Leaf ;
+    :edge_s4_s3 :leaf_star_s3 ;
+    :edge_s4_s5 :leaf_sky_s5 ;
+    :hasConcept :concept_see-01 ;
+    :hasVariable :variable_s4 .
+
+:leaf_sky_s5 a :AMR_Leaf ;
+    :edge_s5_d :leaf_date-entity_d ;
+    :hasConcept :concept_sky ;
+    :hasVariable :variable_s5 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:value_26000 a :AMR_Value ;
+    rdfs:label "26000" .
+
+:value_MilkyWay a :AMR_Value ;
+    rdfs:label "MilkyWay" .
+
+:value_Orion a :AMR_Value ;
+    rdfs:label "Orion" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    :label "a" ;
+    :name "Orion" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c2> ;
+    :label "c2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#g> ;
+    :label "g" ;
+    :name "Milky Way" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> ;
+    :label "m" .
+
+:variable_n4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> ;
+    :label "n4" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#p> ;
+    :label "p" .
+
+:variable_p9 a ns11:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> ;
+    :label "s" ;
+    :name "Solar System" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> ;
+    :label "s4" .
+
+:variable_s5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> ;
+    :label "s5" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> a ns2:be-located-at-91 ;
+    ns2:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> ;
+    ns2:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> a ns3:date-entity ;
+    ns11:dayperiod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> a ns11:distance-quantity ;
+    ns11:quant "26000" ;
+    ns11:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> a ns11:light-year ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> a ns11:night ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> a ns11:relative-position ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    ns11:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> a ns11:system ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> a ns2:see-01 ;
+    ns2:see-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> a ns11:sky ;
+    ns11:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:be-located-at-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:contain-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:include-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:possible-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:see-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:arm a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:center a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:distance-quantity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:galaxy a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:light-year a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:night a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:part a ns3:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:relative-position a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sky a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:date-entity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_star rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#star> ;
+    :label "star" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_arm_a a :AMR_Leaf ;
+    :edge_a_name_Orion :value_Orion ;
+    :hasConcept :concept_arm ;
+    :hasVariable :variable_a .
+
+:leaf_center_c a :AMR_Leaf ;
+    :edge_c_a :leaf_arm_a ;
+    :hasConcept :concept_center ;
+    :hasVariable :variable_c .
+
+:leaf_star_s2 a :AMR_Leaf ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s2 .
+
+:leaf_star_s3 a :AMR_Leaf ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s3 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> a ns11:arm ;
+    rdfs:label "Orion" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> a ns11:center ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> a <http://amr.isi.edu/entity-types#star> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> a <http://amr.isi.edu/entity-types#star> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#star> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..e3e429a24a428dc0dbffed7b938a0f04b91b8735
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1577 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:be-located-at-91.ARG1 a ns2:FrameRole .
+
+ns2:be-located-at-91.ARG2 a ns2:FrameRole .
+
+ns2:contain-01.ARG0 a ns2:FrameRole .
+
+ns2:contain-01.ARG1 a ns2:FrameRole .
+
+ns2:include-91.ARG1 a ns2:FrameRole .
+
+ns2:include-91.ARG2 a ns2:FrameRole .
+
+ns2:include-91.ARG3 a ns2:FrameRole .
+
+ns2:possible-01.ARG1 a ns2:FrameRole .
+
+ns2:see-01.ARG1 a ns2:FrameRole .
+
+ns11:dayperiod a ns3:Role .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:location a ns3:Role .
+
+ns11:op1 a ns3:Role .
+
+ns11:quant a ns3:Role .
+
+ns11:time a ns3:Role .
+
+ns11:unit a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_name_Orion a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_b_r a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_b_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c2_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_c2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_a a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_d2_l a :AMR_Edge ;
+    :hasRoleID "unit" .
+
+:edge_d2_quant_26000 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_d_n4 a :AMR_Edge ;
+    :hasRoleID "dayperiod" .
+
+:edge_g_name_MilkyWay a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_ii_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_ii_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_p9_ARG0_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_r_c a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_r_d2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_s4_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_s4_s5 a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:edge_s5_d a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-22 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#root01> ;
+    :hasRootLeaf :leaf_be-located-at-91_b ;
+    :hasSentenceID "WikiAbstract-SolarSystem-22" ;
+    :hasSentenceStatement "The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_light-year_l a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_light-year_l ;
+    net:coverNode :leaf_light-year_l ;
+    net:hasClassName "light-year" ;
+    net:hasNaming "light-year" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomClass_night_n4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_night_n4 ;
+    net:coverNode :leaf_night_n4 ;
+    net:hasClassName "night" ;
+    net:hasNaming "night" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomClass_sky_s5 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_sky_s5 ;
+    net:coverNode :leaf_sky_s5 ;
+    net:hasClassName "sky" ;
+    net:hasNaming "sky" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_be_b a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_system_s,
+        net:individual_SolarSystem_s ;
+    :role_ARG2 net:atomClass_relative-position_r ;
+    net:coverBaseNode :leaf_be-located-at-91_b ;
+    net:coverNode :leaf_be-located-at-91_b ;
+    net:hasNaming "be" ;
+    net:hasPropertyName "be" ;
+    net:hasPropertyName01 "being" ;
+    net:hasPropertyName10 "be-by" ;
+    net:hasPropertyName12 "be-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_relative-position_r,
+        :leaf_system_s .
+
+net:atomProperty_contain_c2 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_arm_a,
+        net:individual_Orion_a ;
+    :role_ARG1 net:atomClass_star_s2 ;
+    net:coverBaseNode :leaf_contain-01_c2 ;
+    net:coverNode :leaf_contain-01_c2 ;
+    net:hasNaming "contain" ;
+    net:hasPropertyName "contain" ;
+    net:hasPropertyName01 "containing" ;
+    net:hasPropertyName10 "contain-by" ;
+    net:hasPropertyName12 "contain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_arm_a,
+        :leaf_star_s2 .
+
+net:atomProperty_date_d a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_date-entity_d ;
+    net:coverNode :leaf_date-entity_d ;
+    net:hasNaming "date" ;
+    net:hasPropertyName "date" ;
+    net:hasPropertyName01 "dateing" ;
+    net:hasPropertyName10 "date-by" ;
+    net:hasPropertyName12 "date-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_galaxy_g,
+        net:individual_MilkyWay_g ;
+    :role_ARG1 net:atomClass_center_c ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_center_c,
+        :leaf_galaxy_g .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_star-include-star_s2 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_star_s2,
+        net:atomClass_star_s3,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_star_s2 ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_star_s2,
+        :leaf_star_s3 ;
+    net:hasMotherClassNet net:atomClass_star_s2 ;
+    net:hasNaming "star-include-star" ;
+    net:hasRestriction net:restriction_include-star_ii ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_possible-modality_p a net:Modality_Phenomena_Net,
+        net:Phenomena_Net ;
+    :role_ARG1 net:atomProperty_see_s4 ;
+    net:coverBaseNode :leaf_possible-01_p ;
+    net:coverNode :leaf_possible-01_p ;
+    net:hasNaming "possible-modality" ;
+    net:hasPhenomenaRef "possible-01" ;
+    net:hasPhenomenaType :phenomena_modality_possible ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c2> a ns2:contain-01 ;
+    ns2:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    ns2:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#g> a ns11:galaxy ;
+    rdfs:label "Milky Way" ;
+    ns11:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#ii> a ns2:include-91 ;
+    ns2:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
+    ns2:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns2:include-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#p> a ns2:possible-01 ;
+    ns2:possible-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-22" ;
+    ns3:has-sentence "The Solar System is located 26,000 light-years from the center of the Milky Way galaxy in the Orion Arm, which contains most of the visible stars in the night sky." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_arm rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:arm ;
+    :label "arm" .
+
+:concept_be-located-at-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:be-located-at-91 ;
+    :label "be-located-at-91" .
+
+:concept_center rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:center ;
+    :label "center" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:contain-01 ;
+    :label "contain-01" .
+
+:concept_date-entity rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:date-entity ;
+    :label "date-entity" .
+
+:concept_distance-quantity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:distance-quantity ;
+    :label "distance-quantity" .
+
+:concept_galaxy rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:galaxy ;
+    :label "galaxy" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:include-91 ;
+    :label "include-91" .
+
+:concept_light-year rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:light-year ;
+    :label "light-year" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_night rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:night ;
+    :label "night" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_possible-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:possible-01 ;
+    :hasPhenomenaLink :phenomena_modality_possible ;
+    :label "possible-01" .
+
+:concept_relative-position rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:relative-position ;
+    :label "relative-position" .
+
+:concept_see-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:see-01 ;
+    :label "see-01" .
+
+:concept_sky rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:sky ;
+    :label "sky" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:system ;
+    :label "system" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    :label "a" ;
+    :name "Orion" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c2> ;
+    :label "c2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> ;
+    :label "d" .
+
+:variable_d2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> ;
+    :label "d2" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#g> ;
+    :label "g" ;
+    :name "Milky Way" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> ;
+    :label "m" .
+
+:variable_n4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> ;
+    :label "n4" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#p> ;
+    :label "p" .
+
+:variable_p9 a ns11:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> ;
+    :label "s" ;
+    :name "Solar System" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> ;
+    :label "s4" .
+
+:variable_s5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> ;
+    :label "s5" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_distance-quantity_d2 a net:Atom_Class_Net ;
+    :role_quant net:value_26000_blankNode ;
+    net:coverBaseNode :leaf_distance-quantity_d2 ;
+    net:coverNode :leaf_distance-quantity_d2 ;
+    net:hasClassName "distance-quantity" ;
+    net:hasNaming "distance-quantity" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomClass_relative-position_r a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_op1 net:atomClass_center_c ;
+    :role_quant net:atomClass_distance-quantity_d2 ;
+    net:coverBaseNode :leaf_relative-position_r ;
+    net:coverNode :leaf_relative-position_r ;
+    net:hasClassName "relative-position" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "relative-position" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_see_s4 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s3 ;
+    net:coverBaseNode :leaf_see-01_s4 ;
+    net:coverNode :leaf_see-01_s4 ;
+    net:hasNaming "see" ;
+    net:hasPropertyName "see" ;
+    net:hasPropertyName01 "seeing" ;
+    net:hasPropertyName10 "see-by" ;
+    net:hasPropertyName12 "see-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_star_s3 .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_MilkyWay_g a net:Individual_Net ;
+    :role_name net:value_MilkyWay_blankNode ;
+    net:coverBaseNode :leaf_galaxy_g ;
+    net:coverNode :leaf_galaxy_g ;
+    net:hasIndividualLabel "MilkyWay" ;
+    net:hasMotherClassNet net:atomClass_galaxy_g ;
+    net:hasNaming "MilkyWay" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:individual_Orion_a a net:Individual_Net ;
+    :role_name net:value_Orion_blankNode ;
+    net:coverBaseNode :leaf_arm_a ;
+    net:coverNode :leaf_arm_a ;
+    net:hasIndividualLabel "Orion" ;
+    net:hasMotherClassNet net:atomClass_arm_a ;
+    net:hasNaming "Orion" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:individual_SolarSystem_s a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_include-star_ii a net:Restriction_Net ;
+    net:composeFrom net:atomClass_star_s3,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_star_s3 ;
+    net:hasNaming "include-star" ;
+    net:hasRestrictionNetValue net:atomClass_star_s3 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:value_26000_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_26000 ;
+    net:hasNaming "26000" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:hasValueLabel "26000" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#b> a ns2:be-located-at-91 ;
+    ns2:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> ;
+    ns2:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> a ns3:date-entity ;
+    ns11:dayperiod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> a ns11:distance-quantity ;
+    ns11:quant "26000" ;
+    ns11:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#l> a ns11:light-year ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#m> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#n4> a ns11:night ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#r> a ns11:relative-position ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> ;
+    ns11:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s> a ns11:system ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s4> a ns2:see-01 ;
+    ns2:see-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s5> a ns11:sky ;
+    ns11:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:be-located-at-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:contain-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:include-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:possible-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:see-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:arm a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:center a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:distance-quantity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:galaxy a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:light-year a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:night a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:part a ns3:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:relative-position a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:sky a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:date-entity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_star rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#star> ;
+    :label "star" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_contain-01_c2 a :AMR_Leaf ;
+    :edge_c2_a :leaf_arm_a ;
+    :edge_c2_s2 :leaf_star_s2 ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_g :leaf_galaxy_g ;
+    :edge_p9_ARG1_c :leaf_center_c ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_possible-01_p a :AMR_Leaf ;
+    :edge_p_s4 :leaf_see-01_s4 ;
+    :hasConcept :concept_possible-01 ;
+    :hasVariable :variable_p .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_26000 a :AMR_Value ;
+    rdfs:label "26000" .
+
+:value_MilkyWay a :AMR_Value ;
+    rdfs:label "MilkyWay" .
+
+:value_Orion a :AMR_Value ;
+    rdfs:label "Orion" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_arm_a a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Orion_blankNode ;
+    net:coverBaseNode :leaf_arm_a ;
+    net:coverNode :leaf_arm_a ;
+    net:hasClassName "arm" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "arm" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomClass_center_c a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_center_c ;
+    net:coverNode :leaf_center_c ;
+    net:hasClassName "center" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "center" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomClass_galaxy_g a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_MilkyWay_blankNode ;
+    net:coverBaseNode :leaf_galaxy_g ;
+    net:coverNode :leaf_galaxy_g ;
+    net:hasClassName "galaxy" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "galaxy" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_MilkyWay_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_MilkyWay ;
+    net:hasNaming "MilkyWay" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:hasValueLabel "MilkyWay" .
+
+net:value_Orion_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Orion ;
+    net:hasNaming "Orion" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:hasValueLabel "Orion" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> a ns11:arm ;
+    rdfs:label "Orion" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#c> a ns11:center ;
+    ns11:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s2> a <http://amr.isi.edu/entity-types#star> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-22#s3> a <http://amr.isi.edu/entity-types#star> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#star> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_be-located-at-91_b a :AMR_Leaf ;
+    :edge_b_r :leaf_relative-position_r ;
+    :edge_b_s :leaf_system_s ;
+    :hasConcept :concept_be-located-at-91 ;
+    :hasVariable :variable_b .
+
+:leaf_date-entity_d a :AMR_Leaf ;
+    :edge_d_n4 :leaf_night_n4 ;
+    :hasConcept :concept_date-entity ;
+    :hasVariable :variable_d .
+
+:leaf_distance-quantity_d2 a :AMR_Leaf ;
+    :edge_d2_l :leaf_light-year_l ;
+    :edge_d2_quant_26000 :value_26000 ;
+    :hasConcept :concept_distance-quantity ;
+    :hasVariable :variable_d2 .
+
+:leaf_light-year_l a :AMR_Leaf ;
+    :hasConcept :concept_light-year ;
+    :hasVariable :variable_l .
+
+:leaf_night_n4 a :AMR_Leaf ;
+    :hasConcept :concept_night ;
+    :hasVariable :variable_n4 .
+
+:leaf_see-01_s4 a :AMR_Leaf ;
+    :edge_s4_s3 :leaf_star_s3 ;
+    :edge_s4_s5 :leaf_sky_s5 ;
+    :hasConcept :concept_see-01 ;
+    :hasVariable :variable_s4 .
+
+:leaf_sky_s5 a :AMR_Leaf ;
+    :edge_s5_d :leaf_date-entity_d ;
+    :hasConcept :concept_sky ;
+    :hasVariable :variable_s5 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s2 ;
+    :role_ARG2 net:atomClass_star_s3 ;
+    :role_ARG3 net:atomProperty_most_m ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_most_m,
+        :leaf_star_s2,
+        :leaf_star_s3 .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_relative-position_r a :AMR_Leaf ;
+    :edge_r_c :leaf_center_c ;
+    :edge_r_d2 :leaf_distance-quantity_d2 ;
+    :hasConcept :concept_relative-position ;
+    :hasVariable :variable_r .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_star_s2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_star_s2 ;
+    net:coverNode :leaf_star_s2 ;
+    net:hasClassName "star" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "star" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_center_c a :AMR_Leaf ;
+    :edge_c_a :leaf_arm_a ;
+    :hasConcept :concept_center ;
+    :hasVariable :variable_c .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_m :leaf_most_m ;
+    :edge_ii_s2 :leaf_star_s2 ;
+    :edge_ii_s3 :leaf_star_s3 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_star_s3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_star_s3 ;
+    net:coverNode :leaf_star_s3 ;
+    net:hasClassName "star" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "star" ;
+    net:hasStructure "WikiAbstract-SolarSystem-22" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_galaxy_g a :AMR_Leaf ;
+    :edge_g_name_MilkyWay :value_MilkyWay ;
+    :hasConcept :concept_galaxy ;
+    :hasVariable :variable_g .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_arm_a a :AMR_Leaf ;
+    :edge_a_name_Orion :value_Orion ;
+    :hasConcept :concept_arm ;
+    :hasVariable :variable_a .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:leaf_star_s2 a :AMR_Leaf ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s2 .
+
+:leaf_star_s3 a :AMR_Leaf ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s3 .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..647a423a0860fb1021689a7bc9f8e4452073b4ec
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-22/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,96 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#MilkyWay> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#galaxy> ;
+    rdfs:label "MilkyWay" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#Orion> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#arm> ;
+    rdfs:label "Orion" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#be> a owl:ObjectProperty ;
+    rdfs:label "be" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#center> a owl:Class ;
+    rdfs:label "center" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
+    rdfs:label "contain" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#date> a owl:ObjectProperty ;
+    rdfs:label "date" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#distance-quantity> a owl:Class ;
+    rdfs:label "distance-quantity" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#light-year> a owl:Class ;
+    rdfs:label "light-year" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#night> a owl:Class ;
+    rdfs:label "night" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#relative-position> a owl:Class ;
+    rdfs:label "relative-position" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#see> a owl:ObjectProperty ;
+    rdfs:label "see" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#sky> a owl:Class ;
+    rdfs:label "sky" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#star-include-star> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#star> ],
+        <https://tenet.tetras-libre.fr/extract-result#star> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
+<https://tenet.tetras-libre.fr/extract-result#star> a owl:Class ;
+    rdfs:label "star" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-22" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..200821593070a4b1ab05d286c03d471fe3c6d828
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,858 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#n> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h2> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#c> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l2> a ns3:local-02 ;
+    ns3:local-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-23" ;
+    ns1:has-sentence "The nearest stars are within the so-called Local Bubble, with the closest, Proxima Centauri, at 4.25 light-years.." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:close-10.ARG1 a ns3:FrameRole .
+
+ns3:close-10.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:local-02.ARG1 a ns3:FrameRole .
+
+ns3:near-02.ARG1 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns1:Role .
+
+ns2:mod a ns1:Role .
+
+ns2:ord a ns1:Role .
+
+ns2:scale a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#c> a ns3:close-10 ;
+    ns3:close-10.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    ns3:close-10.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l> a ns2:light-year .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m> a ns1:most .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m2> a ns1:most ;
+    ns2:ord <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#o> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#n> a ns3:near-02 ;
+    ns3:near-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#o> a ns2:ordinal-entity ;
+    ns2:scale <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l> ;
+    ns2:value "4.25" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s3> a ns2:so-called .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:close-10 a ns1:Frame .
+
+ns3:include-91 a ns1:Frame .
+
+ns3:local-02 a ns1:Frame .
+
+ns3:near-02 a ns1:Frame .
+
+ns2:bubble a ns1:Concept .
+
+ns2:light-year a ns1:Concept .
+
+ns2:ordinal-entity a ns1:Concept .
+
+ns2:so-called a ns1:Concept .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> a ns2:bubble ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s3> .
+
+<http://amr.isi.edu/entity-types#star> a ns1:NamedEntity .
+
+ns3:have-degree-91 a ns1:Frame .
+
+ns1:most a ns1:Concept .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> a <http://amr.isi.edu/entity-types#star> ;
+    rdfs:label "Proxima Centre" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> a <http://amr.isi.edu/entity-types#star> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..6a15c88eeb6acf90a1a0139ba60f92d105b3a092
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1398 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:close-10.ARG1 a ns3:FrameRole .
+
+ns3:close-10.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:local-02.ARG1 a ns3:FrameRole .
+
+ns3:near-02.ARG1 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns1:Role .
+
+ns2:mod a ns1:Role .
+
+ns2:ord a ns1:Role .
+
+ns2:scale a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_b_s3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h2_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_n a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_ii_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l2_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m2_o a :AMR_Edge ;
+    :hasRoleID "ord" .
+
+:edge_n_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_l a :AMR_Edge ;
+    :hasRoleID "scale" .
+
+:edge_s2_name_ProximaCentre a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_s_b a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-23 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#root01> ;
+    :hasRootLeaf :leaf_star_s ;
+    :hasSentenceID "WikiAbstract-SolarSystem-23" ;
+    :hasSentenceStatement "The nearest stars are within the so-called Local Bubble, with the closest, Proxima Centauri, at 4.25 light-years.." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#ProximaCentre> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#star> ;
+    rdfs:label "ProximaCentre" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#close> a owl:ObjectProperty ;
+    rdfs:label "close" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#light-year> a owl:Class ;
+    rdfs:label "light-year" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#local> a owl:ObjectProperty ;
+    rdfs:label "local" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#near> a owl:ObjectProperty ;
+    rdfs:label "near" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#ordinal-entity> a owl:Class ;
+    rdfs:label "ordinal-entity" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#so-called-bubble> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#bubble> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_light-year_l a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_light-year_l ;
+    net:coverNode :leaf_light-year_l ;
+    net:hasClassName "light-year" ;
+    net:hasNaming "light-year" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:atomClass_ordinal-entity_o a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_ordinal-entity_o ;
+    net:coverNode :leaf_ordinal-entity_o ;
+    net:hasClassName "ordinal-entity" ;
+    net:hasNaming "ordinal-entity" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s2,
+        net:individual_ProximaCentre_s2 ;
+    :role_ARG2 net:atomClass_star_s ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_star_s,
+        :leaf_star_s2 .
+
+net:atomProperty_local_l2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_bubble_b,
+        net:compositeClass_so-called-bubble_b ;
+    net:coverBaseNode :leaf_local-02_l2 ;
+    net:coverNode :leaf_local-02_l2 ;
+    net:hasNaming "local" ;
+    net:hasPropertyName "local" ;
+    net:hasPropertyName01 "localing" ;
+    net:hasPropertyName10 "local-by" ;
+    net:hasPropertyName12 "local-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_bubble_b .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_so-called_s3 a net:Individual_Net ;
+    net:composeFrom net:atomClass_so-called_s3 ;
+    net:coverBaseNode :leaf_so-called_s3 ;
+    net:coverNode :leaf_so-called_s3 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "so-called" ;
+    net:hasMotherClassNet net:atomClass_so-called_s3 ;
+    net:hasNaming "so-called" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_star_s ;
+    :role_ARG2 net:atomProperty_near_n ;
+    :role_ARG3 net:atomProperty_most_m ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_star_s2,
+        net:individual_ProximaCentre_s2 ;
+    :role_ARG2 net:atomProperty_close_c ;
+    :role_ARG3 net:atomProperty_most_m2 ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#n> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h2> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#c> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l2> a ns3:local-02 ;
+    ns3:local-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-23" ;
+    ns1:has-sentence "The nearest stars are within the so-called Local Bubble, with the closest, Proxima Centauri, at 4.25 light-years.." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_bubble rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:bubble ;
+    :label "bubble" .
+
+:concept_close-10 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:close-10 ;
+    :label "close-10" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
+
+:concept_light-year rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:light-year ;
+    :label "light-year" .
+
+:concept_local-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:local-02 ;
+    :label "local-02" .
+
+:concept_near-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:near-02 ;
+    :label "near-02" .
+
+:concept_ordinal-entity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:ordinal-entity ;
+    :label "ordinal-entity" .
+
+:concept_so-called rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:so-called ;
+    :label "so-called" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#c> ;
+    :label "c" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l> ;
+    :label "l" .
+
+:variable_l2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l2> ;
+    :label "l2" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m2> ;
+    :label "m2" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#o> ;
+    :label "o" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    :label "s2" ;
+    :name "Proxima Centre" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s3> ;
+    :label "s3" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#bubble> a owl:Class ;
+    rdfs:label "bubble" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#so-called> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#so-called> ;
+    rdfs:label "so-called" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#star> a owl:Class ;
+    rdfs:label "star" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-23" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_close_c a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s2,
+        net:individual_ProximaCentre_s2 ;
+    :role_ARG2 net:atomClass_star_s ;
+    net:coverBaseNode :leaf_close-10_c ;
+    net:coverNode :leaf_close-10_c ;
+    net:hasNaming "close" ;
+    net:hasPropertyName "close" ;
+    net:hasPropertyName01 "closeing" ;
+    net:hasPropertyName10 "close-by" ;
+    net:hasPropertyName12 "close-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_star_s,
+        :leaf_star_s2 .
+
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m2 ;
+    net:coverNode :leaf_most_m2 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_near_n a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s ;
+    net:coverBaseNode :leaf_near-02_n ;
+    net:coverNode :leaf_near-02_n ;
+    net:hasNaming "near" ;
+    net:hasPropertyName "near" ;
+    net:hasPropertyName01 "nearing" ;
+    net:hasPropertyName10 "near-by" ;
+    net:hasPropertyName12 "near-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_star_s .
+
+net:compositeClass_so-called-bubble_b a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_so-called_s3 ;
+    net:composeFrom net:atomClass_bubble_b,
+        net:atomClass_so-called_s3 ;
+    net:coverBaseNode :leaf_bubble_b ;
+    net:coverNode :leaf_bubble_b,
+        :leaf_so-called_s3 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_bubble_b ;
+    net:hasNaming "so-called-bubble" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#c> a ns3:close-10 ;
+    ns3:close-10.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    ns3:close-10.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l> a ns2:light-year ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m> a ns1:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m2> a ns1:most ;
+    ns2:ord <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#n> a ns3:near-02 ;
+    ns3:near-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#o> a ns2:ordinal-entity ;
+    ns2:scale <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l> ;
+    ns2:value "4.25" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s3> a ns2:so-called ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:close-10 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:local-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:near-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:bubble a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:light-year a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:ordinal-entity a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:so-called a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:most ;
+    :label "most" .
+
+:concept_star rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#star> ;
+    :label "star" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_m :leaf_most_m ;
+    :edge_h_n :leaf_near-02_n ;
+    :edge_h_s :leaf_star_s ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_c :leaf_close-10_c ;
+    :edge_h2_m2 :leaf_most_m2 ;
+    :edge_h2_s2 :leaf_star_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_s :leaf_star_s ;
+    :edge_ii_s2 :leaf_star_s2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_local-02_l2 a :AMR_Leaf ;
+    :edge_l2_b :leaf_bubble_b ;
+    :hasConcept :concept_local-02 ;
+    :hasVariable :variable_l2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:value_ProximaCentre a :AMR_Value ;
+    rdfs:label "ProximaCentre" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_ProximaCentre_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_ProximaCentre ;
+    net:hasNaming "ProximaCentre" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:hasValueLabel "ProximaCentre" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> a ns2:bubble ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#star> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:most a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_close-10_c a :AMR_Leaf ;
+    :edge_c_s :leaf_star_s ;
+    :edge_c_s2 :leaf_star_s2 ;
+    :hasConcept :concept_close-10 ;
+    :hasVariable :variable_c .
+
+:leaf_light-year_l a :AMR_Leaf ;
+    :hasConcept :concept_light-year ;
+    :hasVariable :variable_l .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_most_m2 a :AMR_Leaf ;
+    :edge_m2_o :leaf_ordinal-entity_o ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m2 .
+
+:leaf_near-02_n a :AMR_Leaf ;
+    :edge_n_s :leaf_star_s ;
+    :hasConcept :concept_near-02 ;
+    :hasVariable :variable_n .
+
+:leaf_ordinal-entity_o a :AMR_Leaf ;
+    :edge_o_l :leaf_light-year_l ;
+    :hasConcept :concept_ordinal-entity ;
+    :hasVariable :variable_o .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_bubble_b a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_so-called_s3 ;
+    net:coverBaseNode :leaf_bubble_b ;
+    net:coverNode :leaf_bubble_b ;
+    net:hasClassName "bubble" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "bubble" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:individual_ProximaCentre_s2 a net:Individual_Net ;
+    :role_name net:value_ProximaCentre_blankNode ;
+    net:coverBaseNode :leaf_star_s2 ;
+    net:coverNode :leaf_star_s2 ;
+    net:hasIndividualLabel "ProximaCentre" ;
+    net:hasMotherClassNet net:atomClass_star_s2 ;
+    net:hasNaming "ProximaCentre" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> a <http://amr.isi.edu/entity-types#star> ;
+    rdfs:label "Proxima Centre" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+net:atomClass_star_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_star_s ;
+    net:coverNode :leaf_star_s ;
+    net:hasClassName "star" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "star" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:atomClass_star_s2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_ProximaCentre_blankNode ;
+    net:coverBaseNode :leaf_star_s2 ;
+    net:coverNode :leaf_star_s2 ;
+    net:hasClassName "star" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "star" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_so-called_s3 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_so-called_s3 ;
+    net:coverNode :leaf_so-called_s3 ;
+    net:hasClassName "so-called" ;
+    net:hasNaming "so-called" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> a <http://amr.isi.edu/entity-types#star> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_so-called_s3 a :AMR_Leaf ;
+    :hasConcept :concept_so-called ;
+    :hasVariable :variable_s3 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_bubble_b a :AMR_Leaf ;
+    :edge_b_s3 :leaf_so-called_s3 ;
+    :hasConcept :concept_bubble ;
+    :hasVariable :variable_b .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_star_s2 a :AMR_Leaf ;
+    :edge_s2_name_ProximaCentre :value_ProximaCentre ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s2 .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_star_s a :AMR_Leaf ;
+    :edge_s_b :leaf_bubble_b ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..e708bc4f9bd87f9dd32956f2bee028f207d1cee9
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1132 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:close-10.ARG1 a ns3:FrameRole .
+
+ns3:close-10.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:local-02.ARG1 a ns3:FrameRole .
+
+ns3:near-02.ARG1 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns1:Role .
+
+ns2:mod a ns1:Role .
+
+ns2:ord a ns1:Role .
+
+ns2:scale a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_b_s3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h2_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_n a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_ii_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l2_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m2_o a :AMR_Edge ;
+    :hasRoleID "ord" .
+
+:edge_n_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_l a :AMR_Edge ;
+    :hasRoleID "scale" .
+
+:edge_s2_name_ProximaCentre a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_s_b a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_m :leaf_most_m ;
+    :edge_h_n :leaf_near-02_n ;
+    :edge_h_s :leaf_star_s ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_c :leaf_close-10_c ;
+    :edge_h2_m2 :leaf_most_m2 ;
+    :edge_h2_s2 :leaf_star_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_s :leaf_star_s ;
+    :edge_ii_s2 :leaf_star_s2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_local-02_l2 a :AMR_Leaf ;
+    :edge_l2_b :leaf_bubble_b ;
+    :hasConcept :concept_local-02 ;
+    :hasVariable :variable_l2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-23 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#root01> ;
+    :hasRootLeaf :leaf_star_s ;
+    :hasSentenceID "WikiAbstract-SolarSystem-23" ;
+    :hasSentenceStatement "The nearest stars are within the so-called Local Bubble, with the closest, Proxima Centauri, at 4.25 light-years.." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#n> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h2> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#c> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l2> a ns3:local-02 ;
+    ns3:local-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-23" ;
+    ns1:has-sentence "The nearest stars are within the so-called Local Bubble, with the closest, Proxima Centauri, at 4.25 light-years.." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_bubble rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:bubble ;
+    :label "bubble" .
+
+:concept_close-10 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:close-10 ;
+    :label "close-10" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
+
+:concept_light-year rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:light-year ;
+    :label "light-year" .
+
+:concept_local-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:local-02 ;
+    :label "local-02" .
+
+:concept_near-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:near-02 ;
+    :label "near-02" .
+
+:concept_ordinal-entity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:ordinal-entity ;
+    :label "ordinal-entity" .
+
+:concept_so-called rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:so-called ;
+    :label "so-called" .
+
+:leaf_close-10_c a :AMR_Leaf ;
+    :edge_c_s :leaf_star_s ;
+    :edge_c_s2 :leaf_star_s2 ;
+    :hasConcept :concept_close-10 ;
+    :hasVariable :variable_c .
+
+:leaf_light-year_l a :AMR_Leaf ;
+    :hasConcept :concept_light-year ;
+    :hasVariable :variable_l .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_most_m2 a :AMR_Leaf ;
+    :edge_m2_o :leaf_ordinal-entity_o ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m2 .
+
+:leaf_near-02_n a :AMR_Leaf ;
+    :edge_n_s :leaf_star_s ;
+    :hasConcept :concept_near-02 ;
+    :hasVariable :variable_n .
+
+:leaf_ordinal-entity_o a :AMR_Leaf ;
+    :edge_o_l :leaf_light-year_l ;
+    :hasConcept :concept_ordinal-entity ;
+    :hasVariable :variable_o .
+
+:leaf_so-called_s3 a :AMR_Leaf ;
+    :hasConcept :concept_so-called ;
+    :hasVariable :variable_s3 .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:value_ProximaCentre a :AMR_Value ;
+    rdfs:label "ProximaCentre" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#c> ;
+    :label "c" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l> ;
+    :label "l" .
+
+:variable_l2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l2> ;
+    :label "l2" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m2> ;
+    :label "m2" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#o> ;
+    :label "o" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    :label "s2" ;
+    :name "Proxima Centre" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s3> ;
+    :label "s3" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#c> a ns3:close-10 ;
+    ns3:close-10.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    ns3:close-10.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l> a ns2:light-year ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m> a ns1:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m2> a ns1:most ;
+    ns2:ord <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#n> a ns3:near-02 ;
+    ns3:near-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#o> a ns2:ordinal-entity ;
+    ns2:scale <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l> ;
+    ns2:value "4.25" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s3> a ns2:so-called ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:close-10 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:local-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:near-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:bubble a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:light-year a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:ordinal-entity a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:so-called a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:most ;
+    :label "most" .
+
+:concept_star rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#star> ;
+    :label "star" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_bubble_b a :AMR_Leaf ;
+    :edge_b_s3 :leaf_so-called_s3 ;
+    :hasConcept :concept_bubble ;
+    :hasVariable :variable_b .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> a ns2:bubble ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#star> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:most a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_star_s2 a :AMR_Leaf ;
+    :edge_s2_name_ProximaCentre :value_ProximaCentre ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s2 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> a <http://amr.isi.edu/entity-types#star> ;
+    rdfs:label "Proxima Centre" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_star_s a :AMR_Leaf ;
+    :edge_s_b :leaf_bubble_b ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> a <http://amr.isi.edu/entity-types#star> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..35e0bdef864c27ee160ffe266f38439f2b358141
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1337 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:close-10.ARG1 a ns3:FrameRole .
+
+ns3:close-10.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns3:include-91.ARG1 a ns3:FrameRole .
+
+ns3:include-91.ARG2 a ns3:FrameRole .
+
+ns3:local-02.ARG1 a ns3:FrameRole .
+
+ns3:near-02.ARG1 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:location a ns1:Role .
+
+ns2:mod a ns1:Role .
+
+ns2:ord a ns1:Role .
+
+ns2:scale a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_b_s3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h2_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_n a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_ii_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_l2_b a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m2_o a :AMR_Edge ;
+    :hasRoleID "ord" .
+
+:edge_n_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_l a :AMR_Edge ;
+    :hasRoleID "scale" .
+
+:edge_s2_name_ProximaCentre a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_s_b a :AMR_Edge ;
+    :hasRoleID "location" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-23 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#root01> ;
+    :hasRootLeaf :leaf_star_s ;
+    :hasSentenceID "WikiAbstract-SolarSystem-23" ;
+    :hasSentenceStatement "The nearest stars are within the so-called Local Bubble, with the closest, Proxima Centauri, at 4.25 light-years.." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_light-year_l a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_light-year_l ;
+    net:coverNode :leaf_light-year_l ;
+    net:hasClassName "light-year" ;
+    net:hasNaming "light-year" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:atomClass_ordinal-entity_o a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_ordinal-entity_o ;
+    net:coverNode :leaf_ordinal-entity_o ;
+    net:hasClassName "ordinal-entity" ;
+    net:hasNaming "ordinal-entity" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s2,
+        net:individual_ProximaCentre_s2 ;
+    :role_ARG2 net:atomClass_star_s ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_star_s,
+        :leaf_star_s2 .
+
+net:atomProperty_local_l2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_bubble_b,
+        net:compositeClass_so-called-bubble_b ;
+    net:coverBaseNode :leaf_local-02_l2 ;
+    net:coverNode :leaf_local-02_l2 ;
+    net:hasNaming "local" ;
+    net:hasPropertyName "local" ;
+    net:hasPropertyName01 "localing" ;
+    net:hasPropertyName10 "local-by" ;
+    net:hasPropertyName12 "local-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_bubble_b .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_so-called_s3 a net:Individual_Net ;
+    net:composeFrom net:atomClass_so-called_s3 ;
+    net:coverBaseNode :leaf_so-called_s3 ;
+    net:coverNode :leaf_so-called_s3 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "so-called" ;
+    net:hasMotherClassNet net:atomClass_so-called_s3 ;
+    net:hasNaming "so-called" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_star_s ;
+    :role_ARG2 net:atomProperty_near_n ;
+    :role_ARG3 net:atomProperty_most_m ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_star_s2,
+        net:individual_ProximaCentre_s2 ;
+    :role_ARG2 net:atomProperty_close_c ;
+    :role_ARG3 net:atomProperty_most_m2 ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#n> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h2> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#c> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#ii> a ns3:include-91 ;
+    ns3:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    ns3:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l2> a ns3:local-02 ;
+    ns3:local-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-23" ;
+    ns1:has-sentence "The nearest stars are within the so-called Local Bubble, with the closest, Proxima Centauri, at 4.25 light-years.." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_bubble rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:bubble ;
+    :label "bubble" .
+
+:concept_close-10 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:close-10 ;
+    :label "close-10" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:include-91 ;
+    :label "include-91" .
+
+:concept_light-year rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:light-year ;
+    :label "light-year" .
+
+:concept_local-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:local-02 ;
+    :label "local-02" .
+
+:concept_near-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:near-02 ;
+    :label "near-02" .
+
+:concept_ordinal-entity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:ordinal-entity ;
+    :label "ordinal-entity" .
+
+:concept_so-called rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:so-called ;
+    :label "so-called" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#c> ;
+    :label "c" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l> ;
+    :label "l" .
+
+:variable_l2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l2> ;
+    :label "l2" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m2> ;
+    :label "m2" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#o> ;
+    :label "o" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    :label "s2" ;
+    :name "Proxima Centre" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s3> ;
+    :label "s3" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_close_c a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s2,
+        net:individual_ProximaCentre_s2 ;
+    :role_ARG2 net:atomClass_star_s ;
+    net:coverBaseNode :leaf_close-10_c ;
+    net:coverNode :leaf_close-10_c ;
+    net:hasNaming "close" ;
+    net:hasPropertyName "close" ;
+    net:hasPropertyName01 "closeing" ;
+    net:hasPropertyName10 "close-by" ;
+    net:hasPropertyName12 "close-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_star_s,
+        :leaf_star_s2 .
+
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m2 ;
+    net:coverNode :leaf_most_m2 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_near_n a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_star_s ;
+    net:coverBaseNode :leaf_near-02_n ;
+    net:coverNode :leaf_near-02_n ;
+    net:hasNaming "near" ;
+    net:hasPropertyName "near" ;
+    net:hasPropertyName01 "nearing" ;
+    net:hasPropertyName10 "near-by" ;
+    net:hasPropertyName12 "near-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_star_s .
+
+net:compositeClass_so-called-bubble_b a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_so-called_s3 ;
+    net:composeFrom net:atomClass_bubble_b,
+        net:atomClass_so-called_s3 ;
+    net:coverBaseNode :leaf_bubble_b ;
+    net:coverNode :leaf_bubble_b,
+        :leaf_so-called_s3 ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_bubble_b ;
+    net:hasNaming "so-called-bubble" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#c> a ns3:close-10 ;
+    ns3:close-10.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> ;
+    ns3:close-10.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l> a ns2:light-year ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m> a ns1:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#m2> a ns1:most ;
+    ns2:ord <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#o> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#n> a ns3:near-02 ;
+    ns3:near-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#o> a ns2:ordinal-entity ;
+    ns2:scale <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#l> ;
+    ns2:value "4.25" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s3> a ns2:so-called ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:close-10 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:include-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:local-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:near-02 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:bubble a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:light-year a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:ordinal-entity a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:so-called a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:most ;
+    :label "most" .
+
+:concept_star rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#star> ;
+    :label "star" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_m :leaf_most_m ;
+    :edge_h_n :leaf_near-02_n ;
+    :edge_h_s :leaf_star_s ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_c :leaf_close-10_c ;
+    :edge_h2_m2 :leaf_most_m2 ;
+    :edge_h2_s2 :leaf_star_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_s :leaf_star_s ;
+    :edge_ii_s2 :leaf_star_s2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_local-02_l2 a :AMR_Leaf ;
+    :edge_l2_b :leaf_bubble_b ;
+    :hasConcept :concept_local-02 ;
+    :hasVariable :variable_l2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:value_ProximaCentre a :AMR_Value ;
+    rdfs:label "ProximaCentre" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_ProximaCentre_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_ProximaCentre ;
+    net:hasNaming "ProximaCentre" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" ;
+    net:hasValueLabel "ProximaCentre" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> a ns2:bubble ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#star> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:most a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_close-10_c a :AMR_Leaf ;
+    :edge_c_s :leaf_star_s ;
+    :edge_c_s2 :leaf_star_s2 ;
+    :hasConcept :concept_close-10 ;
+    :hasVariable :variable_c .
+
+:leaf_light-year_l a :AMR_Leaf ;
+    :hasConcept :concept_light-year ;
+    :hasVariable :variable_l .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_most_m2 a :AMR_Leaf ;
+    :edge_m2_o :leaf_ordinal-entity_o ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m2 .
+
+:leaf_near-02_n a :AMR_Leaf ;
+    :edge_n_s :leaf_star_s ;
+    :hasConcept :concept_near-02 ;
+    :hasVariable :variable_n .
+
+:leaf_ordinal-entity_o a :AMR_Leaf ;
+    :edge_o_l :leaf_light-year_l ;
+    :hasConcept :concept_ordinal-entity ;
+    :hasVariable :variable_o .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_bubble_b a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_so-called_s3 ;
+    net:coverBaseNode :leaf_bubble_b ;
+    net:coverNode :leaf_bubble_b ;
+    net:hasClassName "bubble" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "bubble" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:individual_ProximaCentre_s2 a net:Individual_Net ;
+    :role_name net:value_ProximaCentre_blankNode ;
+    net:coverBaseNode :leaf_star_s2 ;
+    net:coverNode :leaf_star_s2 ;
+    net:hasIndividualLabel "ProximaCentre" ;
+    net:hasMotherClassNet net:atomClass_star_s2 ;
+    net:hasNaming "ProximaCentre" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s2> a <http://amr.isi.edu/entity-types#star> ;
+    rdfs:label "Proxima Centre" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+net:atomClass_star_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_star_s ;
+    net:coverNode :leaf_star_s ;
+    net:hasClassName "star" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "star" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:atomClass_star_s2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_ProximaCentre_blankNode ;
+    net:coverBaseNode :leaf_star_s2 ;
+    net:coverNode :leaf_star_s2 ;
+    net:hasClassName "star" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "star" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_so-called_s3 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_so-called_s3 ;
+    net:coverNode :leaf_so-called_s3 ;
+    net:hasClassName "so-called" ;
+    net:hasNaming "so-called" ;
+    net:hasStructure "WikiAbstract-SolarSystem-23" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#s> a <http://amr.isi.edu/entity-types#star> ;
+    ns2:location <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-23#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_so-called_s3 a :AMR_Leaf ;
+    :hasConcept :concept_so-called ;
+    :hasVariable :variable_s3 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_bubble_b a :AMR_Leaf ;
+    :edge_b_s3 :leaf_so-called_s3 ;
+    :hasConcept :concept_bubble ;
+    :hasVariable :variable_b .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_star_s2 a :AMR_Leaf ;
+    :edge_s2_name_ProximaCentre :value_ProximaCentre ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s2 .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_star_s a :AMR_Leaf ;
+    :edge_s_b :leaf_bubble_b ;
+    :hasConcept :concept_star ;
+    :hasVariable :variable_s .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..02018eff0e53eb7eb0630433415aa412e1e8baf7
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-23/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,65 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#ProximaCentre> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#star> ;
+    rdfs:label "ProximaCentre" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#close> a owl:ObjectProperty ;
+    rdfs:label "close" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#light-year> a owl:Class ;
+    rdfs:label "light-year" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#local> a owl:ObjectProperty ;
+    rdfs:label "local" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#near> a owl:ObjectProperty ;
+    rdfs:label "near" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#ordinal-entity> a owl:Class ;
+    rdfs:label "ordinal-entity" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#so-called-bubble> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#bubble> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#bubble> a owl:Class ;
+    rdfs:label "bubble" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#so-called> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#so-called> ;
+    rdfs:label "so-called" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
+<https://tenet.tetras-libre.fr/extract-result#star> a owl:Class ;
+    rdfs:label "star" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-23" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..9b9de4112f1adac36ef07e16d28105a297a7b5ae
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,902 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> ;
+    ns2:polarity "-" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m> a ns11:mean-01 ;
+    ns11:mean-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:mean-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-03" ;
+    ns3:has-sentence "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG2 a ns11:FrameRole .
+
+ns11:equal-01.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns11:include-91.ARG1 a ns11:FrameRole .
+
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:mean-01.ARG1 a ns11:FrameRole .
+
+ns11:mean-01.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> a ns2:almost .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> a ns11:equal-01 ;
+    ns11:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> ;
+    ns11:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:equal-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> a ns2:large .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> a ns3:more .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> a ns3:most .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> a ns3:more ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> a ns2:sun .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> a ns2:small .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> a ns2:size .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity .
+
+ns11:direct-02 a ns3:Frame .
+
+ns11:equal-01 a ns3:Frame .
+
+ns11:include-91 a ns3:Frame .
+
+ns11:mean-01 a ns3:Frame .
+
+ns11:natural-03 a ns3:Frame .
+
+ns11:orbit-01 a ns3:Frame .
+
+ns2:almost a ns3:Concept .
+
+ns2:large a ns3:Concept .
+
+ns2:satellite a ns3:Concept .
+
+ns2:size a ns3:Concept .
+
+ns2:small a ns3:Concept .
+
+ns2:sun a ns3:Concept .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept .
+
+ns3:most a ns3:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> a ns2:object ;
+    ns2:quant "2" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> a ns2:satellite .
+
+ns11:have-degree-91 a ns3:Frame .
+
+ns2:object a ns3:Concept .
+
+ns3:more a ns3:Concept .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> a ns2:object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..8876ed599b468c2d36999ec15f1c893cd76785ac
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1815 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG2 a ns11:FrameRole .
+
+ns11:equal-01.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns11:include-91.ARG1 a ns11:FrameRole .
+
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:mean-01.ARG1 a ns11:FrameRole .
+
+ns11:mean-01.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_e a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_d_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_e_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_ii_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m4_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_n_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o3_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_quant_2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p_name_Mercury a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:root_WikiAbstract-SolarSystem-03 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-03" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#Mercury> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Mercury" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#almost> a owl:Class ;
+    rdfs:label "almost" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#equal> a owl:ObjectProperty ;
+    rdfs:label "equal" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:Class,
+        owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subClassOf sys:Entity ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#natural> a owl:ObjectProperty ;
+    rdfs:label "natural" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#not-direct> a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-include-object> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#object> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-mean-satellite> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#mean> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#satellite> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#size> a owl:Class ;
+    rdfs:label "size" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_natural_n a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s2 ;
+    net:coverBaseNode :leaf_natural-03_n ;
+    net:coverNode :leaf_natural-03_n ;
+    net:hasNaming "natural" ;
+    net:hasPropertyName "natural" ;
+    net:hasPropertyName01 "naturaling" ;
+    net:hasPropertyName10 "natural-by" ;
+    net:hasPropertyName12 "natural-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_satellite_s2 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:axiom_disjointProperty_direct_not-direct_d a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_direct_not-direct" ;
+    net:hasNetArgument net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:axiom_disjointProperty_not-direct_direct_d a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_not-direct_direct" ;
+    net:hasNetArgument net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:compositeClass_object-include-object_o a net:Composite_Class_Net ;
+    :role_quant net:value_2_blankNode ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_object_o2,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_object_o,
+        :leaf_object_o2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-include-object" ;
+    net:hasRestriction net:restriction_include-object_ii ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:compositeClass_object-mean-satellite_o2 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o2,
+        net:atomClass_satellite_s2,
+        net:atomProperty_mean_m ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_mean-01_m,
+        :leaf_object_o2,
+        :leaf_satellite_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o2 ;
+    net:hasNaming "object-mean-satellite" ;
+    net:hasRestriction net:restriction_mean-satellite_m ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:phenomena_degree_h ;
+    :role_op2 net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    :role_ARG2 net:atomClass_small_s3 ;
+    :role_ARG3 net:atomProperty_most_m3 ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> ;
+    ns2:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m> a ns11:mean-01 ;
+    ns11:mean-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:mean-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-03" ;
+    ns3:has-sentence "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:almost ;
+    :label "almost" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:direct-02 ;
+    :label "direct-02" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:equal-01 ;
+    :label "equal-01" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:include-91 ;
+    :label "include-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:mean-01 ;
+    :label "mean-01" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_size rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:size ;
+    :label "size" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_polarity a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> ;
+    :label "a2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    :label "p" ;
+    :name "Mercury" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> ;
+    :label "s4" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#mean> a owl:ObjectProperty ;
+    rdfs:label "mean" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite> a owl:Class ;
+    rdfs:label "satellite" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomClass_more_m4 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_almost_a2 ;
+    net:composeFrom net:atomProperty_more_m4 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasClassName "more" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "more" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomClass_size_s4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_size_s4 ;
+    net:coverNode :leaf_size_s4 ;
+    net:hasClassName "size" ;
+    net:hasNaming "size" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomClass_small_s3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomProperty_equal_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_more_m4,
+        net:atomProperty_more_m4 ;
+    :role_ARG2 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    :role_ARG3 net:atomClass_size_s4 ;
+    net:coverBaseNode :leaf_equal-01_e ;
+    net:coverNode :leaf_equal-01_e ;
+    net:hasNaming "equal" ;
+    net:hasPropertyName "equal" ;
+    net:hasPropertyName01 "equaling" ;
+    net:hasPropertyName10 "equal-by" ;
+    net:hasPropertyName12 "equal-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_more_m4,
+        :leaf_planet_p,
+        :leaf_size_s4 .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m3 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m3 ;
+    net:coverNode :leaf_most_m3 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    :role_ARG4 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:restriction_include-object_ii a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o2,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_object_o2 ;
+    net:hasNaming "include-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:restriction_mean-satellite_m a net:Restriction_Net ;
+    net:composeFrom net:atomClass_satellite_s2,
+        net:atomProperty_mean_m ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m,
+        :leaf_satellite_s2 ;
+    net:hasNaming "mean-satellite" ;
+    net:hasRestrictionNetValue net:atomClass_satellite_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_mean_m ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> a ns2:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> a ns11:equal-01 ;
+    ns11:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> ;
+    ns11:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:equal-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> a ns3:more ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> a ns2:size ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:direct-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:equal-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:include-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:mean-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:natural-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:almost a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:size a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m3 :leaf_most_m3 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s3 :leaf_small_s3 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_2 a :AMR_Value ;
+    rdfs:label "2" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_almost_a2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_almost_a2 ;
+    net:coverNode :leaf_almost_a2 ;
+    net:hasClassName "almost" ;
+    net:hasNaming "almost" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomClass_orbit_o3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_object_o2 ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:composeFrom net:atomProperty_orbit_o3 ;
+    net:coverBaseNode :leaf_orbit-01_o3 ;
+    net:coverNode :leaf_orbit-01_o3 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomClass_sun_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomProperty_more_m4 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_almost_a2 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_almost_a2 .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_2_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_2 ;
+    net:hasNaming "2" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:hasValueLabel "2" .
+
+net:value_Mercury_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Mercury ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:hasValueLabel "Mercury" .
+
+net:value_negative_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_negative ;
+    net:hasNaming "negative" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:hasValueLabel "negative" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> a ns2:object ;
+    ns2:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_e :leaf_equal-01_e ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_m4 :leaf_more_m4 ;
+    :edge_e_p :leaf_planet_p ;
+    :edge_e_s4 :leaf_size_s4 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m3 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m3 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-03" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_object_o2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_object_o2 .
+
+net:atomProperty_mean_m a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG2 net:atomClass_satellite_s2 ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m ;
+    net:hasNaming "mean" ;
+    net:hasPropertyName "mean" ;
+    net:hasPropertyName01 "meaning" ;
+    net:hasPropertyName10 "mean-by" ;
+    net:hasPropertyName12 "mean-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_satellite_s2 .
+
+net:atomProperty_orbit_o3 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o2 ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_orbit-01_o3 ;
+    net:coverNode :leaf_orbit-01_o3 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_sun_s .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:individual_Mercury_p a net:Individual_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Mercury" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_size_s4 a :AMR_Leaf ;
+    :hasConcept :concept_size ;
+    :hasVariable :variable_s4 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:value_2_blankNode ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:compositeProperty_not-direct_d a net:Composite_Property_Net ;
+    :role_ARG1 net:atomClass_orbit_o3,
+        net:atomProperty_orbit_o3 ;
+    :role_polarity net:value_negative_blankNode ;
+    net:composeFrom net:atomProperty_direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_o :leaf_object_o ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_o2 :leaf_object_o2 ;
+    :edge_m_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_satellite_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_satellite_s2 ;
+    net:coverNode :leaf_satellite_s2 ;
+    net:hasClassName "satellite" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "satellite" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomProperty_direct_d a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_orbit_o3,
+        net:atomProperty_orbit_o3 ;
+    :role_polarity net:value_negative_blankNode ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_orbit-01_o3,
+        :value_negative .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :edge_m4_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_orbit-01_o3 a :AMR_Leaf ;
+    :edge_o3_o2 :leaf_object_o2 ;
+    :edge_o3_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o3 .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_quant_2 :value_2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o3 :leaf_orbit-01_o3 ;
+    :edge_d_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_satellite_s2 a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomClass_object_o2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_object_o2 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..7750d537c194291cf47c60bd0e5fe507cbf0a58a
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1319 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG2 a ns11:FrameRole .
+
+ns11:equal-01.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns11:include-91.ARG1 a ns11:FrameRole .
+
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:mean-01.ARG1 a ns11:FrameRole .
+
+ns11:mean-01.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_e a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_d_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_e_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_ii_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m4_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_n_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o3_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_quant_2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p_name_Mercury a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o3 :leaf_orbit-01_o3 ;
+    :edge_d_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m3 :leaf_most_m3 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s3 :leaf_small_s3 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_o :leaf_object_o ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_o2 :leaf_object_o2 ;
+    :edge_m_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:root_WikiAbstract-SolarSystem-03 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-03" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> ;
+    ns2:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m> a ns11:mean-01 ;
+    ns11:mean-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:mean-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-03" ;
+    ns3:has-sentence "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:almost ;
+    :label "almost" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:direct-02 ;
+    :label "direct-02" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:equal-01 ;
+    :label "equal-01" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:include-91 ;
+    :label "include-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:mean-01 ;
+    :label "mean-01" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_size rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:size ;
+    :label "size" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_e :leaf_equal-01_e ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_m4 :leaf_more_m4 ;
+    :edge_e_p :leaf_planet_p ;
+    :edge_e_s4 :leaf_size_s4 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :edge_m4_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_most_m3 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m3 .
+
+:leaf_orbit-01_o3 a :AMR_Leaf ;
+    :edge_o3_o2 :leaf_object_o2 ;
+    :edge_o3_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o3 .
+
+:leaf_size_s4 a :AMR_Leaf ;
+    :hasConcept :concept_size ;
+    :hasVariable :variable_s4 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:value_2 a :AMR_Value ;
+    rdfs:label "2" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> ;
+    :label "a2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    :label "p" ;
+    :name "Mercury" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> ;
+    :label "s4" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> a ns2:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> a ns11:equal-01 ;
+    ns11:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> ;
+    ns11:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:equal-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> a ns3:more ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> a ns2:size ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:direct-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:equal-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:include-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:mean-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:natural-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:almost a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:size a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_quant_2 :value_2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:leaf_satellite_s2 a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> a ns2:object ;
+    ns2:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..0e47729a2c90ea686589a8ec3b4f9e609b5bf571
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1720 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:direct-02.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG1 a ns11:FrameRole .
+
+ns11:equal-01.ARG2 a ns11:FrameRole .
+
+ns11:equal-01.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns11:include-91.ARG1 a ns11:FrameRole .
+
+ns11:include-91.ARG2 a ns11:FrameRole .
+
+ns11:mean-01.ARG1 a ns11:FrameRole .
+
+ns11:mean-01.ARG2 a ns11:FrameRole .
+
+ns11:natural-03.ARG1 a ns11:FrameRole .
+
+ns11:orbit-01.ARG0 a ns11:FrameRole .
+
+ns11:orbit-01.ARG1 a ns11:FrameRole .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:op1 a ns3:Role .
+
+ns2:op2 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_e a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_h a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_d_o3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_d_polarity_negative a :AMR_Edge ;
+    :hasAmrRole :role_polarity ;
+    :hasRoleID "polarity" .
+
+:edge_e_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_e_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_e_s4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h2_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h2_s3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_ii_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_ii_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_m4_a2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_n_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o3_o2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_o3_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_quant_2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p_name_Mercury a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:root_WikiAbstract-SolarSystem-03 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-03" ;
+    :hasSentenceStatement "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_natural_n a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_satellite_s2 ;
+    net:coverBaseNode :leaf_natural-03_n ;
+    net:coverNode :leaf_natural-03_n ;
+    net:hasNaming "natural" ;
+    net:hasPropertyName "natural" ;
+    net:hasPropertyName01 "naturaling" ;
+    net:hasPropertyName10 "natural-by" ;
+    net:hasPropertyName12 "natural-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_satellite_s2 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:axiom_disjointProperty_direct_not-direct_d a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_direct_not-direct" ;
+    net:hasNetArgument net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:axiom_disjointProperty_not-direct_direct_d a net:Axiom_Net ;
+    net:composeFrom net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasAxiomName "disjointProperty" ;
+    net:hasAxiomURI owl:propertyDisjointWith ;
+    net:hasNaming "disjointProperty_not-direct_direct" ;
+    net:hasNetArgument net:atomProperty_direct_d,
+        net:compositeProperty_not-direct_d ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:compositeClass_object-include-object_o a net:Composite_Class_Net ;
+    :role_quant net:value_2_blankNode ;
+    net:composeFrom net:atomClass_object_o,
+        net:atomClass_object_o2,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_object_o,
+        :leaf_object_o2 ;
+    net:hasMotherClassNet net:atomClass_object_o ;
+    net:hasNaming "object-include-object" ;
+    net:hasRestriction net:restriction_include-object_ii ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:compositeClass_object-mean-satellite_o2 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_object_o2,
+        net:atomClass_satellite_s2,
+        net:atomProperty_mean_m ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_mean-01_m,
+        :leaf_object_o2,
+        :leaf_satellite_s2 ;
+    net:hasMotherClassNet net:atomClass_object_o2 ;
+    net:hasNaming "object-mean-satellite" ;
+    net:hasRestriction net:restriction_mean-satellite_m ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:phenomena_degree_h ;
+    :role_op2 net:atomProperty_equal_e ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:phenomena_degree_h2 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    :role_ARG2 net:atomClass_small_s3 ;
+    :role_ARG3 net:atomProperty_most_m3 ;
+    net:coverBaseNode :leaf_have-degree-91_h2 ;
+    net:coverNode :leaf_have-degree-91_h2 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#d> a ns11:direct-02 ;
+    ns11:direct-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> ;
+    ns2:polarity "-" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h2> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#ii> a ns11:include-91 ;
+    ns11:include-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:include-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m> a ns11:mean-01 ;
+    ns11:mean-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:mean-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#n> a ns11:natural-03 ;
+    ns11:natural-03.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-03" ;
+    ns3:has-sentence "Of the objects that orbit the Sun indirectly—the natural satellites—two are larger than the smallest planet, Mercury, and one more almost equals it in size." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:almost ;
+    :label "almost" .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_direct-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:direct-02 ;
+    :label "direct-02" .
+
+:concept_equal-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:equal-01 ;
+    :label "equal-01" .
+
+:concept_include-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:include-91 ;
+    :label "include-91" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:large ;
+    :label "large" .
+
+:concept_mean-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:mean-01 ;
+    :label "mean-01" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:concept_natural-03 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:natural-03 ;
+    :label "natural-03" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_satellite rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:satellite ;
+    :label "satellite" .
+
+:concept_size rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:size ;
+    :label "size" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:sun ;
+    :label "sun" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_polarity a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> ;
+    :label "a2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#d> ;
+    :label "d" .
+
+:variable_e a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> ;
+    :label "e" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h2> ;
+    :label "h2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> ;
+    :label "m4" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    :label "o" .
+
+:variable_o2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    :label "o2" .
+
+:variable_o3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> ;
+    :label "o3" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    :label "p" ;
+    :name "Mercury" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> ;
+    :label "s2" .
+
+:variable_s3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> ;
+    :label "s3" .
+
+:variable_s4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> ;
+    :label "s4" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomClass_more_m4 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_almost_a2 ;
+    net:composeFrom net:atomProperty_more_m4 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasClassName "more" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "more" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomClass_size_s4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_size_s4 ;
+    net:coverNode :leaf_size_s4 ;
+    net:hasClassName "size" ;
+    net:hasNaming "size" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomClass_small_s3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s3 ;
+    net:coverNode :leaf_small_s3 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomProperty_equal_e a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_more_m4,
+        net:atomProperty_more_m4 ;
+    :role_ARG2 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    :role_ARG3 net:atomClass_size_s4 ;
+    net:coverBaseNode :leaf_equal-01_e ;
+    net:coverNode :leaf_equal-01_e ;
+    net:hasNaming "equal" ;
+    net:hasPropertyName "equal" ;
+    net:hasPropertyName01 "equaling" ;
+    net:hasPropertyName10 "equal-by" ;
+    net:hasPropertyName12 "equal-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_more_m4,
+        :leaf_planet_p,
+        :leaf_size_s4 .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m3 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m3 ;
+    net:coverNode :leaf_most_m3 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    :role_ARG4 net:atomClass_planet_p,
+        net:individual_Mercury_p ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:restriction_include-object_ii a net:Restriction_Net ;
+    net:composeFrom net:atomClass_object_o2,
+        net:atomProperty_include_ii ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii,
+        :leaf_object_o2 ;
+    net:hasNaming "include-object" ;
+    net:hasRestrictionNetValue net:atomClass_object_o2 ;
+    net:hasRestrictionOnProperty net:atomProperty_include_ii ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:restriction_mean-satellite_m a net:Restriction_Net ;
+    net:composeFrom net:atomClass_satellite_s2,
+        net:atomProperty_mean_m ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m,
+        :leaf_satellite_s2 ;
+    net:hasNaming "mean-satellite" ;
+    net:hasRestrictionNetValue net:atomClass_satellite_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_mean_m ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a> a ns3:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> a ns2:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#e> a ns11:equal-01 ;
+    ns11:equal-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> ;
+    ns11:equal-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    ns11:equal-01.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#l> a ns2:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m2> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m3> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#m4> a ns3:more ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o3> a ns11:orbit-01 ;
+    ns11:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> ;
+    ns11:orbit-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s> a ns2:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s3> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s4> a ns2:size ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:direct-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:equal-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:include-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:mean-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:natural-03 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:almost a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:satellite a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:size a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:sun a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_object rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:object ;
+    :label "object" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h2 a :AMR_Leaf ;
+    :edge_h2_m3 :leaf_most_m3 ;
+    :edge_h2_p :leaf_planet_p ;
+    :edge_h2_s3 :leaf_small_s3 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h2 .
+
+:leaf_natural-03_n a :AMR_Leaf ;
+    :edge_n_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_natural-03 ;
+    :hasVariable :variable_n .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_2 a :AMR_Value ;
+    rdfs:label "2" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_almost_a2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_almost_a2 ;
+    net:coverNode :leaf_almost_a2 ;
+    net:hasClassName "almost" ;
+    net:hasNaming "almost" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomClass_orbit_o3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_ARG0 net:atomClass_object_o2 ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:composeFrom net:atomProperty_orbit_o3 ;
+    net:coverBaseNode :leaf_orbit-01_o3 ;
+    net:coverNode :leaf_orbit-01_o3 ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomClass_sun_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s ;
+    net:coverNode :leaf_sun_s ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomProperty_more_m4 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_almost_a2 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_almost_a2 .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_2_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_2 ;
+    net:hasNaming "2" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:hasValueLabel "2" .
+
+net:value_Mercury_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Mercury ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:hasValueLabel "Mercury" .
+
+net:value_negative_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_negative ;
+    net:hasNaming "negative" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:hasValueLabel "negative" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o> a ns2:object ;
+    ns2:quant "2" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#s2> a ns2:satellite ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:object a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_e :leaf_equal-01_e ;
+    :edge_a_h :leaf_have-degree-91_h ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_equal-01_e a :AMR_Leaf ;
+    :edge_e_m4 :leaf_more_m4 ;
+    :edge_e_p :leaf_planet_p ;
+    :edge_e_s4 :leaf_size_s4 ;
+    :hasConcept :concept_equal-01 ;
+    :hasVariable :variable_e .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_o :leaf_object_o ;
+    :edge_h_p :leaf_planet_p ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m3 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m3 .
+
+:leaf_small_s3 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s3 .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:value_negative a :AMR_Value ;
+    rdfs:label "negative" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_include_ii a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o ;
+    :role_ARG2 net:atomClass_object_o2 ;
+    net:coverBaseNode :leaf_include-91_ii ;
+    net:coverNode :leaf_include-91_ii ;
+    net:hasNaming "include" ;
+    net:hasPropertyName "include" ;
+    net:hasPropertyName01 "includeing" ;
+    net:hasPropertyName10 "include-by" ;
+    net:hasPropertyName12 "include-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o,
+        :leaf_object_o2 .
+
+net:atomProperty_mean_m a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_object_o2 ;
+    :role_ARG2 net:atomClass_satellite_s2 ;
+    net:coverBaseNode :leaf_mean-01_m ;
+    net:coverNode :leaf_mean-01_m ;
+    net:hasNaming "mean" ;
+    net:hasPropertyName "mean" ;
+    net:hasPropertyName01 "meaning" ;
+    net:hasPropertyName10 "mean-by" ;
+    net:hasPropertyName12 "mean-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_satellite_s2 .
+
+net:atomProperty_orbit_o3 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_object_o2 ;
+    :role_ARG1 net:atomClass_sun_s ;
+    net:coverBaseNode :leaf_orbit-01_o3 ;
+    net:coverNode :leaf_orbit-01_o3 ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_object_o2,
+        :leaf_sun_s .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:individual_Mercury_p a net:Individual_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Mercury" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#o2> a ns2:object ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-03#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_size_s4 a :AMR_Leaf ;
+    :hasConcept :concept_size ;
+    :hasVariable :variable_s4 .
+
+:leaf_sun_s a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s .
+
+net:atomClass_object_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:value_2_blankNode ;
+    net:coverBaseNode :leaf_object_o ;
+    net:coverNode :leaf_object_o ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:compositeProperty_not-direct_d a net:Composite_Property_Net ;
+    :role_ARG1 net:atomClass_orbit_o3,
+        net:atomProperty_orbit_o3 ;
+    :role_polarity net:value_negative_blankNode ;
+    net:composeFrom net:atomProperty_direct_d ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "not-direct" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_include-91_ii a :AMR_Leaf ;
+    :edge_ii_o :leaf_object_o ;
+    :edge_ii_o2 :leaf_object_o2 ;
+    :hasConcept :concept_include-91 ;
+    :hasVariable :variable_ii .
+
+:leaf_mean-01_m a :AMR_Leaf ;
+    :edge_m_o2 :leaf_object_o2 ;
+    :edge_m_s2 :leaf_satellite_s2 ;
+    :hasConcept :concept_mean-01 ;
+    :hasVariable :variable_m .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_satellite_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_satellite_s2 ;
+    net:coverNode :leaf_satellite_s2 ;
+    net:hasClassName "satellite" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "satellite" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+net:atomProperty_direct_d a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_orbit_o3,
+        net:atomProperty_orbit_o3 ;
+    :role_polarity net:value_negative_blankNode ;
+    net:coverBaseNode :leaf_direct-02_d ;
+    net:coverNode :leaf_direct-02_d ;
+    net:hasNaming "direct" ;
+    net:hasPropertyName "direct" ;
+    net:hasPropertyName01 "directing" ;
+    net:hasPropertyName10 "direct-by" ;
+    net:hasPropertyName12 "direct-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_orbit-01_o3,
+        :value_negative .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :edge_m4_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_orbit-01_o3 a :AMR_Leaf ;
+    :edge_o3_o2 :leaf_object_o2 ;
+    :edge_o3_s :leaf_sun_s ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o3 .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_object_o a :AMR_Leaf ;
+    :edge_o_quant_2 :value_2 ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_direct-02_d a :AMR_Leaf ;
+    :edge_d_o3 :leaf_orbit-01_o3 ;
+    :edge_d_polarity_negative :value_negative ;
+    :hasConcept :concept_direct-02 ;
+    :hasVariable :variable_d .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_satellite_s2 a :AMR_Leaf ;
+    :hasConcept :concept_satellite ;
+    :hasVariable :variable_s2 .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:atomClass_object_o2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_object_o2 ;
+    net:coverNode :leaf_object_o2 ;
+    net:hasClassName "object" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "object" ;
+    net:hasStructure "WikiAbstract-SolarSystem-03" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+:leaf_object_o2 a :AMR_Leaf ;
+    :hasConcept :concept_object ;
+    :hasVariable :variable_o2 .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..5a19b657a37df4d9096d04a864fc0b8830fd2648
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-3/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,99 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#Mercury> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Mercury" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#almost> a owl:Class ;
+    rdfs:label "almost" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#equal> a owl:ObjectProperty ;
+    rdfs:label "equal" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:Class,
+        owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subClassOf ns1:Entity ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#natural> a owl:ObjectProperty ;
+    rdfs:label "natural" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#not-direct> a owl:ObjectProperty ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-include-object> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#include> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#object> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#object-mean-satellite> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#mean> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#satellite> ],
+        <https://tenet.tetras-libre.fr/extract-result#object> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#size> a owl:Class ;
+    rdfs:label "size" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#include> a owl:ObjectProperty ;
+    rdfs:label "include" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#mean> a owl:ObjectProperty ;
+    rdfs:label "mean" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#satellite> a owl:Class ;
+    rdfs:label "satellite" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
+<https://tenet.tetras-libre.fr/extract-result#object> a owl:Class ;
+    rdfs:label "object" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-03" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..afa822bbbcff8b5f0c7b0484e55628fad06ebb42
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,852 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c3> a ns11:cause-01 ;
+    ns11:cause-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns11:cause-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#m> a ns2:molecule ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-04" ;
+    ns3:has-sentence "The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:cause-01.ARG0 a ns11:FrameRole .
+
+ns11:cause-01.ARG1 a ns11:FrameRole .
+
+ns11:collapse-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG2 a ns11:FrameRole .
+
+ns2:consist a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
+ns2:unit a ns3:Role .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> a ns2:before ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> a ns11:form-01 ;
+    ns11:form-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> ;
+    ns11:form-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g> a ns2:giant .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> a ns2:gravity .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> a ns2:intercontinental .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> a ns2:now .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> a ns2:system ;
+    rdfs:label "Solar System" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> a ns2:temporal-quantity ;
+    ns2:quant "4600000000" ;
+    ns2:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> a ns3:year .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns11:cause-01 a ns3:Frame .
+
+ns11:collapse-01 a ns3:Frame .
+
+ns11:form-01 a ns3:Frame .
+
+ns2:before a ns3:Concept .
+
+ns2:cloud a ns3:Concept .
+
+ns2:giant a ns3:Concept .
+
+ns2:gravity a ns3:Concept .
+
+ns2:intercontinental a ns3:Concept .
+
+ns2:molecule a ns3:Concept .
+
+ns2:now a ns3:Concept .
+
+ns2:system a ns3:Concept .
+
+ns2:temporal-quantity a ns3:Concept .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:year a ns3:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> a ns11:collapse-01 ;
+    ns11:collapse-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> a ns2:cloud ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..b0e376e2d58ab9785020565c9d99d30c5de6e863
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1456 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:cause-01.ARG0 a ns11:FrameRole .
+
+ns11:cause-01.ARG1 a ns11:FrameRole .
+
+ns11:collapse-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG2 a ns11:FrameRole .
+
+ns2:consist a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
+ns2:unit a ns3:Role .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:edge_b_n2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_t a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_c2_g a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c2_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_c3_g2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_f_b a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_f_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_f_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_c2 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_t_quant_4600000000 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_y a :AMR_Edge ;
+    :hasRoleID "unit" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-04 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#root01> ;
+    :hasRootLeaf :leaf_form-01_f ;
+    :hasSentenceID "WikiAbstract-SolarSystem-04" ;
+    :hasSentenceStatement "The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#before> a owl:Class ;
+    rdfs:label "before" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#collapse-cause-gravity> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#cause> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#gravity> ],
+        <https://tenet.tetras-libre.fr/extract-result#collapse> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#form> a owl:ObjectProperty ;
+    rdfs:label "form" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#giant-cloud> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#intercontinental-cloud> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#molecule> a owl:Class ;
+    rdfs:label "molecule" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#now> a owl:Class ;
+    rdfs:label "now" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#temporal-quantity> a owl:Class ;
+    rdfs:label "temporal-quantity" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#year> a owl:ObjectProperty ;
+    rdfs:label "year" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_before_b a net:Atom_Class_Net ;
+    :role_op1 net:atomClass_now_n2 ;
+    :role_quant net:atomClass_temporal-quantity_t ;
+    net:coverBaseNode :leaf_before_b ;
+    net:coverNode :leaf_before_b ;
+    net:hasClassName "before" ;
+    net:hasNaming "before" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:atomClass_molecule_m a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_molecule_m ;
+    net:coverNode :leaf_molecule_m ;
+    net:hasClassName "molecule" ;
+    net:hasNaming "molecule" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_form_f a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_system_s,
+        net:individual_SolarSystem_s ;
+    :role_ARG2 net:atomClass_collapse_c,
+        net:atomProperty_collapse_c ;
+    net:coverBaseNode :leaf_form-01_f ;
+    net:coverNode :leaf_form-01_f ;
+    net:hasNaming "form" ;
+    net:hasPropertyName "form" ;
+    net:hasPropertyName01 "forming" ;
+    net:hasPropertyName10 "form-by" ;
+    net:hasPropertyName12 "form-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_collapse-01_c,
+        :leaf_system_s .
+
+net:atomProperty_year_y a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_year_y ;
+    net:coverNode :leaf_year_y ;
+    net:hasNaming "year" ;
+    net:hasPropertyName "year" ;
+    net:hasPropertyName01 "yearing" ;
+    net:hasPropertyName10 "year-by" ;
+    net:hasPropertyName12 "year-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_collapse-cause-gravity_c a net:Composite_Class_Net ;
+    :role_ARG1 net:atomClass_cloud_c2,
+        net:compositeClass_giant-cloud_c2,
+        net:compositeClass_intercontinental-cloud_c2 ;
+    net:composeFrom net:atomClass_collapse_c,
+        net:atomClass_gravity_g2,
+        net:atomProperty_cause_c3 ;
+    net:coverBaseNode :leaf_collapse-01_c ;
+    net:coverNode :leaf_cause-01_c3,
+        :leaf_collapse-01_c,
+        :leaf_gravity_g2 ;
+    net:hasMotherClassNet net:atomClass_collapse_c ;
+    net:hasNaming "collapse-cause-gravity" ;
+    net:hasRestriction net:restriction_cause-gravity_c3 ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_giant_g a net:Individual_Net ;
+    net:composeFrom net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "giant" ;
+    net:hasMotherClassNet net:atomClass_giant_g ;
+    net:hasNaming "giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:individual_intercontinental_ii a net:Individual_Net ;
+    net:composeFrom net:atomClass_intercontinental_ii ;
+    net:coverBaseNode :leaf_intercontinental_ii ;
+    net:coverNode :leaf_intercontinental_ii ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "intercontinental" ;
+    net:hasMotherClassNet net:atomClass_intercontinental_ii ;
+    net:hasNaming "intercontinental" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c3> a ns11:cause-01 ;
+    ns11:cause-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns11:cause-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#m> a ns2:molecule ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-04" ;
+    ns3:has-sentence "The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_before rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:before ;
+    :label "before" .
+
+:concept_cause-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:cause-01 ;
+    :label "cause-01" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:cloud ;
+    :label "cloud" .
+
+:concept_collapse-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:collapse-01 ;
+    :label "collapse-01" .
+
+:concept_form-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:form-01 ;
+    :label "form-01" .
+
+:concept_giant rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:giant ;
+    :label "giant" .
+
+:concept_gravity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:gravity ;
+    :label "gravity" .
+
+:concept_intercontinental rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:intercontinental ;
+    :label "intercontinental" .
+
+:concept_molecule rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:molecule ;
+    :label "molecule" .
+
+:concept_now rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:now ;
+    :label "now" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:concept_temporal-quantity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:temporal-quantity ;
+    :label "temporal-quantity" .
+
+:concept_year rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:year ;
+    :label "year" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    :label "c2" .
+
+:variable_c3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c3> ;
+    :label "c3" .
+
+:variable_f a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> ;
+    :label "f" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g> ;
+    :label "g" .
+
+:variable_g2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> ;
+    :label "g2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> ;
+    :label "ii" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#m> ;
+    :label "m" .
+
+:variable_n2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> ;
+    :label "n2" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> ;
+    :label "s" ;
+    :name "Solar System" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> ;
+    :label "t" .
+
+:variable_y a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> ;
+    :label "y" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#cause> a owl:ObjectProperty ;
+    rdfs:label "cause" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#collapse> a owl:Class ;
+    rdfs:label "collapse" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#giant> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#giant> ;
+    rdfs:label "giant" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#gravity> a owl:Class ;
+    rdfs:label "gravity" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#intercontinental> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#intercontinental> ;
+    rdfs:label "intercontinental" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_now_n2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_now_n2 ;
+    net:coverNode :leaf_now_n2 ;
+    net:hasClassName "now" ;
+    net:hasNaming "now" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:atomClass_temporal-quantity_t a net:Atom_Class_Net ;
+    :role_quant net:value_4600000000_blankNode ;
+    net:coverBaseNode :leaf_temporal-quantity_t ;
+    net:coverNode :leaf_temporal-quantity_t ;
+    net:hasClassName "temporal-quantity" ;
+    net:hasNaming "temporal-quantity" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_SolarSystem_s a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_cause-gravity_c3 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_gravity_g2,
+        net:atomProperty_cause_c3 ;
+    net:coverBaseNode :leaf_cause-01_c3 ;
+    net:coverNode :leaf_cause-01_c3,
+        :leaf_gravity_g2 ;
+    net:hasNaming "cause-gravity" ;
+    net:hasRestrictionNetValue net:atomClass_gravity_g2 ;
+    net:hasRestrictionOnProperty net:atomProperty_cause_c3 ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:value_4600000000_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_4600000000 ;
+    net:hasNaming "4600000000" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" ;
+    net:hasValueLabel "4600000000" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> a ns2:before ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> a ns11:form-01 ;
+    ns11:form-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> ;
+    ns11:form-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g> a ns2:giant ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> a ns2:gravity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> a ns2:intercontinental ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> a ns2:now ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> a ns2:system ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> a ns2:temporal-quantity ;
+    ns2:quant "4600000000" ;
+    ns2:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> a ns3:year ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:cause-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:collapse-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:form-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:before a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:cloud a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:giant a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:gravity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:intercontinental a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:molecule a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:now a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:temporal-quantity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:year a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_molecule_m a :AMR_Leaf ;
+    :edge_m_c2 :leaf_cloud_c2 ;
+    :hasConcept :concept_molecule ;
+    :hasVariable :variable_m .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_4600000000 a :AMR_Value ;
+    rdfs:label "4600000000" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+<https://tenet.tetras-libre.fr/extract-result#cloud> a owl:Class ;
+    rdfs:label "cloud" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-04" .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> a ns11:collapse-01 ;
+    ns11:collapse-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> a ns2:cloud ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_before_b a :AMR_Leaf ;
+    :edge_b_n2 :leaf_now_n2 ;
+    :edge_b_t :leaf_temporal-quantity_t ;
+    :hasConcept :concept_before ;
+    :hasVariable :variable_b .
+
+:leaf_form-01_f a :AMR_Leaf ;
+    :edge_f_b :leaf_before_b ;
+    :edge_f_c :leaf_collapse-01_c ;
+    :edge_f_s :leaf_system_s ;
+    :hasConcept :concept_form-01 ;
+    :hasVariable :variable_f .
+
+:leaf_now_n2 a :AMR_Leaf ;
+    :hasConcept :concept_now ;
+    :hasVariable :variable_n2 .
+
+:leaf_temporal-quantity_t a :AMR_Leaf ;
+    :edge_t_quant_4600000000 :value_4600000000 ;
+    :edge_t_y :leaf_year_y ;
+    :hasConcept :concept_temporal-quantity ;
+    :hasVariable :variable_t .
+
+:leaf_year_y a :AMR_Leaf ;
+    :hasConcept :concept_year ;
+    :hasVariable :variable_y .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomProperty_cause_c3 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_collapse_c,
+        net:atomProperty_collapse_c ;
+    :role_ARG1 net:atomClass_gravity_g2 ;
+    net:coverBaseNode :leaf_cause-01_c3 ;
+    net:coverNode :leaf_cause-01_c3 ;
+    net:hasNaming "cause" ;
+    net:hasPropertyName "cause" ;
+    net:hasPropertyName01 "causeing" ;
+    net:hasPropertyName10 "cause-by" ;
+    net:hasPropertyName12 "cause-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_collapse-01_c,
+        :leaf_gravity_g2 .
+
+net:atomProperty_collapse_c a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_cloud_c2,
+        net:compositeClass_giant-cloud_c2,
+        net:compositeClass_intercontinental-cloud_c2 ;
+    net:coverBaseNode :leaf_collapse-01_c ;
+    net:coverNode :leaf_collapse-01_c ;
+    net:hasNaming "collapse" ;
+    net:hasPropertyName "collapse" ;
+    net:hasPropertyName01 "collapseing" ;
+    net:hasPropertyName10 "collapse-by" ;
+    net:hasPropertyName12 "collapse-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_cloud_c2 .
+
+net:compositeClass_giant-cloud_c2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_giant_g,
+        net:atomClass_intercontinental_ii ;
+    net:composeFrom net:atomClass_cloud_c2,
+        net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_cloud_c2 ;
+    net:coverNode :leaf_cloud_c2,
+        :leaf_giant_g ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_cloud_c2 ;
+    net:hasNaming "giant-cloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:compositeClass_intercontinental-cloud_c2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_giant_g,
+        net:atomClass_intercontinental_ii ;
+    net:composeFrom net:atomClass_cloud_c2,
+        net:atomClass_intercontinental_ii ;
+    net:coverBaseNode :leaf_cloud_c2 ;
+    net:coverNode :leaf_cloud_c2,
+        :leaf_intercontinental_ii ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_cloud_c2 ;
+    net:hasNaming "intercontinental-cloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_collapse_c a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_cloud_c2,
+        net:compositeClass_giant-cloud_c2,
+        net:compositeClass_intercontinental-cloud_c2 ;
+    net:composeFrom net:atomProperty_collapse_c ;
+    net:coverBaseNode :leaf_collapse-01_c ;
+    net:coverNode :leaf_collapse-01_c ;
+    net:hasClassName "collapse" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "collapse" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:atomClass_gravity_g2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_gravity_g2 ;
+    net:coverNode :leaf_gravity_g2 ;
+    net:hasClassName "gravity" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "gravity" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_cause-01_c3 a :AMR_Leaf ;
+    :edge_c3_c :leaf_collapse-01_c ;
+    :edge_c3_g2 :leaf_gravity_g2 ;
+    :hasConcept :concept_cause-01 ;
+    :hasVariable :variable_c3 .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_giant_g a :AMR_Leaf ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g .
+
+:leaf_gravity_g2 a :AMR_Leaf ;
+    :hasConcept :concept_gravity ;
+    :hasVariable :variable_g2 .
+
+:leaf_intercontinental_ii a :AMR_Leaf ;
+    :hasConcept :concept_intercontinental ;
+    :hasVariable :variable_ii .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_giant_g a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasClassName "giant" ;
+    net:hasNaming "giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:atomClass_intercontinental_ii a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_intercontinental_ii ;
+    net:coverNode :leaf_intercontinental_ii ;
+    net:hasClassName "intercontinental" ;
+    net:hasNaming "intercontinental" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_cloud_c2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_giant_g,
+        net:atomClass_intercontinental_ii ;
+    net:coverBaseNode :leaf_cloud_c2 ;
+    net:coverNode :leaf_cloud_c2 ;
+    net:hasClassName "cloud" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "cloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_cloud_c2 a :AMR_Leaf ;
+    :edge_c2_g :leaf_giant_g ;
+    :edge_c2_ii :leaf_intercontinental_ii ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c2 .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_collapse-01_c a :AMR_Leaf ;
+    :edge_c_c2 :leaf_cloud_c2 ;
+    :hasConcept :concept_collapse-01 ;
+    :hasVariable :variable_c .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..cbb49c9b25cbf66bb1e1e67dcf1a935d44e5a710
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1114 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:cause-01.ARG0 a ns11:FrameRole .
+
+ns11:cause-01.ARG1 a ns11:FrameRole .
+
+ns11:collapse-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG2 a ns11:FrameRole .
+
+ns2:consist a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
+ns2:unit a ns3:Role .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:edge_b_n2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_t a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_c2_g a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c2_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_c3_g2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_f_b a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_f_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_f_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_c2 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_t_quant_4600000000 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_y a :AMR_Edge ;
+    :hasRoleID "unit" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_cause-01_c3 a :AMR_Leaf ;
+    :edge_c3_c :leaf_collapse-01_c ;
+    :edge_c3_g2 :leaf_gravity_g2 ;
+    :hasConcept :concept_cause-01 ;
+    :hasVariable :variable_c3 .
+
+:leaf_molecule_m a :AMR_Leaf ;
+    :edge_m_c2 :leaf_cloud_c2 ;
+    :hasConcept :concept_molecule ;
+    :hasVariable :variable_m .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-04 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#root01> ;
+    :hasRootLeaf :leaf_form-01_f ;
+    :hasSentenceID "WikiAbstract-SolarSystem-04" ;
+    :hasSentenceStatement "The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c3> a ns11:cause-01 ;
+    ns11:cause-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns11:cause-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#m> a ns2:molecule ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-04" ;
+    ns3:has-sentence "The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_before rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:before ;
+    :label "before" .
+
+:concept_cause-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:cause-01 ;
+    :label "cause-01" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:cloud ;
+    :label "cloud" .
+
+:concept_collapse-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:collapse-01 ;
+    :label "collapse-01" .
+
+:concept_form-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:form-01 ;
+    :label "form-01" .
+
+:concept_giant rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:giant ;
+    :label "giant" .
+
+:concept_gravity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:gravity ;
+    :label "gravity" .
+
+:concept_intercontinental rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:intercontinental ;
+    :label "intercontinental" .
+
+:concept_molecule rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:molecule ;
+    :label "molecule" .
+
+:concept_now rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:now ;
+    :label "now" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:concept_temporal-quantity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:temporal-quantity ;
+    :label "temporal-quantity" .
+
+:concept_year rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:year ;
+    :label "year" .
+
+:leaf_before_b a :AMR_Leaf ;
+    :edge_b_n2 :leaf_now_n2 ;
+    :edge_b_t :leaf_temporal-quantity_t ;
+    :hasConcept :concept_before ;
+    :hasVariable :variable_b .
+
+:leaf_form-01_f a :AMR_Leaf ;
+    :edge_f_b :leaf_before_b ;
+    :edge_f_c :leaf_collapse-01_c ;
+    :edge_f_s :leaf_system_s ;
+    :hasConcept :concept_form-01 ;
+    :hasVariable :variable_f .
+
+:leaf_giant_g a :AMR_Leaf ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g .
+
+:leaf_gravity_g2 a :AMR_Leaf ;
+    :hasConcept :concept_gravity ;
+    :hasVariable :variable_g2 .
+
+:leaf_intercontinental_ii a :AMR_Leaf ;
+    :hasConcept :concept_intercontinental ;
+    :hasVariable :variable_ii .
+
+:leaf_now_n2 a :AMR_Leaf ;
+    :hasConcept :concept_now ;
+    :hasVariable :variable_n2 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_temporal-quantity_t a :AMR_Leaf ;
+    :edge_t_quant_4600000000 :value_4600000000 ;
+    :edge_t_y :leaf_year_y ;
+    :hasConcept :concept_temporal-quantity ;
+    :hasVariable :variable_t .
+
+:leaf_year_y a :AMR_Leaf ;
+    :hasConcept :concept_year ;
+    :hasVariable :variable_y .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:value_4600000000 a :AMR_Value ;
+    rdfs:label "4600000000" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    :label "c2" .
+
+:variable_c3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c3> ;
+    :label "c3" .
+
+:variable_f a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> ;
+    :label "f" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g> ;
+    :label "g" .
+
+:variable_g2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> ;
+    :label "g2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> ;
+    :label "ii" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#m> ;
+    :label "m" .
+
+:variable_n2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> ;
+    :label "n2" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> ;
+    :label "s" ;
+    :name "Solar System" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> ;
+    :label "t" .
+
+:variable_y a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> ;
+    :label "y" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> a ns2:before ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> a ns11:form-01 ;
+    ns11:form-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> ;
+    ns11:form-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g> a ns2:giant ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> a ns2:gravity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> a ns2:intercontinental ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> a ns2:now ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> a ns2:system ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> a ns2:temporal-quantity ;
+    ns2:quant "4600000000" ;
+    ns2:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> a ns3:year ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:cause-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:collapse-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:form-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:before a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:cloud a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:giant a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:gravity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:intercontinental a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:molecule a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:now a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:temporal-quantity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:year a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_cloud_c2 a :AMR_Leaf ;
+    :edge_c2_g :leaf_giant_g ;
+    :edge_c2_ii :leaf_intercontinental_ii ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c2 .
+
+:leaf_collapse-01_c a :AMR_Leaf ;
+    :edge_c_c2 :leaf_cloud_c2 ;
+    :hasConcept :concept_collapse-01 ;
+    :hasVariable :variable_c .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> a ns11:collapse-01 ;
+    ns11:collapse-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> a ns2:cloud ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..c26cd729267559ec17a2a30db560c4df8bf3ff66
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1372 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:cause-01.ARG0 a ns11:FrameRole .
+
+ns11:cause-01.ARG1 a ns11:FrameRole .
+
+ns11:collapse-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG1 a ns11:FrameRole .
+
+ns11:form-01.ARG2 a ns11:FrameRole .
+
+ns2:consist a ns3:Role .
+
+ns2:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns3:Role .
+
+ns2:op1 a ns3:Role .
+
+ns2:quant a ns3:Role .
+
+ns2:time a ns3:Role .
+
+ns2:unit a ns3:Role .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:edge_b_n2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_b_t a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_c2_g a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c2_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_c3_g2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_c2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_f_b a :AMR_Edge ;
+    :hasRoleID "time" .
+
+:edge_f_c a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_f_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_m_c2 a :AMR_Edge ;
+    :hasRoleID "consist" .
+
+:edge_s_name_SolarSystem a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_t_quant_4600000000 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_y a :AMR_Edge ;
+    :hasRoleID "unit" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-04 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#root01> ;
+    :hasRootLeaf :leaf_form-01_f ;
+    :hasSentenceID "WikiAbstract-SolarSystem-04" ;
+    :hasSentenceStatement "The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_before_b a net:Atom_Class_Net ;
+    :role_op1 net:atomClass_now_n2 ;
+    :role_quant net:atomClass_temporal-quantity_t ;
+    net:coverBaseNode :leaf_before_b ;
+    net:coverNode :leaf_before_b ;
+    net:hasClassName "before" ;
+    net:hasNaming "before" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:atomClass_molecule_m a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_molecule_m ;
+    net:coverNode :leaf_molecule_m ;
+    net:hasClassName "molecule" ;
+    net:hasNaming "molecule" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_form_f a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_system_s,
+        net:individual_SolarSystem_s ;
+    :role_ARG2 net:atomClass_collapse_c,
+        net:atomProperty_collapse_c ;
+    net:coverBaseNode :leaf_form-01_f ;
+    net:coverNode :leaf_form-01_f ;
+    net:hasNaming "form" ;
+    net:hasPropertyName "form" ;
+    net:hasPropertyName01 "forming" ;
+    net:hasPropertyName10 "form-by" ;
+    net:hasPropertyName12 "form-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_collapse-01_c,
+        :leaf_system_s .
+
+net:atomProperty_year_y a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_year_y ;
+    net:coverNode :leaf_year_y ;
+    net:hasNaming "year" ;
+    net:hasPropertyName "year" ;
+    net:hasPropertyName01 "yearing" ;
+    net:hasPropertyName10 "year-by" ;
+    net:hasPropertyName12 "year-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_collapse-cause-gravity_c a net:Composite_Class_Net ;
+    :role_ARG1 net:atomClass_cloud_c2,
+        net:compositeClass_giant-cloud_c2,
+        net:compositeClass_intercontinental-cloud_c2 ;
+    net:composeFrom net:atomClass_collapse_c,
+        net:atomClass_gravity_g2,
+        net:atomProperty_cause_c3 ;
+    net:coverBaseNode :leaf_collapse-01_c ;
+    net:coverNode :leaf_cause-01_c3,
+        :leaf_collapse-01_c,
+        :leaf_gravity_g2 ;
+    net:hasMotherClassNet net:atomClass_collapse_c ;
+    net:hasNaming "collapse-cause-gravity" ;
+    net:hasRestriction net:restriction_cause-gravity_c3 ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_giant_g a net:Individual_Net ;
+    net:composeFrom net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "giant" ;
+    net:hasMotherClassNet net:atomClass_giant_g ;
+    net:hasNaming "giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:individual_intercontinental_ii a net:Individual_Net ;
+    net:composeFrom net:atomClass_intercontinental_ii ;
+    net:coverBaseNode :leaf_intercontinental_ii ;
+    net:coverNode :leaf_intercontinental_ii ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "intercontinental" ;
+    net:hasMotherClassNet net:atomClass_intercontinental_ii ;
+    net:hasNaming "intercontinental" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c3> a ns11:cause-01 ;
+    ns11:cause-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns11:cause-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#m> a ns2:molecule ;
+    ns2:consist <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-04" ;
+    ns3:has-sentence "The Solar System formed 4.6 billion years ago from the gravitational collapse of a giant interstellar molecular cloud." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_before rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:before ;
+    :label "before" .
+
+:concept_cause-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:cause-01 ;
+    :label "cause-01" .
+
+:concept_cloud rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:cloud ;
+    :label "cloud" .
+
+:concept_collapse-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:collapse-01 ;
+    :label "collapse-01" .
+
+:concept_form-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:form-01 ;
+    :label "form-01" .
+
+:concept_giant rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:giant ;
+    :label "giant" .
+
+:concept_gravity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:gravity ;
+    :label "gravity" .
+
+:concept_intercontinental rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:intercontinental ;
+    :label "intercontinental" .
+
+:concept_molecule rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:molecule ;
+    :label "molecule" .
+
+:concept_now rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:now ;
+    :label "now" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:concept_temporal-quantity rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:temporal-quantity ;
+    :label "temporal-quantity" .
+
+:concept_year rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:year ;
+    :label "year" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    :label "c2" .
+
+:variable_c3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c3> ;
+    :label "c3" .
+
+:variable_f a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> ;
+    :label "f" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g> ;
+    :label "g" .
+
+:variable_g2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> ;
+    :label "g2" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> ;
+    :label "ii" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#m> ;
+    :label "m" .
+
+:variable_n2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> ;
+    :label "n2" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> ;
+    :label "s" ;
+    :name "Solar System" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> ;
+    :label "t" .
+
+:variable_y a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> ;
+    :label "y" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_now_n2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_now_n2 ;
+    net:coverNode :leaf_now_n2 ;
+    net:hasClassName "now" ;
+    net:hasNaming "now" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:atomClass_temporal-quantity_t a net:Atom_Class_Net ;
+    :role_quant net:value_4600000000_blankNode ;
+    net:coverBaseNode :leaf_temporal-quantity_t ;
+    net:coverNode :leaf_temporal-quantity_t ;
+    net:hasClassName "temporal-quantity" ;
+    net:hasNaming "temporal-quantity" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_SolarSystem_s a net:Individual_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasIndividualLabel "SolarSystem" ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_cause-gravity_c3 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_gravity_g2,
+        net:atomProperty_cause_c3 ;
+    net:coverBaseNode :leaf_cause-01_c3 ;
+    net:coverNode :leaf_cause-01_c3,
+        :leaf_gravity_g2 ;
+    net:hasNaming "cause-gravity" ;
+    net:hasRestrictionNetValue net:atomClass_gravity_g2 ;
+    net:hasRestrictionOnProperty net:atomProperty_cause_c3 ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:value_4600000000_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_4600000000 ;
+    net:hasNaming "4600000000" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" ;
+    net:hasValueLabel "4600000000" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> a ns2:before ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> ;
+    ns2:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#f> a ns11:form-01 ;
+    ns11:form-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> ;
+    ns11:form-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> ;
+    ns2:time <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#b> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g> a ns2:giant ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g2> a ns2:gravity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> a ns2:intercontinental ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#n2> a ns2:now ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#s> a ns2:system ;
+    rdfs:label "Solar System" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#t> a ns2:temporal-quantity ;
+    ns2:quant "4600000000" ;
+    ns2:unit <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#y> a ns3:year ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:cause-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:collapse-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:form-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:before a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:cloud a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:giant a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:gravity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:intercontinental a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:molecule a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:now a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:temporal-quantity a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:year a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_molecule_m a :AMR_Leaf ;
+    :edge_m_c2 :leaf_cloud_c2 ;
+    :hasConcept :concept_molecule ;
+    :hasVariable :variable_m .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_4600000000 a :AMR_Value ;
+    rdfs:label "4600000000" .
+
+:value_SolarSystem a :AMR_Value ;
+    rdfs:label "SolarSystem" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_SolarSystem_blankNode ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_SolarSystem_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_SolarSystem ;
+    net:hasNaming "SolarSystem" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" ;
+    net:hasValueLabel "SolarSystem" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c> a ns11:collapse-01 ;
+    ns11:collapse-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#c2> a ns2:cloud ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#g>,
+        <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-04#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_before_b a :AMR_Leaf ;
+    :edge_b_n2 :leaf_now_n2 ;
+    :edge_b_t :leaf_temporal-quantity_t ;
+    :hasConcept :concept_before ;
+    :hasVariable :variable_b .
+
+:leaf_form-01_f a :AMR_Leaf ;
+    :edge_f_b :leaf_before_b ;
+    :edge_f_c :leaf_collapse-01_c ;
+    :edge_f_s :leaf_system_s ;
+    :hasConcept :concept_form-01 ;
+    :hasVariable :variable_f .
+
+:leaf_now_n2 a :AMR_Leaf ;
+    :hasConcept :concept_now ;
+    :hasVariable :variable_n2 .
+
+:leaf_temporal-quantity_t a :AMR_Leaf ;
+    :edge_t_quant_4600000000 :value_4600000000 ;
+    :edge_t_y :leaf_year_y ;
+    :hasConcept :concept_temporal-quantity ;
+    :hasVariable :variable_t .
+
+:leaf_year_y a :AMR_Leaf ;
+    :hasConcept :concept_year ;
+    :hasVariable :variable_y .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomProperty_cause_c3 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_collapse_c,
+        net:atomProperty_collapse_c ;
+    :role_ARG1 net:atomClass_gravity_g2 ;
+    net:coverBaseNode :leaf_cause-01_c3 ;
+    net:coverNode :leaf_cause-01_c3 ;
+    net:hasNaming "cause" ;
+    net:hasPropertyName "cause" ;
+    net:hasPropertyName01 "causeing" ;
+    net:hasPropertyName10 "cause-by" ;
+    net:hasPropertyName12 "cause-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_collapse-01_c,
+        :leaf_gravity_g2 .
+
+net:atomProperty_collapse_c a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_cloud_c2,
+        net:compositeClass_giant-cloud_c2,
+        net:compositeClass_intercontinental-cloud_c2 ;
+    net:coverBaseNode :leaf_collapse-01_c ;
+    net:coverNode :leaf_collapse-01_c ;
+    net:hasNaming "collapse" ;
+    net:hasPropertyName "collapse" ;
+    net:hasPropertyName01 "collapseing" ;
+    net:hasPropertyName10 "collapse-by" ;
+    net:hasPropertyName12 "collapse-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_cloud_c2 .
+
+net:compositeClass_giant-cloud_c2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_giant_g,
+        net:atomClass_intercontinental_ii ;
+    net:composeFrom net:atomClass_cloud_c2,
+        net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_cloud_c2 ;
+    net:coverNode :leaf_cloud_c2,
+        :leaf_giant_g ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_cloud_c2 ;
+    net:hasNaming "giant-cloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:compositeClass_intercontinental-cloud_c2 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_giant_g,
+        net:atomClass_intercontinental_ii ;
+    net:composeFrom net:atomClass_cloud_c2,
+        net:atomClass_intercontinental_ii ;
+    net:coverBaseNode :leaf_cloud_c2 ;
+    net:coverNode :leaf_cloud_c2,
+        :leaf_intercontinental_ii ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_cloud_c2 ;
+    net:hasNaming "intercontinental-cloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_collapse_c a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG1 net:atomClass_cloud_c2,
+        net:compositeClass_giant-cloud_c2,
+        net:compositeClass_intercontinental-cloud_c2 ;
+    net:composeFrom net:atomProperty_collapse_c ;
+    net:coverBaseNode :leaf_collapse-01_c ;
+    net:coverNode :leaf_collapse-01_c ;
+    net:hasClassName "collapse" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "collapse" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:atomClass_gravity_g2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_gravity_g2 ;
+    net:coverNode :leaf_gravity_g2 ;
+    net:hasClassName "gravity" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "gravity" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_cause-01_c3 a :AMR_Leaf ;
+    :edge_c3_c :leaf_collapse-01_c ;
+    :edge_c3_g2 :leaf_gravity_g2 ;
+    :hasConcept :concept_cause-01 ;
+    :hasVariable :variable_c3 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_giant_g a :AMR_Leaf ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g .
+
+:leaf_gravity_g2 a :AMR_Leaf ;
+    :hasConcept :concept_gravity ;
+    :hasVariable :variable_g2 .
+
+:leaf_intercontinental_ii a :AMR_Leaf ;
+    :hasConcept :concept_intercontinental ;
+    :hasVariable :variable_ii .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_name_SolarSystem :value_SolarSystem ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_giant_g a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasClassName "giant" ;
+    net:hasNaming "giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:atomClass_intercontinental_ii a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_intercontinental_ii ;
+    net:coverNode :leaf_intercontinental_ii ;
+    net:hasClassName "intercontinental" ;
+    net:hasNaming "intercontinental" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_cloud_c2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_giant_g,
+        net:atomClass_intercontinental_ii ;
+    net:coverBaseNode :leaf_cloud_c2 ;
+    net:coverNode :leaf_cloud_c2 ;
+    net:hasClassName "cloud" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "cloud" ;
+    net:hasStructure "WikiAbstract-SolarSystem-04" .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_cloud_c2 a :AMR_Leaf ;
+    :edge_c2_g :leaf_giant_g ;
+    :edge_c2_ii :leaf_intercontinental_ii ;
+    :hasConcept :concept_cloud ;
+    :hasVariable :variable_c2 .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_collapse-01_c a :AMR_Leaf ;
+    :edge_c_c2 :leaf_cloud_c2 ;
+    :hasConcept :concept_collapse-01 ;
+    :hasVariable :variable_c .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..80196c98c0ce5e0ee0823068028f9c10ef87d580
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-4/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,88 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#SolarSystem> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    rdfs:label "SolarSystem" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#before> a owl:Class ;
+    rdfs:label "before" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#collapse-cause-gravity> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#cause> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#gravity> ],
+        <https://tenet.tetras-libre.fr/extract-result#collapse> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#form> a owl:ObjectProperty ;
+    rdfs:label "form" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#giant-cloud> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#intercontinental-cloud> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#cloud> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#molecule> a owl:Class ;
+    rdfs:label "molecule" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#now> a owl:Class ;
+    rdfs:label "now" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#temporal-quantity> a owl:Class ;
+    rdfs:label "temporal-quantity" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#year> a owl:ObjectProperty ;
+    rdfs:label "year" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#cause> a owl:ObjectProperty ;
+    rdfs:label "cause" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#collapse> a owl:Class ;
+    rdfs:label "collapse" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#giant> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#giant> ;
+    rdfs:label "giant" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#gravity> a owl:Class ;
+    rdfs:label "gravity" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#intercontinental> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#intercontinental> ;
+    rdfs:label "intercontinental" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
+<https://tenet.tetras-libre.fr/extract-result#cloud> a owl:Class ;
+    rdfs:label "cloud" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-04" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..3b35b3a1e72edf536dca1c0071ff49d330952dc4
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,840 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-05" ;
+    ns21:has-sentence "The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s> a ns3:system ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:be-located-at-91.ARG1 a ns11:FrameRole .
+
+ns11:be-located-at-91.ARG2 a ns11:FrameRole .
+
+ns11:contain-01.ARG0 a ns11:FrameRole .
+
+ns11:contain-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns3:op1 a ns21:Role .
+
+ns3:op2 a ns21:Role .
+
+ns3:part a ns21:Role .
+
+ns3:quant a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> a ns11:be-located-at-91 ;
+    ns11:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    ns11:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> a ns11:contain-01 ;
+    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> ;
+    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> a ns3:majority ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> a ns3:majority .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> a ns3:sun .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> a ns3:vast .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity .
+
+ns11:be-located-at-91 a ns21:Frame .
+
+ns11:contain-01 a ns21:Frame .
+
+ns11:remain-01 a ns21:Frame .
+
+ns3:sun a ns21:Concept .
+
+ns3:system a ns21:Concept .
+
+ns3:vast a ns21:Concept .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:and a ns21:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> .
+
+ns3:majority a ns21:Concept .
+
+ns3:mass a ns21:Concept .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..e1a8727901cf8f43cee379aebcb03c8d108d8460
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1402 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:be-located-at-91.ARG1 a ns11:FrameRole .
+
+ns11:be-located-at-91.ARG2 a ns11:FrameRole .
+
+ns11:contain-01.ARG0 a ns11:FrameRole .
+
+ns11:contain-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns3:op1 a ns21:Role .
+
+ns3:op2 a ns21:Role .
+
+ns3:quant a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_b a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_c a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_b_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m2_v a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_m3_m4 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_m2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_Jupiter a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_r_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-05 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-05" ;
+    :hasSentenceStatement "The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#Jupiter> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Jupiter" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
+    rdfs:label "contain" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#mass-be-sun> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#be> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#sun> ],
+        <https://tenet.tetras-libre.fr/extract-result#mass> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#remain> a owl:ObjectProperty ;
+    rdfs:label "remain" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#system-hasPart-mass> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#hasPart> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#mass> ],
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#vast-majority> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#majority> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_remain_r a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_mass_m3 ;
+    net:coverBaseNode :leaf_remain-01_r ;
+    net:coverNode :leaf_remain-01_r ;
+    net:hasNaming "remain" ;
+    net:hasPropertyName "remain" ;
+    net:hasPropertyName01 "remaining" ;
+    net:hasPropertyName10 "remain-by" ;
+    net:hasPropertyName12 "remain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m3 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_mass-be-sun_m a net:Composite_Class_Net ;
+    :role_quant net:atomClass_majority_m2,
+        net:compositeClass_vast-majority_m2 ;
+    net:composeFrom net:atomClass_mass_m,
+        net:atomClass_sun_s2,
+        net:atomProperty_be_b ;
+    net:coverBaseNode :leaf_mass_m ;
+    net:coverNode :leaf_be-located-at-91_b,
+        :leaf_mass_m,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_mass_m ;
+    net:hasNaming "mass-be-sun" ;
+    net:hasRestriction net:restriction_be-sun_b ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:compositeClass_system-hasPart-mass_s a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_mass_m,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_mass_m,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-mass" ;
+    net:hasRestriction net:restriction_hasPart-mass_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_vast_v a net:Individual_Net ;
+    net:composeFrom net:atomClass_vast_v ;
+    net:coverBaseNode :leaf_vast_v ;
+    net:coverNode :leaf_vast_v ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "vast" ;
+    net:hasMotherClassNet net:atomClass_vast_v ;
+    net:hasNaming "vast" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomProperty_be_b ;
+    :role_op2 net:atomProperty_contain_c ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-05" ;
+    ns21:has-sentence "The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s> a ns3:system ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_be-located-at-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:be-located-at-91 ;
+    :label "be-located-at-91" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:contain-01 ;
+    :label "contain-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:remain-01 ;
+    :label "remain-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:sun ;
+    :label "sun" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:system ;
+    :label "system" .
+
+:concept_vast rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:vast ;
+    :label "vast" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> ;
+    :label "c" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> ;
+    :label "m4" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> ;
+    :label "p" ;
+    :name "Jupiter" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> ;
+    :label "s2" .
+
+:variable_v a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> ;
+    :label "v" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#be> a owl:ObjectProperty ;
+    rdfs:label "be" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#majority> a owl:Class ;
+    rdfs:label "majority" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#system> a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#vast> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#vast> ;
+    rdfs:label "vast" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-05" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_majority_m4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_majority_m4 ;
+    net:coverNode :leaf_majority_m4 ;
+    net:hasClassName "majority" ;
+    net:hasNaming "majority" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:atomProperty_contain_c a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_planet_p,
+        net:individual_Jupiter_p ;
+    :role_ARG1 net:atomClass_mass_m3 ;
+    net:coverBaseNode :leaf_contain-01_c ;
+    net:coverNode :leaf_contain-01_c ;
+    net:hasNaming "contain" ;
+    net:hasPropertyName "contain" ;
+    net:hasPropertyName01 "containing" ;
+    net:hasPropertyName10 "contain-by" ;
+    net:hasPropertyName12 "contain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m3,
+        :leaf_planet_p .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_Jupiter_p a net:Individual_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Jupiter" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_be-sun_b a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomProperty_be_b ;
+    net:coverBaseNode :leaf_be-located-at-91_b ;
+    net:coverNode :leaf_be-located-at-91_b,
+        :leaf_sun_s2 ;
+    net:hasNaming "be-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_be_b ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:restriction_hasPart-mass_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_mass_m,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_mass_m ;
+    net:hasNaming "hasPart-mass" ;
+    net:hasRestrictionNetValue net:atomClass_mass_m ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> a ns11:be-located-at-91 ;
+    ns11:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    ns11:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> a ns11:contain-01 ;
+    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> ;
+    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> a ns3:majority ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> a ns3:majority ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> a ns3:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> a ns3:vast ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:be-located-at-91 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:contain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:remain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns21:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:sun a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:system a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:vast a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:and a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_majority rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:majority ;
+    :label "majority" .
+
+:concept_mass rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:mass ;
+    :label "mass" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_remain-01_r a :AMR_Leaf ;
+    :edge_r_m3 :leaf_mass_m3 ;
+    :hasConcept :concept_remain-01 ;
+    :hasVariable :variable_r .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_Jupiter a :AMR_Value ;
+    rdfs:label "Jupiter" .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+<https://tenet.tetras-libre.fr/extract-result#mass> a owl:Class ;
+    rdfs:label "mass" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-05" .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_mass_m3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_majority_m4 ;
+    net:coverBaseNode :leaf_mass_m3 ;
+    net:coverNode :leaf_mass_m3 ;
+    net:hasClassName "mass" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "mass" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:compositeClass_vast-majority_m2 a net:Composite_Class_Net ;
+    :role_mod net:atomClass_vast_v ;
+    net:composeFrom net:atomClass_majority_m2,
+        net:atomClass_vast_v ;
+    net:coverBaseNode :leaf_majority_m2 ;
+    net:coverNode :leaf_majority_m2,
+        :leaf_vast_v ;
+    net:hasMotherClassNet net:atomClass_majority_m2 ;
+    net:hasNaming "vast-majority" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Jupiter_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Jupiter ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" ;
+    net:hasValueLabel "Jupiter" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:majority a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:mass a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_b :leaf_be-located-at-91_b ;
+    :edge_a_c :leaf_contain-01_c ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_contain-01_c a :AMR_Leaf ;
+    :edge_c_m3 :leaf_mass_m3 ;
+    :edge_c_p :leaf_planet_p ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c .
+
+:leaf_majority_m4 a :AMR_Leaf ;
+    :hasConcept :concept_majority ;
+    :hasVariable :variable_m4 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s ;
+    :role_ARG1 net:atomClass_mass_m ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m,
+        :leaf_system_s .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_majority_m2 a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_vast_v ;
+    net:coverBaseNode :leaf_majority_m2 ;
+    net:coverNode :leaf_majority_m2 ;
+    net:hasClassName "majority" ;
+    net:hasNaming "majority" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:atomClass_sun_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:atomProperty_be_b a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_mass_m ;
+    :role_ARG2 net:atomClass_sun_s2 ;
+    net:coverBaseNode :leaf_be-located-at-91_b ;
+    net:coverNode :leaf_be-located-at-91_b ;
+    net:hasNaming "be" ;
+    net:hasPropertyName "be" ;
+    net:hasPropertyName01 "being" ;
+    net:hasPropertyName10 "be-by" ;
+    net:hasPropertyName12 "be-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m,
+        :leaf_sun_s2 .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_m :leaf_mass_m ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_majority_m2 a :AMR_Leaf ;
+    :edge_m2_v :leaf_vast_v ;
+    :hasConcept :concept_majority ;
+    :hasVariable :variable_m2 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_vast_v a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_vast_v ;
+    net:coverNode :leaf_vast_v ;
+    net:hasClassName "vast" ;
+    net:hasNaming "vast" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_be-located-at-91_b a :AMR_Leaf ;
+    :edge_b_m :leaf_mass_m ;
+    :edge_b_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_be-located-at-91 ;
+    :hasVariable :variable_b .
+
+:leaf_mass_m3 a :AMR_Leaf ;
+    :edge_m3_m4 :leaf_majority_m4 ;
+    :hasConcept :concept_mass ;
+    :hasVariable :variable_m3 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Jupiter :value_Jupiter ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_vast_v a :AMR_Leaf ;
+    :hasConcept :concept_vast ;
+    :hasVariable :variable_v .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_mass_m a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_majority_m2,
+        net:compositeClass_vast-majority_m2 ;
+    net:coverBaseNode :leaf_mass_m ;
+    net:coverNode :leaf_mass_m ;
+    net:hasClassName "mass" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "mass" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_mass_m a :AMR_Leaf ;
+    :edge_m_m2 :leaf_majority_m2 ;
+    :hasConcept :concept_mass ;
+    :hasVariable :variable_m .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..2f18f394356d8a73bf0a86101a16d4d901a7785d
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1090 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:be-located-at-91.ARG1 a ns11:FrameRole .
+
+ns11:be-located-at-91.ARG2 a ns11:FrameRole .
+
+ns11:contain-01.ARG0 a ns11:FrameRole .
+
+ns11:contain-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns3:op1 a ns21:Role .
+
+ns3:op2 a ns21:Role .
+
+ns3:quant a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_b a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_c a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_b_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m2_v a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_m3_m4 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_m2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_Jupiter a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_r_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_m :leaf_mass_m ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_remain-01_r a :AMR_Leaf ;
+    :edge_r_m3 :leaf_mass_m3 ;
+    :hasConcept :concept_remain-01 ;
+    :hasVariable :variable_r .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-05 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-05" ;
+    :hasSentenceStatement "The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-05" ;
+    ns21:has-sentence "The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s> a ns3:system ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_be-located-at-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:be-located-at-91 ;
+    :label "be-located-at-91" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:contain-01 ;
+    :label "contain-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:remain-01 ;
+    :label "remain-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:sun ;
+    :label "sun" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:system ;
+    :label "system" .
+
+:concept_vast rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:vast ;
+    :label "vast" .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_b :leaf_be-located-at-91_b ;
+    :edge_a_c :leaf_contain-01_c ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_be-located-at-91_b a :AMR_Leaf ;
+    :edge_b_m :leaf_mass_m ;
+    :edge_b_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_be-located-at-91 ;
+    :hasVariable :variable_b .
+
+:leaf_contain-01_c a :AMR_Leaf ;
+    :edge_c_m3 :leaf_mass_m3 ;
+    :edge_c_p :leaf_planet_p ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c .
+
+:leaf_majority_m2 a :AMR_Leaf ;
+    :edge_m2_v :leaf_vast_v ;
+    :hasConcept :concept_majority ;
+    :hasVariable :variable_m2 .
+
+:leaf_majority_m4 a :AMR_Leaf ;
+    :hasConcept :concept_majority ;
+    :hasVariable :variable_m4 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Jupiter :value_Jupiter ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_vast_v a :AMR_Leaf ;
+    :hasConcept :concept_vast ;
+    :hasVariable :variable_v .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_Jupiter a :AMR_Value ;
+    rdfs:label "Jupiter" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> ;
+    :label "c" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> ;
+    :label "m4" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> ;
+    :label "p" ;
+    :name "Jupiter" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> ;
+    :label "s2" .
+
+:variable_v a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> ;
+    :label "v" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> a ns11:be-located-at-91 ;
+    ns11:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    ns11:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> a ns11:contain-01 ;
+    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> ;
+    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> a ns3:majority ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> a ns3:majority ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> a ns3:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> a ns3:vast ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:be-located-at-91 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:contain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:remain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns21:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:sun a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:system a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:vast a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:and a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_majority rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:majority ;
+    :label "majority" .
+
+:concept_mass rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:mass ;
+    :label "mass" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_mass_m a :AMR_Leaf ;
+    :edge_m_m2 :leaf_majority_m2 ;
+    :hasConcept :concept_mass ;
+    :hasVariable :variable_m .
+
+:leaf_mass_m3 a :AMR_Leaf ;
+    :edge_m3_m4 :leaf_majority_m4 ;
+    :hasConcept :concept_mass ;
+    :hasVariable :variable_m3 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:majority a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:mass a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..3f95ac7ba910a692a9e96385c75110bd4f8c13a5
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1332 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:be-located-at-91.ARG1 a ns11:FrameRole .
+
+ns11:be-located-at-91.ARG2 a ns11:FrameRole .
+
+ns11:contain-01.ARG0 a ns11:FrameRole .
+
+ns11:contain-01.ARG1 a ns11:FrameRole .
+
+ns11:remain-01.ARG1 a ns11:FrameRole .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns3:op1 a ns21:Role .
+
+ns3:op2 a ns21:Role .
+
+ns3:quant a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a_b a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_c a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_b_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_b_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_m2_v a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_m3_m4 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_m_m2 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_name_Jupiter a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_r_m3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-05 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#root01> ;
+    :hasRootLeaf :leaf_and_a ;
+    :hasSentenceID "WikiAbstract-SolarSystem-05" ;
+    :hasSentenceStatement "The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_remain_r a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_mass_m3 ;
+    net:coverBaseNode :leaf_remain-01_r ;
+    net:coverNode :leaf_remain-01_r ;
+    net:hasNaming "remain" ;
+    net:hasPropertyName "remain" ;
+    net:hasPropertyName01 "remaining" ;
+    net:hasPropertyName10 "remain-by" ;
+    net:hasPropertyName12 "remain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m3 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_mass-be-sun_m a net:Composite_Class_Net ;
+    :role_quant net:atomClass_majority_m2,
+        net:compositeClass_vast-majority_m2 ;
+    net:composeFrom net:atomClass_mass_m,
+        net:atomClass_sun_s2,
+        net:atomProperty_be_b ;
+    net:coverBaseNode :leaf_mass_m ;
+    net:coverNode :leaf_be-located-at-91_b,
+        :leaf_mass_m,
+        :leaf_sun_s2 ;
+    net:hasMotherClassNet net:atomClass_mass_m ;
+    net:hasNaming "mass-be-sun" ;
+    net:hasRestriction net:restriction_be-sun_b ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:compositeClass_system-hasPart-mass_s a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_mass_m,
+        net:atomClass_system_s,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_mass_m,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "system-hasPart-mass" ;
+    net:hasRestriction net:restriction_hasPart-mass_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_vast_v a net:Individual_Net ;
+    net:composeFrom net:atomClass_vast_v ;
+    net:coverBaseNode :leaf_vast_v ;
+    net:coverNode :leaf_vast_v ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "vast" ;
+    net:hasMotherClassNet net:atomClass_vast_v ;
+    net:hasNaming "vast" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomProperty_be_b ;
+    :role_op2 net:atomProperty_contain_c ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#r> a ns11:remain-01 ;
+    ns11:remain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-05" ;
+    ns21:has-sentence "The vast majority of the system's mass is in the Sun, with the majority of the remaining mass contained in Jupiter." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s> a ns3:system ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns21:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:concept_be-located-at-91 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:be-located-at-91 ;
+    :label "be-located-at-91" .
+
+:concept_contain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:contain-01 ;
+    :label "contain-01" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_remain-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns11:remain-01 ;
+    :label "remain-01" .
+
+:concept_sun rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:sun ;
+    :label "sun" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:system ;
+    :label "system" .
+
+:concept_vast rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:vast ;
+    :label "vast" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> ;
+    :label "a" .
+
+:variable_b a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> ;
+    :label "b" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> ;
+    :label "c" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> ;
+    :label "m4" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> ;
+    :label "p" ;
+    :name "Jupiter" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> ;
+    :label "s2" .
+
+:variable_v a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> ;
+    :label "v" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_majority_m4 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_majority_m4 ;
+    net:coverNode :leaf_majority_m4 ;
+    net:hasClassName "majority" ;
+    net:hasNaming "majority" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:atomProperty_contain_c a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_planet_p,
+        net:individual_Jupiter_p ;
+    :role_ARG1 net:atomClass_mass_m3 ;
+    net:coverBaseNode :leaf_contain-01_c ;
+    net:coverNode :leaf_contain-01_c ;
+    net:hasNaming "contain" ;
+    net:hasPropertyName "contain" ;
+    net:hasPropertyName01 "containing" ;
+    net:hasPropertyName10 "contain-by" ;
+    net:hasPropertyName12 "contain-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m3,
+        :leaf_planet_p .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_Jupiter_p a net:Individual_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Jupiter" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_be-sun_b a net:Restriction_Net ;
+    net:composeFrom net:atomClass_sun_s2,
+        net:atomProperty_be_b ;
+    net:coverBaseNode :leaf_be-located-at-91_b ;
+    net:coverNode :leaf_be-located-at-91_b,
+        :leaf_sun_s2 ;
+    net:hasNaming "be-sun" ;
+    net:hasRestrictionNetValue net:atomClass_sun_s2 ;
+    net:hasRestrictionOnProperty net:atomProperty_be_b ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:restriction_hasPart-mass_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_mass_m,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_mass_m ;
+    net:hasNaming "hasPart-mass" ;
+    net:hasRestrictionNetValue net:atomClass_mass_m ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#a> a ns21:and ;
+    ns3:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> ;
+    ns3:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#b> a ns11:be-located-at-91 ;
+    ns11:be-located-at-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> ;
+    ns11:be-located-at-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#c> a ns11:contain-01 ;
+    ns11:contain-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> ;
+    ns11:contain-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> a ns3:majority ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> a ns3:majority ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#s2> a ns3:sun ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#v> a ns3:vast ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:be-located-at-91 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:contain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:remain-01 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns21:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:sun a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:system a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:vast a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:and a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_majority rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:majority ;
+    :label "majority" .
+
+:concept_mass rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:mass ;
+    :label "mass" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_remain-01_r a :AMR_Leaf ;
+    :edge_r_m3 :leaf_mass_m3 ;
+    :hasConcept :concept_remain-01 ;
+    :hasVariable :variable_r .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_Jupiter a :AMR_Value ;
+    rdfs:label "Jupiter" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_mass_m3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:atomClass_majority_m4 ;
+    net:coverBaseNode :leaf_mass_m3 ;
+    net:coverNode :leaf_mass_m3 ;
+    net:hasClassName "mass" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "mass" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:compositeClass_vast-majority_m2 a net:Composite_Class_Net ;
+    :role_mod net:atomClass_vast_v ;
+    net:composeFrom net:atomClass_majority_m2,
+        net:atomClass_vast_v ;
+    net:coverBaseNode :leaf_majority_m2 ;
+    net:coverNode :leaf_majority_m2,
+        :leaf_vast_v ;
+    net:hasMotherClassNet net:atomClass_majority_m2 ;
+    net:hasNaming "vast-majority" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Jupiter_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Jupiter ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" ;
+    net:hasValueLabel "Jupiter" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m3> a ns3:mass ;
+    ns3:quant <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-05#m4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:majority a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:mass a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_b :leaf_be-located-at-91_b ;
+    :edge_a_c :leaf_contain-01_c ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_contain-01_c a :AMR_Leaf ;
+    :edge_c_m3 :leaf_mass_m3 ;
+    :edge_c_p :leaf_planet_p ;
+    :hasConcept :concept_contain-01 ;
+    :hasVariable :variable_c .
+
+:leaf_majority_m4 a :AMR_Leaf ;
+    :hasConcept :concept_majority ;
+    :hasVariable :variable_m4 .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s ;
+    :role_ARG1 net:atomClass_mass_m ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m,
+        :leaf_system_s .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_majority_m2 a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_vast_v ;
+    net:coverBaseNode :leaf_majority_m2 ;
+    net:coverNode :leaf_majority_m2 ;
+    net:hasClassName "majority" ;
+    net:hasNaming "majority" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:atomClass_sun_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_sun_s2 ;
+    net:coverNode :leaf_sun_s2 ;
+    net:hasClassName "sun" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "sun" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:atomProperty_be_b a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_mass_m ;
+    :role_ARG2 net:atomClass_sun_s2 ;
+    net:coverBaseNode :leaf_be-located-at-91_b ;
+    net:coverNode :leaf_be-located-at-91_b ;
+    net:hasNaming "be" ;
+    net:hasPropertyName "be" ;
+    net:hasPropertyName01 "being" ;
+    net:hasPropertyName10 "be-by" ;
+    net:hasPropertyName12 "be-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_mass_m,
+        :leaf_sun_s2 .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_m :leaf_mass_m ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_majority_m2 a :AMR_Leaf ;
+    :edge_m2_v :leaf_vast_v ;
+    :hasConcept :concept_majority ;
+    :hasVariable :variable_m2 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_vast_v a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_vast_v ;
+    net:coverNode :leaf_vast_v ;
+    net:hasClassName "vast" ;
+    net:hasNaming "vast" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_be-located-at-91_b a :AMR_Leaf ;
+    :edge_b_m :leaf_mass_m ;
+    :edge_b_s2 :leaf_sun_s2 ;
+    :hasConcept :concept_be-located-at-91 ;
+    :hasVariable :variable_b .
+
+:leaf_mass_m3 a :AMR_Leaf ;
+    :edge_m3_m4 :leaf_majority_m4 ;
+    :hasConcept :concept_mass ;
+    :hasVariable :variable_m3 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Jupiter :value_Jupiter ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_sun_s2 a :AMR_Leaf ;
+    :hasConcept :concept_sun ;
+    :hasVariable :variable_s2 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_vast_v a :AMR_Leaf ;
+    :hasConcept :concept_vast ;
+    :hasVariable :variable_v .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_mass_m a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_quant net:atomClass_majority_m2,
+        net:compositeClass_vast-majority_m2 ;
+    net:coverBaseNode :leaf_mass_m ;
+    net:coverNode :leaf_mass_m ;
+    net:hasClassName "mass" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "mass" ;
+    net:hasStructure "WikiAbstract-SolarSystem-05" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_mass_m a :AMR_Leaf ;
+    :edge_m_m2 :leaf_majority_m2 ;
+    :hasConcept :concept_mass ;
+    :hasVariable :variable_m .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..14d32d28b91185bd5cca0a72908e9cae547129c5
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-5/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,74 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#Jupiter> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Jupiter" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#contain> a owl:ObjectProperty ;
+    rdfs:label "contain" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#mass-be-sun> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#be> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#sun> ],
+        <https://tenet.tetras-libre.fr/extract-result#mass> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#remain> a owl:ObjectProperty ;
+    rdfs:label "remain" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#system-hasPart-mass> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#hasPart> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#mass> ],
+        <https://tenet.tetras-libre.fr/extract-result#system> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#vast-majority> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#majority> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#be> a owl:ObjectProperty ;
+    rdfs:label "be" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#majority> a owl:Class ;
+    rdfs:label "majority" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#sun> a owl:Class ;
+    rdfs:label "sun" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#system> a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#vast> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#vast> ;
+    rdfs:label "vast" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
+<https://tenet.tetras-libre.fr/extract-result#mass> a owl:Class ;
+    rdfs:label "mass" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-05" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..d1dad96231429eddc85ae0bf66c341b78d6d7957
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,864 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#c> a ns3:compose-01 ;
+    ns3:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    ns3:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-06" ;
+    ns1:has-sentence "The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s> a ns2:system ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> ;
+    ns2:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:compose-01.ARG1 a ns3:FrameRole .
+
+ns3:compose-01.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns1:Role .
+
+ns2:op1 a ns1:Role .
+
+ns2:op2 a ns1:Role .
+
+ns2:op3 a ns1:Role .
+
+ns2:op4 a ns1:Role .
+
+ns2:part a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> a ns1:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> a ns2:inner .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> a ns2:metal .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> a ns1:more .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Venus" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Earth" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mars" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> a ns2:primary .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> a ns2:rock .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> a ns2:small .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> a ns2:terrestrial .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:compose-01 a ns1:Frame .
+
+ns3:have-degree-91 a ns1:Frame .
+
+ns2:inner a ns1:Concept .
+
+ns2:metal a ns1:Concept .
+
+ns2:primary a ns1:Concept .
+
+ns2:rock a ns1:Concept .
+
+ns2:small a ns1:Concept .
+
+ns2:system a ns1:Concept .
+
+ns2:terrestrial a ns1:Concept .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:more a ns1:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:and a ns1:Concept .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> a ns1:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> ;
+    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..7771b7c82b1496738026e25e44a9e4558b310c2c
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1636 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:compose-01.ARG1 a ns3:FrameRole .
+
+ns3:compose-01.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns1:Role .
+
+ns2:op1 a ns1:Role .
+
+ns2:op2 a ns1:Role .
+
+ns2:op3 a ns1:Role .
+
+ns2:op4 a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_m a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a2_r a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_p4 a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a_p5 a :AMR_Edge ;
+    :hasAmrRole :role_op4 ;
+    :hasRoleID "op4" .
+
+:edge_c_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_p6 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_h_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_p2_name_Mercury a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p3_name_Venus a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p4_name_Earth a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p5_name_Mars a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_a a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_p_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_s_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-06 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#root01> ;
+    :hasRootLeaf :leaf_planet_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-06" ;
+    :hasSentenceStatement "The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#Earth> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Earth" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#Mars> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Mars" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#Mercury> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Mercury" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#Venus> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Venus" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#compose> a owl:ObjectProperty ;
+    rdfs:label "compose" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#inner-system> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#metal> a owl:Class ;
+    rdfs:label "metal" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#primary> a owl:Class ;
+    rdfs:label "primary" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#rock> a owl:Class ;
+    rdfs:label "rock" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#terrestrial-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_compose_c a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:atomClass_planet_p3,
+        net:atomClass_planet_p4,
+        net:atomClass_planet_p5,
+        net:phenomena_conjunction-AND_a ;
+    :role_ARG2 net:atomClass_metal_m,
+        net:atomClass_rock_r,
+        net:phenomena_conjunction-AND_a2 ;
+    :role_mod net:atomClass_primary_p6 ;
+    net:coverBaseNode :leaf_compose-01_c ;
+    net:coverNode :leaf_compose-01_c ;
+    net:hasNaming "compose" ;
+    net:hasPropertyName "compose" ;
+    net:hasPropertyName01 "composeing" ;
+    net:hasPropertyName10 "compose-by" ;
+    net:hasPropertyName12 "compose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_and_a2,
+        :leaf_primary_p6 .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s,
+        net:compositeClass_inner-system_s ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:atomClass_planet_p3,
+        net:atomClass_planet_p4,
+        net:atomClass_planet_p5,
+        net:phenomena_conjunction-AND_a ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_system_s .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_terrestrial-planet_p a net:Composite_Class_Net ;
+    :role_domain net:phenomena_conjunction-AND_a ;
+    :role_mod net:atomClass_terrestrial_t ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p,
+        :leaf_terrestrial_t ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "terrestrial-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_inner_ii a net:Individual_Net ;
+    net:composeFrom net:atomClass_inner_ii ;
+    net:coverBaseNode :leaf_inner_ii ;
+    net:coverNode :leaf_inner_ii ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "inner" ;
+    net:hasMotherClassNet net:atomClass_inner_ii ;
+    net:hasNaming "inner" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:individual_terrestrial_t a net:Individual_Net ;
+    net:composeFrom net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_terrestrial_t ;
+    net:coverNode :leaf_terrestrial_t ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "terrestrial" ;
+    net:hasMotherClassNet net:atomClass_terrestrial_t ;
+    net:hasNaming "terrestrial" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:atomClass_planet_p3,
+        net:atomClass_planet_p4,
+        net:atomClass_planet_p5,
+        net:phenomena_conjunction-AND_a ;
+    :role_ARG2 net:atomClass_small_s2 ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#c> a ns3:compose-01 ;
+    ns3:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    ns3:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-06" ;
+    ns1:has-sentence "The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s> a ns2:system ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> ;
+    ns2:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:compose-01 ;
+    :label "compose-01" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_inner rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:inner ;
+    :label "inner" .
+
+:concept_metal rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:metal ;
+    :label "metal" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:more ;
+    :label "more" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_primary rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:primary ;
+    :label "primary" .
+
+:concept_rock rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:rock ;
+    :label "rock" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:terrestrial ;
+    :label "terrestrial" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> ;
+    :label "a2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#c> ;
+    :label "c" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#h> ;
+    :label "h" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> ;
+    :label "ii" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> ;
+    :label "m2" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> ;
+    :label "p2" ;
+    :name "Mercury" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> ;
+    :label "p3" ;
+    :name "Venus" .
+
+:variable_p4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> ;
+    :label "p4" ;
+    :name "Earth" .
+
+:variable_p5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> ;
+    :label "p5" ;
+    :name "Mars" .
+
+:variable_p6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> ;
+    :label "p6" .
+
+:variable_p9 a ns2:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> ;
+    :label "s2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#inner> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#inner> ;
+    rdfs:label "inner" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#system> a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#terrestrial> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#terrestrial> ;
+    rdfs:label "terrestrial" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_primary_p6 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_primary_p6 ;
+    net:coverNode :leaf_primary_p6 ;
+    net:hasClassName "primary" ;
+    net:hasNaming "primary" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_small_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s2 ;
+    net:coverNode :leaf_small_s2 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:isCoreRoleLinked "true" .
+
+net:compositeClass_inner-system_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_inner_ii ;
+    net:composeFrom net:atomClass_inner_ii,
+        net:atomClass_system_s ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_inner_ii,
+        :leaf_system_s ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "inner-system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_Earth_p4 a net:Individual_Net ;
+    :role_name net:value_Earth_blankNode ;
+    net:coverBaseNode :leaf_planet_p4 ;
+    net:coverNode :leaf_planet_p4 ;
+    net:hasIndividualLabel "Earth" ;
+    net:hasMotherClassNet net:atomClass_planet_p4 ;
+    net:hasNaming "Earth" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:individual_Mars_p5 a net:Individual_Net ;
+    :role_name net:value_Mars_blankNode ;
+    net:coverBaseNode :leaf_planet_p5 ;
+    net:coverNode :leaf_planet_p5 ;
+    net:hasIndividualLabel "Mars" ;
+    net:hasMotherClassNet net:atomClass_planet_p5 ;
+    net:hasNaming "Mars" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:individual_Mercury_p2 a net:Individual_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasIndividualLabel "Mercury" ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:individual_Venus_p3 a net:Individual_Net ;
+    :role_name net:value_Venus_blankNode ;
+    net:coverBaseNode :leaf_planet_p3 ;
+    net:coverNode :leaf_planet_p3 ;
+    net:hasIndividualLabel "Venus" ;
+    net:hasMotherClassNet net:atomClass_planet_p3 ;
+    net:hasNaming "Venus" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_rock_r ;
+    :role_op2 net:atomClass_metal_m ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> a ns1:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> a ns2:inner ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> a ns2:metal ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> a ns1:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Venus" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Earth" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mars" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> a ns2:primary ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> a ns2:rock ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> a ns2:terrestrial ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:compose-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:inner a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:metal a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:part a ns1:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:primary a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:rock a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:terrestrial a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:more a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns1:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_compose-01_c a :AMR_Leaf ;
+    :edge_c_a :leaf_and_a ;
+    :edge_c_a2 :leaf_and_a2 ;
+    :edge_c_p6 :leaf_primary_p6 ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_a :leaf_and_a ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_a :leaf_and_a ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_Earth a :AMR_Value ;
+    rdfs:label "Earth" .
+
+:value_Mars a :AMR_Value ;
+    rdfs:label "Mars" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+:value_Venus a :AMR_Value ;
+    rdfs:label "Venus" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_metal_m a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_metal_m ;
+    net:coverNode :leaf_metal_m ;
+    net:hasClassName "metal" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "metal" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:phenomena_conjunction-AND_a ;
+    :role_mod net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_rock_r a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_rock_r ;
+    net:coverNode :leaf_rock_r ;
+    net:hasClassName "rock" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "rock" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Earth_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Earth ;
+    net:hasNaming "Earth" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:hasValueLabel "Earth" .
+
+net:value_Mars_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Mars ;
+    net:hasNaming "Mars" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:hasValueLabel "Mars" .
+
+net:value_Mercury_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Mercury ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:hasValueLabel "Mercury" .
+
+net:value_Venus_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Venus ;
+    net:hasNaming "Venus" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:hasValueLabel "Venus" .
+
+ns1:and a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_metal_m a :AMR_Leaf ;
+    :hasConcept :concept_metal ;
+    :hasVariable :variable_m .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_rock_r a :AMR_Leaf ;
+    :hasConcept :concept_rock ;
+    :hasVariable :variable_r .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_inner_ii ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_m :leaf_metal_m ;
+    :edge_a2_r :leaf_rock_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_primary_p6 a :AMR_Leaf ;
+    :hasConcept :concept_primary ;
+    :hasVariable :variable_p6 .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> a ns1:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> ;
+    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_a :leaf_and_a ;
+    :edge_p_t :leaf_terrestrial_t ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_planet_p3 a :AMR_Leaf ;
+    :edge_p3_name_Venus :value_Venus ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p3 .
+
+:leaf_planet_p4 a :AMR_Leaf ;
+    :edge_p4_name_Earth :value_Earth ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p4 .
+
+:leaf_planet_p5 a :AMR_Leaf ;
+    :edge_p5_name_Mars :value_Mars ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p5 .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_inner_ii a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_inner_ii ;
+    net:coverNode :leaf_inner_ii ;
+    net:hasClassName "inner" ;
+    net:hasNaming "inner" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_planet_p3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Venus_blankNode ;
+    net:coverBaseNode :leaf_planet_p3 ;
+    net:coverNode :leaf_planet_p3 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_planet_p4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Earth_blankNode ;
+    net:coverBaseNode :leaf_planet_p4 ;
+    net:coverNode :leaf_planet_p4 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_planet_p5 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Mars_blankNode ;
+    net:coverBaseNode :leaf_planet_p5 ;
+    net:coverNode :leaf_planet_p5 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_terrestrial_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_terrestrial_t ;
+    net:coverNode :leaf_terrestrial_t ;
+    net:hasClassName "terrestrial" ;
+    net:hasNaming "terrestrial" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_planet_p2,
+        net:individual_Mercury_p2 ;
+    :role_op2 net:atomClass_planet_p3,
+        net:individual_Venus_p3 ;
+    :role_op3 net:atomClass_planet_p4,
+        net:individual_Earth_p4 ;
+    :role_op4 net:atomClass_planet_p5,
+        net:individual_Mars_p5 ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_inner_ii a :AMR_Leaf ;
+    :hasConcept :concept_inner ;
+    :hasVariable :variable_ii .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_ii :leaf_inner_ii ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_terrestrial_t a :AMR_Leaf ;
+    :hasConcept :concept_terrestrial ;
+    :hasVariable :variable_t .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_p2 :leaf_planet_p2 ;
+    :edge_a_p3 :leaf_planet_p3 ;
+    :edge_a_p4 :leaf_planet_p4 ;
+    :edge_a_p5 :leaf_planet_p5 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..84d928117db0b0b6b90e8d2b365c64016d2ab378
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1222 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:compose-01.ARG1 a ns3:FrameRole .
+
+ns3:compose-01.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns1:Role .
+
+ns2:op1 a ns1:Role .
+
+ns2:op2 a ns1:Role .
+
+ns2:op3 a ns1:Role .
+
+ns2:op4 a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_m a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a2_r a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_p4 a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a_p5 a :AMR_Edge ;
+    :hasAmrRole :role_op4 ;
+    :hasRoleID "op4" .
+
+:edge_c_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_p6 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_h_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_p2_name_Mercury a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p3_name_Venus a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p4_name_Earth a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p5_name_Mars a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_a a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_p_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_s_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_compose-01_c a :AMR_Leaf ;
+    :edge_c_a :leaf_and_a ;
+    :edge_c_a2 :leaf_and_a2 ;
+    :edge_c_p6 :leaf_primary_p6 ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_a :leaf_and_a ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_a :leaf_and_a ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-06 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#root01> ;
+    :hasRootLeaf :leaf_planet_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-06" ;
+    :hasSentenceStatement "The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#c> a ns3:compose-01 ;
+    ns3:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    ns3:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-06" ;
+    ns1:has-sentence "The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s> a ns2:system ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> ;
+    ns2:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:compose-01 ;
+    :label "compose-01" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_inner rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:inner ;
+    :label "inner" .
+
+:concept_metal rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:metal ;
+    :label "metal" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:more ;
+    :label "more" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_primary rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:primary ;
+    :label "primary" .
+
+:concept_rock rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:rock ;
+    :label "rock" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:terrestrial ;
+    :label "terrestrial" .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_m :leaf_metal_m ;
+    :edge_a2_r :leaf_rock_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_inner_ii a :AMR_Leaf ;
+    :hasConcept :concept_inner ;
+    :hasVariable :variable_ii .
+
+:leaf_metal_m a :AMR_Leaf ;
+    :hasConcept :concept_metal ;
+    :hasVariable :variable_m .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_a :leaf_and_a ;
+    :edge_p_t :leaf_terrestrial_t ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_planet_p3 a :AMR_Leaf ;
+    :edge_p3_name_Venus :value_Venus ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p3 .
+
+:leaf_planet_p4 a :AMR_Leaf ;
+    :edge_p4_name_Earth :value_Earth ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p4 .
+
+:leaf_planet_p5 a :AMR_Leaf ;
+    :edge_p5_name_Mars :value_Mars ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p5 .
+
+:leaf_primary_p6 a :AMR_Leaf ;
+    :hasConcept :concept_primary ;
+    :hasVariable :variable_p6 .
+
+:leaf_rock_r a :AMR_Leaf ;
+    :hasConcept :concept_rock ;
+    :hasVariable :variable_r .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_ii :leaf_inner_ii ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_terrestrial_t a :AMR_Leaf ;
+    :hasConcept :concept_terrestrial ;
+    :hasVariable :variable_t .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:value_Earth a :AMR_Value ;
+    rdfs:label "Earth" .
+
+:value_Mars a :AMR_Value ;
+    rdfs:label "Mars" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+:value_Venus a :AMR_Value ;
+    rdfs:label "Venus" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> ;
+    :label "a2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#c> ;
+    :label "c" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#h> ;
+    :label "h" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> ;
+    :label "ii" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> ;
+    :label "m2" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> ;
+    :label "p2" ;
+    :name "Mercury" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> ;
+    :label "p3" ;
+    :name "Venus" .
+
+:variable_p4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> ;
+    :label "p4" ;
+    :name "Earth" .
+
+:variable_p5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> ;
+    :label "p5" ;
+    :name "Mars" .
+
+:variable_p6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> ;
+    :label "p6" .
+
+:variable_p9 a ns2:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> ;
+    :label "s2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> a ns1:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> a ns2:inner ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> a ns2:metal ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> a ns1:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Venus" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Earth" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mars" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> a ns2:primary ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> a ns2:rock ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> a ns2:terrestrial ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:compose-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:inner a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:metal a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:part a ns1:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:primary a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:rock a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:terrestrial a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:more a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns1:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+ns1:and a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_p2 :leaf_planet_p2 ;
+    :edge_a_p3 :leaf_planet_p3 ;
+    :edge_a_p4 :leaf_planet_p4 ;
+    :edge_a_p5 :leaf_planet_p5 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> a ns1:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> ;
+    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..d6750d1f8bdd231e29ae16f19edb4527202219ae
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1549 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns1: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns2: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns3: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns1:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns1:hasID "test-1" ;
+    ns1:hasSentence "The sun is a star." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns1:hasID "test-2" ;
+    ns1:hasSentence "Earth is a planet." ;
+    ns1:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns3:compose-01.ARG1 a ns3:FrameRole .
+
+ns3:compose-01.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG1 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG2 a ns3:FrameRole .
+
+ns3:have-degree-91.ARG3 a ns3:FrameRole .
+
+ns2:domain a ns1:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns2:mod a ns1:Role .
+
+ns2:op1 a ns1:Role .
+
+ns2:op2 a ns1:Role .
+
+ns2:op3 a ns1:Role .
+
+ns2:op4 a ns1:Role .
+
+ns1:hasID a owl:AnnotationProperty .
+
+ns1:hasSentence a owl:AnnotationProperty .
+
+ns1:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_m a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a2_r a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a_p4 a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a_p5 a :AMR_Edge ;
+    :hasAmrRole :role_op4 ;
+    :hasRoleID "op4" .
+
+:edge_c_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_p6 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_h_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_s2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_p2_name_Mercury a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p3_name_Venus a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p4_name_Earth a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p5_name_Mars a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_a a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_p_t a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_s_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-06 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#root01> ;
+    :hasRootLeaf :leaf_planet_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-06" ;
+    :hasSentenceStatement "The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_compose_c a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:atomClass_planet_p3,
+        net:atomClass_planet_p4,
+        net:atomClass_planet_p5,
+        net:phenomena_conjunction-AND_a ;
+    :role_ARG2 net:atomClass_metal_m,
+        net:atomClass_rock_r,
+        net:phenomena_conjunction-AND_a2 ;
+    :role_mod net:atomClass_primary_p6 ;
+    net:coverBaseNode :leaf_compose-01_c ;
+    net:coverNode :leaf_compose-01_c ;
+    net:hasNaming "compose" ;
+    net:hasPropertyName "compose" ;
+    net:hasPropertyName01 "composeing" ;
+    net:hasPropertyName10 "compose-by" ;
+    net:hasPropertyName12 "compose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_and_a2,
+        :leaf_primary_p6 .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s,
+        net:compositeClass_inner-system_s ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:atomClass_planet_p3,
+        net:atomClass_planet_p4,
+        net:atomClass_planet_p5,
+        net:phenomena_conjunction-AND_a ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a,
+        :leaf_system_s .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_terrestrial-planet_p a net:Composite_Class_Net ;
+    :role_domain net:phenomena_conjunction-AND_a ;
+    :role_mod net:atomClass_terrestrial_t ;
+    net:composeFrom net:atomClass_planet_p,
+        net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p,
+        :leaf_terrestrial_t ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "terrestrial-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_inner_ii a net:Individual_Net ;
+    net:composeFrom net:atomClass_inner_ii ;
+    net:coverBaseNode :leaf_inner_ii ;
+    net:coverNode :leaf_inner_ii ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "inner" ;
+    net:hasMotherClassNet net:atomClass_inner_ii ;
+    net:hasNaming "inner" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:individual_terrestrial_t a net:Individual_Net ;
+    net:composeFrom net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_terrestrial_t ;
+    net:coverNode :leaf_terrestrial_t ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "terrestrial" ;
+    net:hasMotherClassNet net:atomClass_terrestrial_t ;
+    net:hasNaming "terrestrial" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p2,
+        net:atomClass_planet_p3,
+        net:atomClass_planet_p4,
+        net:atomClass_planet_p5,
+        net:phenomena_conjunction-AND_a ;
+    :role_ARG2 net:atomClass_small_s2 ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#c> a ns3:compose-01 ;
+    ns3:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    ns3:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#h> a ns3:have-degree-91 ;
+    ns3:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    ns3:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> ;
+    ns3:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#root01> a ns1:AMR ;
+    ns1:has-id "WikiAbstract-SolarSystem-06" ;
+    ns1:has-sentence "The four smaller inner system planets, Mercury, Venus, Earth and Mars, are terrestrial planets, being primarily composed of rock and metal." ;
+    ns1:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s> a ns2:system ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> ;
+    ns2:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns2:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns1:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:NamedEntity a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:compose-01 ;
+    :label "compose-01" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_inner rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:inner ;
+    :label "inner" .
+
+:concept_metal rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:metal ;
+    :label "metal" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns1:more ;
+    :label "more" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_primary rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:primary ;
+    :label "primary" .
+
+:concept_rock rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:rock ;
+    :label "rock" .
+
+:concept_small rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:small ;
+    :label "small" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:system ;
+    :label "system" .
+
+:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns2:terrestrial ;
+    :label "terrestrial" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> ;
+    :label "a2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#c> ;
+    :label "c" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#h> ;
+    :label "h" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> ;
+    :label "ii" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> ;
+    :label "m2" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> ;
+    :label "p2" ;
+    :name "Mercury" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> ;
+    :label "p3" ;
+    :name "Venus" .
+
+:variable_p4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> ;
+    :label "p4" ;
+    :name "Earth" .
+
+:variable_p5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> ;
+    :label "p5" ;
+    :name "Mars" .
+
+:variable_p6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> ;
+    :label "p6" .
+
+:variable_p9 a ns2:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> ;
+    :label "s2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_primary_p6 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_primary_p6 ;
+    net:coverNode :leaf_primary_p6 ;
+    net:hasClassName "primary" ;
+    net:hasNaming "primary" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_small_s2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_small_s2 ;
+    net:coverNode :leaf_small_s2 ;
+    net:hasClassName "small" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "small" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:isCoreRoleLinked "true" .
+
+net:compositeClass_inner-system_s a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_mod net:atomClass_inner_ii ;
+    net:composeFrom net:atomClass_inner_ii,
+        net:atomClass_system_s ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_inner_ii,
+        :leaf_system_s ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "inner-system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_Earth_p4 a net:Individual_Net ;
+    :role_name net:value_Earth_blankNode ;
+    net:coverBaseNode :leaf_planet_p4 ;
+    net:coverNode :leaf_planet_p4 ;
+    net:hasIndividualLabel "Earth" ;
+    net:hasMotherClassNet net:atomClass_planet_p4 ;
+    net:hasNaming "Earth" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:individual_Mars_p5 a net:Individual_Net ;
+    :role_name net:value_Mars_blankNode ;
+    net:coverBaseNode :leaf_planet_p5 ;
+    net:coverNode :leaf_planet_p5 ;
+    net:hasIndividualLabel "Mars" ;
+    net:hasMotherClassNet net:atomClass_planet_p5 ;
+    net:hasNaming "Mars" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:individual_Mercury_p2 a net:Individual_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasIndividualLabel "Mercury" ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:individual_Venus_p3 a net:Individual_Net ;
+    :role_name net:value_Venus_blankNode ;
+    net:coverBaseNode :leaf_planet_p3 ;
+    net:coverNode :leaf_planet_p3 ;
+    net:hasIndividualLabel "Venus" ;
+    net:hasMotherClassNet net:atomClass_planet_p3 ;
+    net:hasNaming "Venus" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_rock_r ;
+    :role_op2 net:atomClass_metal_m ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a2> a ns1:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#ii> a ns2:inner ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m> a ns2:metal ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#m2> a ns1:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns2:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> ;
+    ns2:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mercury" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Venus" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Earth" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Mars" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p6> a ns2:primary ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#r> a ns2:rock ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#s2> a ns2:small ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#t> a ns2:terrestrial ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:compose-01 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:have-degree-91 a ns1:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:inner a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:metal a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:part a ns1:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:primary a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:rock a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:small a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:system a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:terrestrial a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:Frame a ns1:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns1:more a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns1:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_compose-01_c a :AMR_Leaf ;
+    :edge_c_a :leaf_and_a ;
+    :edge_c_a2 :leaf_and_a2 ;
+    :edge_c_p6 :leaf_primary_p6 ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_a :leaf_and_a ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_a :leaf_and_a ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_s2 :leaf_small_s2 ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:value_Earth a :AMR_Value ;
+    rdfs:label "Earth" .
+
+:value_Mars a :AMR_Value ;
+    rdfs:label "Mars" .
+
+:value_Mercury a :AMR_Value ;
+    rdfs:label "Mercury" .
+
+:value_Venus a :AMR_Value ;
+    rdfs:label "Venus" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_metal_m a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_metal_m ;
+    net:coverNode :leaf_metal_m ;
+    net:hasClassName "metal" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "metal" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:phenomena_conjunction-AND_a ;
+    :role_mod net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_rock_r a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_rock_r ;
+    net:coverNode :leaf_rock_r ;
+    net:hasClassName "rock" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "rock" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_Earth_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Earth ;
+    net:hasNaming "Earth" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:hasValueLabel "Earth" .
+
+net:value_Mars_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Mars ;
+    net:hasNaming "Mars" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:hasValueLabel "Mars" .
+
+net:value_Mercury_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Mercury ;
+    net:hasNaming "Mercury" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:hasValueLabel "Mercury" .
+
+net:value_Venus_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Venus ;
+    net:hasNaming "Venus" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" ;
+    net:hasValueLabel "Venus" .
+
+ns1:and a ns1:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_metal_m a :AMR_Leaf ;
+    :hasConcept :concept_metal ;
+    :hasVariable :variable_m .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_rock_r a :AMR_Leaf ;
+    :hasConcept :concept_rock ;
+    :hasVariable :variable_r .
+
+:leaf_small_s2 a :AMR_Leaf ;
+    :hasConcept :concept_small ;
+    :hasVariable :variable_s2 .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_inner_ii ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_m :leaf_metal_m ;
+    :edge_a2_r :leaf_rock_r ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_primary_p6 a :AMR_Leaf ;
+    :hasConcept :concept_primary ;
+    :hasVariable :variable_p6 .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#a> a ns1:and ;
+    ns2:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p2> ;
+    ns2:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p3> ;
+    ns2:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p4> ;
+    ns2:op4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-06#p5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:FrameRole a ns1:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_a :leaf_and_a ;
+    :edge_p_t :leaf_terrestrial_t ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Mercury :value_Mercury ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_planet_p3 a :AMR_Leaf ;
+    :edge_p3_name_Venus :value_Venus ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p3 .
+
+:leaf_planet_p4 a :AMR_Leaf ;
+    :edge_p4_name_Earth :value_Earth ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p4 .
+
+:leaf_planet_p5 a :AMR_Leaf ;
+    :edge_p5_name_Mars :value_Mars ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p5 .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_inner_ii a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_inner_ii ;
+    net:coverNode :leaf_inner_ii ;
+    net:hasClassName "inner" ;
+    net:hasNaming "inner" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Mercury_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_planet_p3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Venus_blankNode ;
+    net:coverBaseNode :leaf_planet_p3 ;
+    net:coverNode :leaf_planet_p3 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_planet_p4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Earth_blankNode ;
+    net:coverBaseNode :leaf_planet_p4 ;
+    net:coverNode :leaf_planet_p4 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_planet_p5 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Mars_blankNode ;
+    net:coverBaseNode :leaf_planet_p5 ;
+    net:coverNode :leaf_planet_p5 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:atomClass_terrestrial_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_terrestrial_t ;
+    net:coverNode :leaf_terrestrial_t ;
+    net:hasClassName "terrestrial" ;
+    net:hasNaming "terrestrial" ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_planet_p2,
+        net:individual_Mercury_p2 ;
+    :role_op2 net:atomClass_planet_p3,
+        net:individual_Venus_p3 ;
+    :role_op3 net:atomClass_planet_p4,
+        net:individual_Earth_p4 ;
+    :role_op4 net:atomClass_planet_p5,
+        net:individual_Mars_p5 ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-06" .
+
+<http://amr.isi.edu/entity-types#planet> a ns1:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_inner_ii a :AMR_Leaf ;
+    :hasConcept :concept_inner ;
+    :hasVariable :variable_ii .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_ii :leaf_inner_ii ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_terrestrial_t a :AMR_Leaf ;
+    :hasConcept :concept_terrestrial ;
+    :hasVariable :variable_t .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_p2 :leaf_planet_p2 ;
+    :edge_a_p3 :leaf_planet_p3 ;
+    :edge_a_p4 :leaf_planet_p4 ;
+    :edge_a_p5 :leaf_planet_p5 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..81defb33798ca890a91440992204fa1b5ec92ec7
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-6/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,91 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#Earth> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Earth" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#Mars> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Mars" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#Mercury> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Mercury" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#Venus> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Venus" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#compose> a owl:ObjectProperty ;
+    rdfs:label "compose" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#inner-system> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#metal> a owl:Class ;
+    rdfs:label "metal" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#primary> a owl:Class ;
+    rdfs:label "primary" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#rock> a owl:Class ;
+    rdfs:label "rock" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#small> a owl:Class ;
+    rdfs:label "small" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#terrestrial-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#inner> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#inner> ;
+    rdfs:label "inner" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#system> a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#terrestrial> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#terrestrial> ;
+    rdfs:label "terrestrial" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-06" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..a5e85525be85cec2fe24d9b4f60bb5fe565d46f7
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,826 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m2> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#t> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-07" ;
+    ns21:has-sentence "The four outer system planets are giant planets, being substantially more massive than the terrestrials." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s> a ns3:system ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#o> ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns3:degree a ns21:Role .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns3:part a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#g> a ns3:giant .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m> a ns3:massive .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m2> a ns21:more ;
+    ns3:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#o> a ns3:outer .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s2> a ns3:substantial .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#t> a ns3:terrestrial .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns11:have-degree-91 a ns21:Frame .
+
+ns3:giant a ns21:Concept .
+
+ns3:massive a ns21:Concept .
+
+ns3:outer a ns21:Concept .
+
+ns3:substantial a ns21:Concept .
+
+ns3:system a ns21:Concept .
+
+ns3:terrestrial a ns21:Concept .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:more a ns21:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#g> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:quant "4" .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..fd148ab9b2d6c874183cdc2494294f52ad684a4c
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1307 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns3:degree a ns21:Role .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_t a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_m2_s2 a :AMR_Edge ;
+    :hasRoleID "degree" .
+
+:edge_p2_quant_4 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_g a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_p2 a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_s_o a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-07 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#root01> ;
+    :hasRootLeaf :leaf_planet_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-07" ;
+    :hasSentenceStatement "The four outer system planets are giant planets, being substantially more massive than the terrestrials." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#giant-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#massive> a owl:Class ;
+    rdfs:label "massive" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#outer-system-hasPart-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#hasPart> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#outer-system> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#substantial> a owl:Class ;
+    rdfs:label "substantial" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#terrestrial> a owl:Class ;
+    rdfs:label "terrestrial" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_substantial_s2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_substantial_s2 ;
+    net:coverNode :leaf_substantial_s2 ;
+    net:hasClassName "substantial" ;
+    net:hasNaming "substantial" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_outer-system-hasPart-planet_s a net:Composite_Class_Net ;
+    :role_mod net:atomClass_outer_o ;
+    net:composeFrom net:atomClass_planet_p2,
+        net:atomProperty_hasPart_p9,
+        net:compositeClass_outer-system_s ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_outer_o,
+        :leaf_planet_p2,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:compositeClass_outer-system_s ;
+    net:hasNaming "outer-system-hasPart-planet" ;
+    net:hasRestriction net:restriction_hasPart-planet_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_giant_g a net:Individual_Net ;
+    net:composeFrom net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "giant" ;
+    net:hasMotherClassNet net:atomClass_giant_g ;
+    net:hasNaming "giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:individual_outer_o a net:Individual_Net ;
+    net:composeFrom net:atomClass_outer_o ;
+    net:coverBaseNode :leaf_outer_o ;
+    net:coverNode :leaf_outer_o ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "outer" ;
+    net:hasMotherClassNet net:atomClass_outer_o ;
+    net:hasNaming "outer" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p,
+        net:compositeClass_giant-planet_p ;
+    :role_ARG2 net:atomClass_massive_m ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    :role_ARG4 net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m2> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-07" ;
+    ns21:has-sentence "The four outer system planets are giant planets, being substantially more massive than the terrestrials." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s> a ns3:system ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#o> ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_giant rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:giant ;
+    :label "giant" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_massive rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:massive ;
+    :label "massive" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:more ;
+    :label "more" .
+
+:concept_outer rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:outer ;
+    :label "outer" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_substantial rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:substantial ;
+    :label "substantial" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:system ;
+    :label "system" .
+
+:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:terrestrial ;
+    :label "terrestrial" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#g> ;
+    :label "g" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#h> ;
+    :label "h" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> ;
+    :label "p2" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s2> ;
+    :label "s2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#giant> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#giant> ;
+    rdfs:label "giant" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#outer> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#outer> ;
+    rdfs:label "outer" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#outer-system> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#system> a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-07" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_massive_m a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_massive_m ;
+    net:coverNode :leaf_massive_m ;
+    net:hasClassName "massive" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "massive" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:atomClass_terrestrial_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_terrestrial_t ;
+    net:coverNode :leaf_terrestrial_t ;
+    net:hasClassName "terrestrial" ;
+    net:hasNaming "terrestrial" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" ;
+    net:isCoreRoleLinked "true" .
+
+net:compositeClass_giant-planet_p a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_planet_p2 ;
+    :role_mod net:atomClass_giant_g ;
+    net:composeFrom net:atomClass_giant_g,
+        net:atomClass_planet_p ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_giant_g,
+        :leaf_planet_p ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p,
+        net:atomClass_planet_p2 ;
+    net:hasNaming "giant-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_hasPart-planet_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_planet_p2,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_planet_p2 ;
+    net:hasNaming "hasPart-planet" ;
+    net:hasRestrictionNetValue net:atomClass_planet_p2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:value_4_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_4 ;
+    net:hasNaming "4" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" ;
+    net:hasValueLabel "4" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#g> a ns3:giant ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m> a ns3:massive ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m2> a ns21:more ;
+    ns3:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#o> a ns3:outer ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s2> a ns3:substantial ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#t> a ns3:terrestrial ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:giant a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:massive a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:outer a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns21:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:substantial a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:system a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:terrestrial a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:more a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_m :leaf_massive_m ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_p :leaf_planet_p ;
+    :edge_h_t :leaf_terrestrial_t ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:value_4 a :AMR_Value ;
+    rdfs:label "4" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-07" .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#g> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:quant "4" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_massive_m a :AMR_Leaf ;
+    :hasConcept :concept_massive ;
+    :hasVariable :variable_m .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :edge_m2_s2 :leaf_substantial_s2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_substantial_s2 a :AMR_Leaf ;
+    :hasConcept :concept_substantial ;
+    :hasVariable :variable_s2 .
+
+:leaf_terrestrial_t a :AMR_Leaf ;
+    :hasConcept :concept_terrestrial ;
+    :hasVariable :variable_t .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:atomClass_planet_p2 ;
+    :role_mod net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_outer_o ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s,
+        net:compositeClass_outer-system_s ;
+    :role_ARG1 net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_planet_p2,
+        :leaf_system_s .
+
+net:compositeClass_outer-system_s a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_outer_o ;
+    net:composeFrom net:atomClass_outer_o,
+        net:atomClass_system_s ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_outer_o,
+        :leaf_system_s ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "outer-system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_giant_g a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasClassName "giant" ;
+    net:hasNaming "giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_giant_g a :AMR_Leaf ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_g :leaf_giant_g ;
+    :edge_p_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_outer_o a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_outer_o ;
+    net:coverNode :leaf_outer_o ;
+    net:hasClassName "outer" ;
+    net:hasNaming "outer" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_outer_o a :AMR_Leaf ;
+    :hasConcept :concept_outer ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_quant_4 :value_4 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_o :leaf_outer_o ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:value_4_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..e8d7ff2b32193cbaffae9c322fe5dcfde57892d9
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1041 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns3:degree a ns21:Role .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_t a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_m2_s2 a :AMR_Edge ;
+    :hasRoleID "degree" .
+
+:edge_p2_quant_4 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_g a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_p2 a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_s_o a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_m :leaf_massive_m ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_p :leaf_planet_p ;
+    :edge_h_t :leaf_terrestrial_t ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-07 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#root01> ;
+    :hasRootLeaf :leaf_planet_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-07" ;
+    :hasSentenceStatement "The four outer system planets are giant planets, being substantially more massive than the terrestrials." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m2> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-07" ;
+    ns21:has-sentence "The four outer system planets are giant planets, being substantially more massive than the terrestrials." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s> a ns3:system ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#o> ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_giant rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:giant ;
+    :label "giant" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_massive rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:massive ;
+    :label "massive" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:more ;
+    :label "more" .
+
+:concept_outer rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:outer ;
+    :label "outer" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_substantial rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:substantial ;
+    :label "substantial" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:system ;
+    :label "system" .
+
+:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:terrestrial ;
+    :label "terrestrial" .
+
+:leaf_giant_g a :AMR_Leaf ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g .
+
+:leaf_massive_m a :AMR_Leaf ;
+    :hasConcept :concept_massive ;
+    :hasVariable :variable_m .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :edge_m2_s2 :leaf_substantial_s2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_outer_o a :AMR_Leaf ;
+    :hasConcept :concept_outer ;
+    :hasVariable :variable_o .
+
+:leaf_substantial_s2 a :AMR_Leaf ;
+    :hasConcept :concept_substantial ;
+    :hasVariable :variable_s2 .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_o :leaf_outer_o ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+:leaf_terrestrial_t a :AMR_Leaf ;
+    :hasConcept :concept_terrestrial ;
+    :hasVariable :variable_t .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_4 a :AMR_Value ;
+    rdfs:label "4" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#g> ;
+    :label "g" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#h> ;
+    :label "h" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> ;
+    :label "p2" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s2> ;
+    :label "s2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#g> a ns3:giant ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m> a ns3:massive ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m2> a ns21:more ;
+    ns3:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#o> a ns3:outer ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s2> a ns3:substantial ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#t> a ns3:terrestrial ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:giant a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:massive a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:outer a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns21:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:substantial a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:system a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:terrestrial a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:more a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_g :leaf_giant_g ;
+    :edge_p_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_quant_4 :value_4 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#g> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:quant "4" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..6d1fcee5ac37b3e505734b43bf785b0bad08838b
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1243 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns21: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix ns3: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns21:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns21:hasID "test-1" ;
+    ns21:hasSentence "The sun is a star." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns21:hasID "test-2" ;
+    ns21:hasSentence "Earth is a planet." ;
+    ns21:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns11:have-degree-91.ARG1 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG2 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG3 a ns11:FrameRole .
+
+ns11:have-degree-91.ARG4 a ns11:FrameRole .
+
+ns3:degree a ns21:Role .
+
+ns3:domain a ns21:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns3:mod a ns21:Role .
+
+ns21:hasID a owl:AnnotationProperty .
+
+ns21:hasSentence a owl:AnnotationProperty .
+
+ns21:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_t a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_m2_s2 a :AMR_Edge ;
+    :hasRoleID "degree" .
+
+:edge_p2_quant_4 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_p9_ARG0_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p9_ARG1_p2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_p_g a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_p2 a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_s_o a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-07 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#root01> ;
+    :hasRootLeaf :leaf_planet_p ;
+    :hasSentenceID "WikiAbstract-SolarSystem-07" ;
+    :hasSentenceStatement "The four outer system planets are giant planets, being substantially more massive than the terrestrials." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomClass_substantial_s2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_substantial_s2 ;
+    net:coverNode :leaf_substantial_s2 ;
+    net:hasClassName "substantial" ;
+    net:hasNaming "substantial" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_outer-system-hasPart-planet_s a net:Composite_Class_Net ;
+    :role_mod net:atomClass_outer_o ;
+    net:composeFrom net:atomClass_planet_p2,
+        net:atomProperty_hasPart_p9,
+        net:compositeClass_outer-system_s ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_outer_o,
+        :leaf_planet_p2,
+        :leaf_system_s ;
+    net:hasMotherClassNet net:compositeClass_outer-system_s ;
+    net:hasNaming "outer-system-hasPart-planet" ;
+    net:hasRestriction net:restriction_hasPart-planet_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_giant_g a net:Individual_Net ;
+    net:composeFrom net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "giant" ;
+    net:hasMotherClassNet net:atomClass_giant_g ;
+    net:hasNaming "giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:individual_outer_o a net:Individual_Net ;
+    net:composeFrom net:atomClass_outer_o ;
+    net:coverBaseNode :leaf_outer_o ;
+    net:coverNode :leaf_outer_o ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "outer" ;
+    net:hasMotherClassNet net:atomClass_outer_o ;
+    net:hasNaming "outer" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p,
+        net:compositeClass_giant-planet_p ;
+    :role_ARG2 net:atomClass_massive_m ;
+    :role_ARG3 net:atomProperty_more_m2 ;
+    :role_ARG4 net:atomClass_terrestrial_t ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#h> a ns11:have-degree-91 ;
+    ns11:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> ;
+    ns11:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m> ;
+    ns11:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m2> ;
+    ns11:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#root01> a ns21:AMR ;
+    ns21:has-id "WikiAbstract-SolarSystem-07" ;
+    ns21:has-sentence "The four outer system planets are giant planets, being substantially more massive than the terrestrials." ;
+    ns21:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s> a ns3:system ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#o> ;
+    ns3:part <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns3:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns21:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:Frame a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:NamedEntity a ns21:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_giant rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:giant ;
+    :label "giant" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns11:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_massive rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:massive ;
+    :label "massive" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns21:more ;
+    :label "more" .
+
+:concept_outer rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:outer ;
+    :label "outer" .
+
+:concept_part rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:part ;
+    :isReifiedConcept true ;
+    :label "hasPart" .
+
+:concept_substantial rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:substantial ;
+    :label "substantial" .
+
+:concept_system rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:system ;
+    :label "system" .
+
+:concept_terrestrial rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns3:terrestrial ;
+    :label "terrestrial" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#g> ;
+    :label "g" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#h> ;
+    :label "h" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m2> ;
+    :label "m2" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> ;
+    :label "p" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> ;
+    :label "p2" .
+
+:variable_p9 a ns3:part,
+        :AMR_Variable ;
+    :isReifiedVariable true ;
+    :label "p9" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s> ;
+    :label "s" .
+
+:variable_s2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s2> ;
+    :label "s2" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#t> ;
+    :label "t" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_massive_m a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_massive_m ;
+    net:coverNode :leaf_massive_m ;
+    net:hasClassName "massive" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "massive" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:atomClass_terrestrial_t a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_terrestrial_t ;
+    net:coverNode :leaf_terrestrial_t ;
+    net:hasClassName "terrestrial" ;
+    net:hasNaming "terrestrial" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:atomProperty_more_m2 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_more_m2 ;
+    net:coverNode :leaf_more_m2 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" ;
+    net:isCoreRoleLinked "true" .
+
+net:compositeClass_giant-planet_p a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:atomClass_planet_p2 ;
+    :role_mod net:atomClass_giant_g ;
+    net:composeFrom net:atomClass_giant_g,
+        net:atomClass_planet_p ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_giant_g,
+        :leaf_planet_p ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p,
+        net:atomClass_planet_p2 ;
+    net:hasNaming "giant-planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_hasPart-planet_p9 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_planet_p2,
+        net:atomProperty_hasPart_p9 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9,
+        :leaf_planet_p2 ;
+    net:hasNaming "hasPart-planet" ;
+    net:hasRestrictionNetValue net:atomClass_planet_p2 ;
+    net:hasRestrictionOnProperty net:atomProperty_hasPart_p9 ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:value_4_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_4 ;
+    net:hasNaming "4" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" ;
+    net:hasValueLabel "4" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#g> a ns3:giant ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m> a ns3:massive ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#m2> a ns21:more ;
+    ns3:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#o> a ns3:outer ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#s2> a ns3:substantial ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#t> a ns3:terrestrial ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:have-degree-91 a ns21:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:giant a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:massive a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:outer a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:part a ns21:Role ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:substantial a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:system a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:terrestrial a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns21:more a ns21:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_m :leaf_massive_m ;
+    :edge_h_m2 :leaf_more_m2 ;
+    :edge_h_p :leaf_planet_p ;
+    :edge_h_t :leaf_terrestrial_t ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:value_4 a :AMR_Value ;
+    rdfs:label "4" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> ;
+    ns3:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#g> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-07#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    ns3:quant "4" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns21:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_massive_m a :AMR_Leaf ;
+    :hasConcept :concept_massive ;
+    :hasVariable :variable_m .
+
+:leaf_more_m2 a :AMR_Leaf ;
+    :edge_m2_s2 :leaf_substantial_s2 ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m2 .
+
+:leaf_substantial_s2 a :AMR_Leaf ;
+    :hasConcept :concept_substantial ;
+    :hasVariable :variable_s2 .
+
+:leaf_terrestrial_t a :AMR_Leaf ;
+    :hasConcept :concept_terrestrial ;
+    :hasVariable :variable_t .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:atomClass_planet_p2 ;
+    :role_mod net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:atomClass_system_s a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_outer_o ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_system_s ;
+    net:hasClassName "system" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:atomProperty_hasPart_p9 a net:Atom_Property_Net ;
+    :role_ARG0 net:atomClass_system_s,
+        net:compositeClass_outer-system_s ;
+    :role_ARG1 net:atomClass_planet_p2 ;
+    net:coverBaseNode :leaf_hasPart_p9 ;
+    net:coverNode :leaf_hasPart_p9 ;
+    net:hasNaming "hasPart" ;
+    net:hasPropertyName "hasPart" ;
+    net:hasPropertyName01 "hasParting" ;
+    net:hasPropertyName10 "hasPart-by" ;
+    net:hasPropertyName12 "hasPart-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_planet_p2,
+        :leaf_system_s .
+
+net:compositeClass_outer-system_s a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_outer_o ;
+    net:composeFrom net:atomClass_outer_o,
+        net:atomClass_system_s ;
+    net:coverBaseNode :leaf_system_s ;
+    net:coverNode :leaf_outer_o,
+        :leaf_system_s ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_system_s ;
+    net:hasNaming "outer-system" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns11:FrameRole a ns21:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_hasPart_p9 a :AMR_Leaf ;
+    :edge_p9_ARG0_s :leaf_system_s ;
+    :edge_p9_ARG1_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_part ;
+    :hasVariable :variable_p9 ;
+    :isReifiedLeaf true .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_giant_g a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasClassName "giant" ;
+    net:hasNaming "giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_giant_g a :AMR_Leaf ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_g :leaf_giant_g ;
+    :edge_p_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:atomClass_outer_o a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_outer_o ;
+    net:coverNode :leaf_outer_o ;
+    net:hasClassName "outer" ;
+    net:hasNaming "outer" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_outer_o a :AMR_Leaf ;
+    :hasConcept :concept_outer ;
+    :hasVariable :variable_o .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_quant_4 :value_4 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:leaf_system_s a :AMR_Leaf ;
+    :edge_s_o :leaf_outer_o ;
+    :hasConcept :concept_system ;
+    :hasVariable :variable_s .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_quant net:value_4_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-07" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..ca2fb0ed5c5d29ef54d9e3763fa3ac79015c9cb2
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-7/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,68 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#giant-planet> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#massive> a owl:Class ;
+    rdfs:label "massive" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:ObjectProperty ;
+    rdfs:label "more" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#outer-system-hasPart-planet> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#hasPart> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#planet> ],
+        <https://tenet.tetras-libre.fr/extract-result#outer-system> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#substantial> a owl:Class ;
+    rdfs:label "substantial" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#terrestrial> a owl:Class ;
+    rdfs:label "terrestrial" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#giant> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#giant> ;
+    rdfs:label "giant" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#hasPart> a owl:ObjectProperty ;
+    rdfs:label "hasPart" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#outer> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#outer> ;
+    rdfs:label "outer" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#outer-system> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#system> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#system> a owl:Class ;
+    rdfs:label "system" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-07" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..055a1b7d1ea7c0f191dac2aff87860c9694f6e75
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,960 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c2> a ns2:compose-01 ;
+    ns2:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> ;
+    ns2:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a2> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c3> a ns2:compose-01 ;
+    ns2:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> ;
+    ns2:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m6> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c4> a ns2:call-01 ;
+    ns2:call-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> ;
+    ns2:call-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#v> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h> a ns2:have-degree-91 ;
+    ns2:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> ;
+    ns2:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#l> ;
+    ns2:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h4> a ns2:have-degree-91 ;
+    ns2:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> ;
+    ns2:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h5> ;
+    ns2:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> ;
+    ns2:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#r> a ns2:relative-05 ;
+    ns2:relative-05.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-08" ;
+    ns3:has-sentence "The two largest planets, Jupiter and Saturn, are gas giants, being composed mainly of hydrogen and helium; the two outermost planets, Uranus and Neptune, are ice giants, being composed mostly of substances with relatively high melting points compared with hydrogen and helium, called volatiles, such as water, ammonia and methane." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:call-01.ARG1 a ns2:FrameRole .
+
+ns2:call-01.ARG2 a ns2:FrameRole .
+
+ns2:compose-01.ARG1 a ns2:FrameRole .
+
+ns2:compose-01.ARG2 a ns2:FrameRole .
+
+ns2:contrast-01.ARG1 a ns2:FrameRole .
+
+ns2:contrast-01.ARG2 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG1 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG2 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG3 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG4 a ns2:FrameRole .
+
+ns2:high-02.ARG1 a ns2:FrameRole .
+
+ns2:relative-05.ARG2 a ns2:FrameRole .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:example a ns3:Role .
+
+ns11:mod a ns3:Role .
+
+ns11:op1 a ns3:Role .
+
+ns11:op2 a ns3:Role .
+
+ns11:op3 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a2> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a5> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#w> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a6> ;
+    ns11:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m5> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a6> a ns11:ammonia .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c> a ns2:contrast-01 ;
+    ns2:contrast-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> ;
+    ns2:contrast-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g2> a ns11:gas .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g3> a ns11:giant ;
+    ns11:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#ii> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h2> a ns11:hydrogen .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h3> a ns11:helium .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h5> a ns2:high-02 ;
+    ns2:high-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p5> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h6> a ns11:hydrogen .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h7> a ns11:helium .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#ii> a ns11:ice .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#l> a ns11:large .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m> a ns3:most .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m2> a ns11:main .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m3> a ns2:melt-01 .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m5> a ns11:methane .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m6> a ns3:most .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Saturn" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p3> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Uranus" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p4> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Neptune" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p5> a ns11:point ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m3> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#v> a ns11:volatile ;
+    ns11:example <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a5> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#w> a ns11:water .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns2:call-01 a ns3:Frame .
+
+ns2:contrast-01 a ns3:Frame .
+
+ns2:high-02 a ns3:Frame .
+
+ns2:melt-01 a ns3:Frame .
+
+ns2:relative-05 a ns3:Frame .
+
+ns11:ammonia a ns3:Concept .
+
+ns11:gas a ns3:Concept .
+
+ns11:ice a ns3:Concept .
+
+ns11:large a ns3:Concept .
+
+ns11:main a ns3:Concept .
+
+ns11:methane a ns3:Concept .
+
+ns11:point a ns3:Concept .
+
+ns11:substance a ns3:Concept .
+
+ns11:volatile a ns3:Concept .
+
+ns11:water a ns3:Concept .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p3> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p4> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h6> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h7> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> a ns11:giant ;
+    ns11:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> a ns3:more .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> a ns11:substance .
+
+ns2:compose-01 a ns3:Frame .
+
+ns2:have-degree-91 a ns3:Frame .
+
+ns11:giant a ns3:Concept .
+
+ns11:helium a ns3:Concept .
+
+ns11:hydrogen a ns3:Concept .
+
+ns3:most a ns3:Concept .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+ns3:and a ns3:Concept .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..4974ebd724450175f655e1f226fa55399abf92f6
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,2434 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:call-01.ARG1 a ns2:FrameRole .
+
+ns2:call-01.ARG2 a ns2:FrameRole .
+
+ns2:compose-01.ARG1 a ns2:FrameRole .
+
+ns2:compose-01.ARG2 a ns2:FrameRole .
+
+ns2:contrast-01.ARG1 a ns2:FrameRole .
+
+ns2:contrast-01.ARG2 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG1 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG2 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG3 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG4 a ns2:FrameRole .
+
+ns2:high-02.ARG1 a ns2:FrameRole .
+
+ns2:relative-05.ARG2 a ns2:FrameRole .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:example a ns3:Role .
+
+ns11:mod a ns3:Role .
+
+ns11:op1 a ns3:Role .
+
+ns11:op2 a ns3:Role .
+
+ns11:op3 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_h2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_h3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a3_p3 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a3_p4 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a4_h6 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a4_h7 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a5_a6 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a5_m5 a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a5_w a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_c2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c2_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c2_m2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_a3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c3_m6 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c4_a4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c4_v a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_g3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_g3_a3 a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_g3_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_g_a a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_g_g2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_h4_a4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h4_h5 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h4_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h4_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h5_p5 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_p2_name_Saturn a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p3_name_Uranus a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p4_name_Neptune a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p5_m3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_name_Jupiter a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_r_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_v_a5 a :AMR_Edge ;
+    :hasRoleID "example" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-08 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#root01> ;
+    :hasRootLeaf :leaf_contrast-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-08" ;
+    :hasSentenceStatement "The two largest planets, Jupiter and Saturn, are gas giants, being composed mainly of hydrogen and helium; the two outermost planets, Uranus and Neptune, are ice giants, being composed mostly of substances with relatively high melting points compared with hydrogen and helium, called volatiles, such as water, ammonia and methane." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#Jupiter> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Jupiter" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#Neptune> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Neptune" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#Saturn> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Saturn" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#Uranus> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Uranus" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#ammonia> a owl:Class ;
+    rdfs:label "ammonia" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#gas-giant-compose-helium> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#compose> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#helium> ],
+        <https://tenet.tetras-libre.fr/extract-result#gas-giant> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#gas-giant-compose-hydrogen> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#compose> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#hydrogen> ],
+        <https://tenet.tetras-libre.fr/extract-result#gas-giant> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#helium-call-volatile> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#call> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#volatile> ],
+        <https://tenet.tetras-libre.fr/extract-result#helium> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#high> a owl:ObjectProperty ;
+    rdfs:label "high" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#hydrogen-call-volatile> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#call> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#volatile> ],
+        <https://tenet.tetras-libre.fr/extract-result#hydrogen> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#ice-giant> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#giant> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#main> a owl:Class ;
+    rdfs:label "main" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#melt> a owl:ObjectProperty ;
+    rdfs:label "melt" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#methane> a owl:Class ;
+    rdfs:label "methane" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:Class ;
+    rdfs:label "more" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#point> a owl:Class ;
+    rdfs:label "point" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#relative> a owl:ObjectProperty ;
+    rdfs:label "relative" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#substance> a owl:Class ;
+    rdfs:label "substance" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#water> a owl:Class ;
+    rdfs:label "water" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_compose_c3 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_planet_p3,
+        net:atomClass_planet_p4,
+        net:phenomena_conjunction-AND_a3 ;
+    :role_ARG2 net:atomClass_substance_s ;
+    :role_mod net:atomProperty_most_m6 ;
+    net:coverBaseNode :leaf_compose-01_c3 ;
+    net:coverNode :leaf_compose-01_c3 ;
+    net:hasNaming "compose" ;
+    net:hasPropertyName "compose" ;
+    net:hasPropertyName01 "composeing" ;
+    net:hasPropertyName10 "compose-by" ;
+    net:hasPropertyName12 "compose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a3,
+        :leaf_most_m6,
+        :leaf_substance_s .
+
+net:atomProperty_relative_r a net:Atom_Property_Net ;
+    :role_ARG2 net:atomClass_more_m4,
+        net:atomProperty_more_m4 ;
+    net:coverBaseNode :leaf_relative-05_r ;
+    net:coverNode :leaf_relative-05_r ;
+    net:hasNaming "relative" ;
+    net:hasPropertyName "relative" ;
+    net:hasPropertyName01 "relativeing" ;
+    net:hasPropertyName10 "relative-by" ;
+    net:hasPropertyName12 "relative-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_more_m4 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_gas-giant-compose-helium_g a net:Composite_Class_Net ;
+    :role_domain net:phenomena_conjunction-AND_a ;
+    :role_mod net:atomClass_gas_g2 ;
+    net:composeFrom net:atomClass_helium_h3,
+        net:atomProperty_compose_c2,
+        net:compositeClass_gas-giant_g ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_compose-01_c2,
+        :leaf_gas_g2,
+        :leaf_giant_g,
+        :leaf_helium_h3 ;
+    net:hasMotherClassNet net:compositeClass_gas-giant_g ;
+    net:hasNaming "gas-giant-compose-helium" ;
+    net:hasRestriction net:restriction_compose-helium_c2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:compositeClass_gas-giant-compose-hydrogen_g a net:Composite_Class_Net ;
+    :role_domain net:phenomena_conjunction-AND_a ;
+    :role_mod net:atomClass_gas_g2 ;
+    net:composeFrom net:atomClass_hydrogen_h2,
+        net:atomProperty_compose_c2,
+        net:compositeClass_gas-giant_g ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_compose-01_c2,
+        :leaf_gas_g2,
+        :leaf_giant_g,
+        :leaf_hydrogen_h2 ;
+    net:hasMotherClassNet net:compositeClass_gas-giant_g ;
+    net:hasNaming "gas-giant-compose-hydrogen" ;
+    net:hasRestriction net:restriction_compose-hydrogen_c2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:compositeClass_helium-call-volatile_h7 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_helium_h7,
+        net:atomClass_volatile_v,
+        net:atomProperty_call_c4 ;
+    net:coverBaseNode :leaf_helium_h7 ;
+    net:coverNode :leaf_call-01_c4,
+        :leaf_helium_h7,
+        :leaf_volatile_v ;
+    net:hasMotherClassNet net:atomClass_helium_h7 ;
+    net:hasNaming "helium-call-volatile" ;
+    net:hasRestriction net:restriction_call-volatile_c4 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:compositeClass_hydrogen-call-volatile_h6 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_hydrogen_h6,
+        net:atomClass_volatile_v,
+        net:atomProperty_call_c4 ;
+    net:coverBaseNode :leaf_hydrogen_h6 ;
+    net:coverNode :leaf_call-01_c4,
+        :leaf_hydrogen_h6,
+        :leaf_volatile_v ;
+    net:hasMotherClassNet net:atomClass_hydrogen_h6 ;
+    net:hasNaming "hydrogen-call-volatile" ;
+    net:hasRestriction net:restriction_call-volatile_c4 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_gas_g2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_gas_g2 ;
+    net:coverBaseNode :leaf_gas_g2 ;
+    net:coverNode :leaf_gas_g2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "gas" ;
+    net:hasMotherClassNet net:atomClass_gas_g2 ;
+    net:hasNaming "gas" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:individual_ice_ii a net:Individual_Net ;
+    net:composeFrom net:atomClass_ice_ii ;
+    net:coverBaseNode :leaf_ice_ii ;
+    net:coverNode :leaf_ice_ii ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "ice" ;
+    net:hasMotherClassNet net:atomClass_ice_ii ;
+    net:hasNaming "ice" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a5 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_water_w ;
+    :role_op2 net:atomClass_ammonia_a6 ;
+    :role_op3 net:atomClass_methane_m5 ;
+    net:coverBaseNode :leaf_and_a5 ;
+    net:coverNode :leaf_and_a5 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:phenomena_conjunction_c a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_giant_g,
+        net:compositeClass_gas-giant_g ;
+    :role_ARG2 net:atomClass_giant_g3,
+        net:compositeClass_ice-giant_g3 ;
+    net:coverBaseNode :leaf_contrast-01_c ;
+    net:coverNode :leaf_contrast-01_c ;
+    net:hasNaming "conjunction" ;
+    net:hasPhenomenaRef "contrast-01" ;
+    net:hasPhenomenaType :phenomena_conjunction ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p,
+        net:atomClass_planet_p2,
+        net:phenomena_conjunction-AND_a ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_most_m ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:phenomena_degree_h4 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_substance_s ;
+    :role_ARG2 net:atomProperty_high_h5 ;
+    :role_ARG3 net:atomClass_more_m4,
+        net:atomProperty_more_m4 ;
+    :role_ARG4 net:atomClass_helium_h7,
+        net:atomClass_hydrogen_h6,
+        net:phenomena_conjunction-AND_a4 ;
+    net:coverBaseNode :leaf_have-degree-91_h4 ;
+    net:coverNode :leaf_have-degree-91_h4 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c2> a ns2:compose-01 ;
+    ns2:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> ;
+    ns2:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a2> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c3> a ns2:compose-01 ;
+    ns2:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> ;
+    ns2:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m6> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c4> a ns2:call-01 ;
+    ns2:call-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> ;
+    ns2:call-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#v> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h> a ns2:have-degree-91 ;
+    ns2:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> ;
+    ns2:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#l> ;
+    ns2:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h4> a ns2:have-degree-91 ;
+    ns2:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> ;
+    ns2:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h5> ;
+    ns2:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> ;
+    ns2:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#r> a ns2:relative-05 ;
+    ns2:relative-05.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-08" ;
+    ns3:has-sentence "The two largest planets, Jupiter and Saturn, are gas giants, being composed mainly of hydrogen and helium; the two outermost planets, Uranus and Neptune, are ice giants, being composed mostly of substances with relatively high melting points compared with hydrogen and helium, called volatiles, such as water, ammonia and methane." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_ammonia rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:ammonia ;
+    :label "ammonia" .
+
+:concept_call-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:call-01 ;
+    :label "call-01" .
+
+:concept_contrast-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:contrast-01 ;
+    :hasPhenomenaLink :phenomena_conjunction ;
+    :label "contrast-01" .
+
+:concept_gas rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:gas ;
+    :label "gas" .
+
+:concept_high-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:high-02 ;
+    :label "high-02" .
+
+:concept_ice rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:ice ;
+    :label "ice" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:large ;
+    :label "large" .
+
+:concept_main rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:main ;
+    :label "main" .
+
+:concept_melt-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:melt-01 ;
+    :label "melt-01" .
+
+:concept_methane rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:methane ;
+    :label "methane" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_point rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:point ;
+    :label "point" .
+
+:concept_relative-05 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:relative-05 ;
+    :label "relative-05" .
+
+:concept_substance rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:substance ;
+    :label "substance" .
+
+:concept_volatile rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:volatile ;
+    :label "volatile" .
+
+:concept_water rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:water ;
+    :label "water" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_op3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a2> ;
+    :label "a2" .
+
+:variable_a3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> ;
+    :label "a3" .
+
+:variable_a4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> ;
+    :label "a4" .
+
+:variable_a5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a5> ;
+    :label "a5" .
+
+:variable_a6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a6> ;
+    :label "a6" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c2> ;
+    :label "c2" .
+
+:variable_c3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c3> ;
+    :label "c3" .
+
+:variable_c4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c4> ;
+    :label "c4" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> ;
+    :label "g" .
+
+:variable_g2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g2> ;
+    :label "g2" .
+
+:variable_g3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g3> ;
+    :label "g3" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h2> ;
+    :label "h2" .
+
+:variable_h3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h3> ;
+    :label "h3" .
+
+:variable_h4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h4> ;
+    :label "h4" .
+
+:variable_h5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h5> ;
+    :label "h5" .
+
+:variable_h6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h6> ;
+    :label "h6" .
+
+:variable_h7 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h7> ;
+    :label "h7" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> ;
+    :label "m4" .
+
+:variable_m5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m5> ;
+    :label "m5" .
+
+:variable_m6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m6> ;
+    :label "m6" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p> ;
+    :label "p" ;
+    :name "Jupiter" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p2> ;
+    :label "p2" ;
+    :name "Saturn" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p3> ;
+    :label "p3" ;
+    :name "Uranus" .
+
+:variable_p4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p4> ;
+    :label "p4" ;
+    :name "Neptune" .
+
+:variable_p5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p5> ;
+    :label "p5" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> ;
+    :label "s" .
+
+:variable_v a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#v> ;
+    :label "v" .
+
+:variable_w a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#w> ;
+    :label "w" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#gas> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#gas> ;
+    rdfs:label "gas" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#ice> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#ice> ;
+    rdfs:label "ice" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_ammonia_a6 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_ammonia_a6 ;
+    net:coverNode :leaf_ammonia_a6 ;
+    net:hasClassName "ammonia" ;
+    net:hasNaming "ammonia" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_main_m2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_main_m2 ;
+    net:coverNode :leaf_main_m2 ;
+    net:hasClassName "main" ;
+    net:hasNaming "main" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_methane_m5 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_methane_m5 ;
+    net:coverNode :leaf_methane_m5 ;
+    net:hasClassName "methane" ;
+    net:hasNaming "methane" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_point_p5 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_mod net:atomProperty_melt_m3 ;
+    net:coverBaseNode :leaf_point_p5 ;
+    net:coverNode :leaf_point_p5 ;
+    net:hasClassName "point" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "point" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_water_w a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_water_w ;
+    net:coverNode :leaf_water_w ;
+    net:hasClassName "water" ;
+    net:hasNaming "water" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomProperty_high_h5 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_point_p5 ;
+    net:coverBaseNode :leaf_high-02_h5 ;
+    net:coverNode :leaf_high-02_h5 ;
+    net:hasNaming "high" ;
+    net:hasPropertyName "high" ;
+    net:hasPropertyName01 "highing" ;
+    net:hasPropertyName10 "high-by" ;
+    net:hasPropertyName12 "high-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_point_p5 .
+
+net:atomProperty_melt_m3 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_melt-01_m3 ;
+    net:coverNode :leaf_melt-01_m3 ;
+    net:hasNaming "melt" ;
+    net:hasPropertyName "melt" ;
+    net:hasPropertyName01 "melting" ;
+    net:hasPropertyName10 "melt-by" ;
+    net:hasPropertyName12 "melt-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m6 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m6 ;
+    net:coverNode :leaf_most_m6 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" .
+
+net:compositeClass_ice-giant_g3 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:phenomena_conjunction-AND_a3 ;
+    :role_mod net:atomClass_ice_ii ;
+    net:composeFrom net:atomClass_giant_g3,
+        net:atomClass_ice_ii ;
+    net:coverBaseNode :leaf_giant_g3 ;
+    net:coverNode :leaf_giant_g3,
+        :leaf_ice_ii ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_giant_g3 ;
+    net:hasNaming "ice-giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_Jupiter_p a net:Individual_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Jupiter" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:individual_Neptune_p4 a net:Individual_Net ;
+    :role_name net:value_Neptune_blankNode ;
+    net:coverBaseNode :leaf_planet_p4 ;
+    net:coverNode :leaf_planet_p4 ;
+    net:hasIndividualLabel "Neptune" ;
+    net:hasMotherClassNet net:atomClass_planet_p4 ;
+    net:hasNaming "Neptune" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:individual_Saturn_p2 a net:Individual_Net ;
+    :role_name net:value_Saturn_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasIndividualLabel "Saturn" ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "Saturn" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:individual_Uranus_p3 a net:Individual_Net ;
+    :role_name net:value_Uranus_blankNode ;
+    net:coverBaseNode :leaf_planet_p3 ;
+    net:coverNode :leaf_planet_p3 ;
+    net:hasIndividualLabel "Uranus" ;
+    net:hasMotherClassNet net:atomClass_planet_p3 ;
+    net:hasNaming "Uranus" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_hydrogen_h2 ;
+    :role_op2 net:atomClass_helium_h3 ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:restriction_compose-helium_c2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_helium_h3,
+        net:atomProperty_compose_c2 ;
+    net:coverBaseNode :leaf_compose-01_c2 ;
+    net:coverNode :leaf_compose-01_c2,
+        :leaf_helium_h3 ;
+    net:hasNaming "compose-helium" ;
+    net:hasRestrictionNetValue net:atomClass_helium_h3 ;
+    net:hasRestrictionOnProperty net:atomProperty_compose_c2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:restriction_compose-hydrogen_c2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_hydrogen_h2,
+        net:atomProperty_compose_c2 ;
+    net:coverBaseNode :leaf_compose-01_c2 ;
+    net:coverNode :leaf_compose-01_c2,
+        :leaf_hydrogen_h2 ;
+    net:hasNaming "compose-hydrogen" ;
+    net:hasRestrictionNetValue net:atomClass_hydrogen_h2 ;
+    net:hasRestrictionOnProperty net:atomProperty_compose_c2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a2> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a5> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#w> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a6> ;
+    ns11:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a6> a ns11:ammonia ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c> a ns2:contrast-01 ;
+    ns2:contrast-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> ;
+    ns2:contrast-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g2> a ns11:gas ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g3> a ns11:giant ;
+    ns11:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h2> a ns11:hydrogen ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h3> a ns11:helium ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h5> a ns2:high-02 ;
+    ns2:high-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h6> a ns11:hydrogen ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h7> a ns11:helium ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#ii> a ns11:ice ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#l> a ns11:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m2> a ns11:main ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m3> a ns2:melt-01 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m5> a ns11:methane ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m6> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Saturn" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p3> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Uranus" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p4> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Neptune" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p5> a ns11:point ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#v> a ns11:volatile ;
+    ns11:example <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#w> a ns11:water ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:call-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:contrast-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:high-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:melt-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:relative-05 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:ammonia a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:gas a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:ice a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:main a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:methane a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:point a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:substance a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:volatile a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:water a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:compose-01 ;
+    :label "compose-01" .
+
+:concept_giant rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:giant ;
+    :label "giant" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_helium rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:helium ;
+    :label "helium" .
+
+:concept_hydrogen rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:hydrogen ;
+    :label "hydrogen" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_compose-01_c3 a :AMR_Leaf ;
+    :edge_c3_a3 :leaf_and_a3 ;
+    :edge_c3_m6 :leaf_most_m6 ;
+    :edge_c3_s :leaf_substance_s ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c3 .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_a :leaf_and_a ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m :leaf_most_m ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_have-degree-91_h4 a :AMR_Leaf ;
+    :edge_h4_a4 :leaf_and_a4 ;
+    :edge_h4_h5 :leaf_high-02_h5 ;
+    :edge_h4_m4 :leaf_more_m4 ;
+    :edge_h4_s :leaf_substance_s ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h4 .
+
+:leaf_relative-05_r a :AMR_Leaf ;
+    :edge_r_m4 :leaf_more_m4 ;
+    :hasConcept :concept_relative-05 ;
+    :hasVariable :variable_r .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:value_Jupiter a :AMR_Value ;
+    rdfs:label "Jupiter" .
+
+:value_Neptune a :AMR_Value ;
+    rdfs:label "Neptune" .
+
+:value_Saturn a :AMR_Value ;
+    rdfs:label "Saturn" .
+
+:value_Uranus a :AMR_Value ;
+    rdfs:label "Uranus" .
+
+<https://tenet.tetras-libre.fr/extract-result#call> a owl:ObjectProperty ;
+    rdfs:label "call" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#compose> a owl:ObjectProperty ;
+    rdfs:label "compose" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#gas-giant> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#giant> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#giant> a owl:Class ;
+    rdfs:label "giant" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#helium> a owl:Class ;
+    rdfs:label "helium" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#hydrogen> a owl:Class ;
+    rdfs:label "hydrogen" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#volatile> a owl:Class ;
+    rdfs:label "volatile" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-08" .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_more_m4 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:composeFrom net:atomProperty_more_m4 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasClassName "more" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "more" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_substance_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_substance_s ;
+    net:coverNode :leaf_substance_s ;
+    net:hasClassName "substance" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "substance" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:phenomena_conjunction-AND_a4 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_hydrogen_h6 ;
+    :role_op2 net:atomClass_helium_h7 ;
+    net:coverBaseNode :leaf_and_a4 ;
+    net:coverNode :leaf_and_a4 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:restriction_call-volatile_c4 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_volatile_v,
+        net:atomProperty_call_c4 ;
+    net:coverBaseNode :leaf_call-01_c4 ;
+    net:coverNode :leaf_call-01_c4,
+        :leaf_volatile_v ;
+    net:hasNaming "call-volatile" ;
+    net:hasRestrictionNetValue net:atomClass_volatile_v ;
+    net:hasRestrictionOnProperty net:atomProperty_call_c4 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:value_Jupiter_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Jupiter ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:hasValueLabel "Jupiter" .
+
+net:value_Neptune_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Neptune ;
+    net:hasNaming "Neptune" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:hasValueLabel "Neptune" .
+
+net:value_Saturn_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Saturn ;
+    net:hasNaming "Saturn" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:hasValueLabel "Saturn" .
+
+net:value_Uranus_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Uranus ;
+    net:hasNaming "Uranus" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:hasValueLabel "Uranus" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p3> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h6> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h7> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> a ns11:giant ;
+    ns11:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> a ns11:substance ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:compose-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:giant a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:helium a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:hydrogen a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_ammonia_a6 a :AMR_Leaf ;
+    :hasConcept :concept_ammonia ;
+    :hasVariable :variable_a6 .
+
+:leaf_and_a5 a :AMR_Leaf ;
+    :edge_a5_a6 :leaf_ammonia_a6 ;
+    :edge_a5_m5 :leaf_methane_m5 ;
+    :edge_a5_w :leaf_water_w ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a5 .
+
+:leaf_contrast-01_c a :AMR_Leaf ;
+    :edge_c_g :leaf_giant_g ;
+    :edge_c_g3 :leaf_giant_g3 ;
+    :hasConcept :concept_contrast-01 ;
+    :hasVariable :variable_c .
+
+:leaf_high-02_h5 a :AMR_Leaf ;
+    :edge_h5_p5 :leaf_point_p5 ;
+    :hasConcept :concept_high-02 ;
+    :hasVariable :variable_h5 .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_melt-01_m3 a :AMR_Leaf ;
+    :hasConcept :concept_melt-01 ;
+    :hasVariable :variable_m3 .
+
+:leaf_methane_m5 a :AMR_Leaf ;
+    :hasConcept :concept_methane ;
+    :hasVariable :variable_m5 .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_water_w a :AMR_Leaf ;
+    :hasConcept :concept_water ;
+    :hasVariable :variable_w .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_giant_g3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:phenomena_conjunction-AND_a3 ;
+    :role_mod net:atomClass_ice_ii ;
+    net:coverBaseNode :leaf_giant_g3 ;
+    net:coverNode :leaf_giant_g3 ;
+    net:hasClassName "giant" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Saturn_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_planet_p3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Uranus_blankNode ;
+    net:coverBaseNode :leaf_planet_p3 ;
+    net:coverNode :leaf_planet_p3 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_planet_p4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Neptune_blankNode ;
+    net:coverBaseNode :leaf_planet_p4 ;
+    net:coverNode :leaf_planet_p4 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomProperty_more_m4 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:phenomena_conjunction-AND_a3 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_planet_p3,
+        net:individual_Uranus_p3 ;
+    :role_op2 net:atomClass_planet_p4,
+        net:individual_Neptune_p4 ;
+    net:coverBaseNode :leaf_and_a3 ;
+    net:coverNode :leaf_and_a3 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_p :leaf_planet_p ;
+    :edge_a_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_h2 :leaf_hydrogen_h2 ;
+    :edge_a2_h3 :leaf_helium_h3 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_main_m2 a :AMR_Leaf ;
+    :hasConcept :concept_main ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m6 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m6 .
+
+:leaf_point_p5 a :AMR_Leaf ;
+    :edge_p5_m3 :leaf_melt-01_m3 ;
+    :hasConcept :concept_point ;
+    :hasVariable :variable_p5 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_giant_g a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:phenomena_conjunction-AND_a ;
+    :role_mod net:atomClass_gas_g2 ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasClassName "giant" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomProperty_call_c4 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_helium_h7,
+        net:atomClass_hydrogen_h6,
+        net:phenomena_conjunction-AND_a4 ;
+    :role_ARG2 net:atomClass_volatile_v ;
+    net:coverBaseNode :leaf_call-01_c4 ;
+    net:coverNode :leaf_call-01_c4 ;
+    net:hasNaming "call" ;
+    net:hasPropertyName "call" ;
+    net:hasPropertyName01 "calling" ;
+    net:hasPropertyName10 "call-by" ;
+    net:hasPropertyName12 "call-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a4,
+        :leaf_volatile_v .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:leaf_and_a3 a :AMR_Leaf ;
+    :edge_a3_p3 :leaf_planet_p3 ;
+    :edge_a3_p4 :leaf_planet_p4 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a3 .
+
+:leaf_and_a4 a :AMR_Leaf ;
+    :edge_a4_h6 :leaf_hydrogen_h6 ;
+    :edge_a4_h7 :leaf_helium_h7 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a4 .
+
+:leaf_giant_g3 a :AMR_Leaf ;
+    :edge_g3_a3 :leaf_and_a3 ;
+    :edge_g3_ii :leaf_ice_ii ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g3 .
+
+:leaf_helium_h3 a :AMR_Leaf ;
+    :hasConcept :concept_helium ;
+    :hasVariable :variable_h3 .
+
+:leaf_helium_h7 a :AMR_Leaf ;
+    :hasConcept :concept_helium ;
+    :hasVariable :variable_h7 .
+
+:leaf_hydrogen_h2 a :AMR_Leaf ;
+    :hasConcept :concept_hydrogen ;
+    :hasVariable :variable_h2 .
+
+:leaf_hydrogen_h6 a :AMR_Leaf ;
+    :hasConcept :concept_hydrogen ;
+    :hasVariable :variable_h6 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Jupiter :value_Jupiter ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Saturn :value_Saturn ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_planet_p3 a :AMR_Leaf ;
+    :edge_p3_name_Uranus :value_Uranus ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p3 .
+
+:leaf_planet_p4 a :AMR_Leaf ;
+    :edge_p4_name_Neptune :value_Neptune ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p4 .
+
+:leaf_substance_s a :AMR_Leaf ;
+    :hasConcept :concept_substance ;
+    :hasVariable :variable_s .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_helium_h3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_helium_h3 ;
+    net:coverNode :leaf_helium_h3 ;
+    net:hasClassName "helium" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "helium" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_helium_h7 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_helium_h7 ;
+    net:coverNode :leaf_helium_h7 ;
+    net:hasClassName "helium" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "helium" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_hydrogen_h2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_hydrogen_h2 ;
+    net:coverNode :leaf_hydrogen_h2 ;
+    net:hasClassName "hydrogen" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "hydrogen" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_hydrogen_h6 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_hydrogen_h6 ;
+    net:coverNode :leaf_hydrogen_h6 ;
+    net:hasClassName "hydrogen" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "hydrogen" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_ice_ii a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_ice_ii ;
+    net:coverNode :leaf_ice_ii ;
+    net:hasClassName "ice" ;
+    net:hasNaming "ice" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_volatile_v a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_volatile_v ;
+    net:coverNode :leaf_volatile_v ;
+    net:hasClassName "volatile" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "volatile" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_planet_p,
+        net:individual_Jupiter_p ;
+    :role_op2 net:atomClass_planet_p2,
+        net:individual_Saturn_p2 ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_call-01_c4 a :AMR_Leaf ;
+    :edge_c4_a4 :leaf_and_a4 ;
+    :edge_c4_v :leaf_volatile_v ;
+    :hasConcept :concept_call-01 ;
+    :hasVariable :variable_c4 .
+
+:leaf_ice_ii a :AMR_Leaf ;
+    :hasConcept :concept_ice ;
+    :hasVariable :variable_ii .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_compose_c2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_giant_g,
+        net:compositeClass_gas-giant_g ;
+    :role_ARG2 net:atomClass_helium_h3,
+        net:atomClass_hydrogen_h2,
+        net:phenomena_conjunction-AND_a2 ;
+    :role_mod net:atomClass_main_m2 ;
+    net:coverBaseNode :leaf_compose-01_c2 ;
+    net:coverNode :leaf_compose-01_c2 ;
+    net:hasNaming "compose" ;
+    net:hasPropertyName "compose" ;
+    net:hasPropertyName01 "composeing" ;
+    net:hasPropertyName10 "compose-by" ;
+    net:hasPropertyName12 "compose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2,
+        :leaf_giant_g,
+        :leaf_main_m2 .
+
+net:compositeClass_gas-giant_g a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:phenomena_conjunction-AND_a ;
+    :role_mod net:atomClass_gas_g2 ;
+    net:composeFrom net:atomClass_gas_g2,
+        net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_gas_g2,
+        :leaf_giant_g ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_giant_g ;
+    net:hasNaming "gas-giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_volatile_v a :AMR_Leaf ;
+    :edge_v_a5 :leaf_and_a5 ;
+    :hasConcept :concept_volatile ;
+    :hasVariable :variable_v .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+net:atomClass_gas_g2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_gas_g2 ;
+    net:coverNode :leaf_gas_g2 ;
+    net:hasClassName "gas" ;
+    net:hasNaming "gas" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+:leaf_compose-01_c2 a :AMR_Leaf ;
+    :edge_c2_a2 :leaf_and_a2 ;
+    :edge_c2_g :leaf_giant_g ;
+    :edge_c2_m2 :leaf_main_m2 ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_gas_g2 a :AMR_Leaf ;
+    :hasConcept :concept_gas ;
+    :hasVariable :variable_g2 .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:leaf_giant_g a :AMR_Leaf ;
+    :edge_g_a :leaf_and_a ;
+    :edge_g_g2 :leaf_gas_g2 ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..0419ef3474661e5053b4e15d649001e87472e547
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1637 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:call-01.ARG1 a ns2:FrameRole .
+
+ns2:call-01.ARG2 a ns2:FrameRole .
+
+ns2:compose-01.ARG1 a ns2:FrameRole .
+
+ns2:compose-01.ARG2 a ns2:FrameRole .
+
+ns2:contrast-01.ARG1 a ns2:FrameRole .
+
+ns2:contrast-01.ARG2 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG1 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG2 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG3 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG4 a ns2:FrameRole .
+
+ns2:high-02.ARG1 a ns2:FrameRole .
+
+ns2:relative-05.ARG2 a ns2:FrameRole .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:example a ns3:Role .
+
+ns11:mod a ns3:Role .
+
+ns11:op1 a ns3:Role .
+
+ns11:op2 a ns3:Role .
+
+ns11:op3 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_h2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_h3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a3_p3 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a3_p4 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a4_h6 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a4_h7 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a5_a6 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a5_m5 a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a5_w a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_c2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c2_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c2_m2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_a3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c3_m6 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c4_a4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c4_v a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_g3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_g3_a3 a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_g3_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_g_a a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_g_g2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_h4_a4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h4_h5 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h4_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h4_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h5_p5 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_p2_name_Saturn a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p3_name_Uranus a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p4_name_Neptune a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p5_m3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_name_Jupiter a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_r_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_v_a5 a :AMR_Edge ;
+    :hasRoleID "example" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_call-01_c4 a :AMR_Leaf ;
+    :edge_c4_a4 :leaf_and_a4 ;
+    :edge_c4_v :leaf_volatile_v ;
+    :hasConcept :concept_call-01 ;
+    :hasVariable :variable_c4 .
+
+:leaf_compose-01_c2 a :AMR_Leaf ;
+    :edge_c2_a2 :leaf_and_a2 ;
+    :edge_c2_g :leaf_giant_g ;
+    :edge_c2_m2 :leaf_main_m2 ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_compose-01_c3 a :AMR_Leaf ;
+    :edge_c3_a3 :leaf_and_a3 ;
+    :edge_c3_m6 :leaf_most_m6 ;
+    :edge_c3_s :leaf_substance_s ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c3 .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_a :leaf_and_a ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m :leaf_most_m ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_have-degree-91_h4 a :AMR_Leaf ;
+    :edge_h4_a4 :leaf_and_a4 ;
+    :edge_h4_h5 :leaf_high-02_h5 ;
+    :edge_h4_m4 :leaf_more_m4 ;
+    :edge_h4_s :leaf_substance_s ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h4 .
+
+:leaf_relative-05_r a :AMR_Leaf ;
+    :edge_r_m4 :leaf_more_m4 ;
+    :hasConcept :concept_relative-05 ;
+    :hasVariable :variable_r .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-08 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#root01> ;
+    :hasRootLeaf :leaf_contrast-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-08" ;
+    :hasSentenceStatement "The two largest planets, Jupiter and Saturn, are gas giants, being composed mainly of hydrogen and helium; the two outermost planets, Uranus and Neptune, are ice giants, being composed mostly of substances with relatively high melting points compared with hydrogen and helium, called volatiles, such as water, ammonia and methane." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c2> a ns2:compose-01 ;
+    ns2:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> ;
+    ns2:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a2> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c3> a ns2:compose-01 ;
+    ns2:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> ;
+    ns2:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m6> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c4> a ns2:call-01 ;
+    ns2:call-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> ;
+    ns2:call-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#v> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h> a ns2:have-degree-91 ;
+    ns2:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> ;
+    ns2:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#l> ;
+    ns2:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h4> a ns2:have-degree-91 ;
+    ns2:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> ;
+    ns2:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h5> ;
+    ns2:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> ;
+    ns2:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#r> a ns2:relative-05 ;
+    ns2:relative-05.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-08" ;
+    ns3:has-sentence "The two largest planets, Jupiter and Saturn, are gas giants, being composed mainly of hydrogen and helium; the two outermost planets, Uranus and Neptune, are ice giants, being composed mostly of substances with relatively high melting points compared with hydrogen and helium, called volatiles, such as water, ammonia and methane." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_ammonia rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:ammonia ;
+    :label "ammonia" .
+
+:concept_call-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:call-01 ;
+    :label "call-01" .
+
+:concept_contrast-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:contrast-01 ;
+    :hasPhenomenaLink :phenomena_conjunction ;
+    :label "contrast-01" .
+
+:concept_gas rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:gas ;
+    :label "gas" .
+
+:concept_high-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:high-02 ;
+    :label "high-02" .
+
+:concept_ice rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:ice ;
+    :label "ice" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:large ;
+    :label "large" .
+
+:concept_main rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:main ;
+    :label "main" .
+
+:concept_melt-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:melt-01 ;
+    :label "melt-01" .
+
+:concept_methane rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:methane ;
+    :label "methane" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_point rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:point ;
+    :label "point" .
+
+:concept_relative-05 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:relative-05 ;
+    :label "relative-05" .
+
+:concept_substance rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:substance ;
+    :label "substance" .
+
+:concept_volatile rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:volatile ;
+    :label "volatile" .
+
+:concept_water rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:water ;
+    :label "water" .
+
+:leaf_ammonia_a6 a :AMR_Leaf ;
+    :hasConcept :concept_ammonia ;
+    :hasVariable :variable_a6 .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_h2 :leaf_hydrogen_h2 ;
+    :edge_a2_h3 :leaf_helium_h3 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_and_a5 a :AMR_Leaf ;
+    :edge_a5_a6 :leaf_ammonia_a6 ;
+    :edge_a5_m5 :leaf_methane_m5 ;
+    :edge_a5_w :leaf_water_w ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a5 .
+
+:leaf_contrast-01_c a :AMR_Leaf ;
+    :edge_c_g :leaf_giant_g ;
+    :edge_c_g3 :leaf_giant_g3 ;
+    :hasConcept :concept_contrast-01 ;
+    :hasVariable :variable_c .
+
+:leaf_gas_g2 a :AMR_Leaf ;
+    :hasConcept :concept_gas ;
+    :hasVariable :variable_g2 .
+
+:leaf_giant_g3 a :AMR_Leaf ;
+    :edge_g3_a3 :leaf_and_a3 ;
+    :edge_g3_ii :leaf_ice_ii ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g3 .
+
+:leaf_helium_h3 a :AMR_Leaf ;
+    :hasConcept :concept_helium ;
+    :hasVariable :variable_h3 .
+
+:leaf_helium_h7 a :AMR_Leaf ;
+    :hasConcept :concept_helium ;
+    :hasVariable :variable_h7 .
+
+:leaf_high-02_h5 a :AMR_Leaf ;
+    :edge_h5_p5 :leaf_point_p5 ;
+    :hasConcept :concept_high-02 ;
+    :hasVariable :variable_h5 .
+
+:leaf_hydrogen_h2 a :AMR_Leaf ;
+    :hasConcept :concept_hydrogen ;
+    :hasVariable :variable_h2 .
+
+:leaf_hydrogen_h6 a :AMR_Leaf ;
+    :hasConcept :concept_hydrogen ;
+    :hasVariable :variable_h6 .
+
+:leaf_ice_ii a :AMR_Leaf ;
+    :hasConcept :concept_ice ;
+    :hasVariable :variable_ii .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_main_m2 a :AMR_Leaf ;
+    :hasConcept :concept_main ;
+    :hasVariable :variable_m2 .
+
+:leaf_melt-01_m3 a :AMR_Leaf ;
+    :hasConcept :concept_melt-01 ;
+    :hasVariable :variable_m3 .
+
+:leaf_methane_m5 a :AMR_Leaf ;
+    :hasConcept :concept_methane ;
+    :hasVariable :variable_m5 .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_most_m6 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m6 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Jupiter :value_Jupiter ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Saturn :value_Saturn ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_planet_p3 a :AMR_Leaf ;
+    :edge_p3_name_Uranus :value_Uranus ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p3 .
+
+:leaf_planet_p4 a :AMR_Leaf ;
+    :edge_p4_name_Neptune :value_Neptune ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p4 .
+
+:leaf_point_p5 a :AMR_Leaf ;
+    :edge_p5_m3 :leaf_melt-01_m3 ;
+    :hasConcept :concept_point ;
+    :hasVariable :variable_p5 .
+
+:leaf_volatile_v a :AMR_Leaf ;
+    :edge_v_a5 :leaf_and_a5 ;
+    :hasConcept :concept_volatile ;
+    :hasVariable :variable_v .
+
+:leaf_water_w a :AMR_Leaf ;
+    :hasConcept :concept_water ;
+    :hasVariable :variable_w .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:value_Jupiter a :AMR_Value ;
+    rdfs:label "Jupiter" .
+
+:value_Neptune a :AMR_Value ;
+    rdfs:label "Neptune" .
+
+:value_Saturn a :AMR_Value ;
+    rdfs:label "Saturn" .
+
+:value_Uranus a :AMR_Value ;
+    rdfs:label "Uranus" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a2> ;
+    :label "a2" .
+
+:variable_a3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> ;
+    :label "a3" .
+
+:variable_a4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> ;
+    :label "a4" .
+
+:variable_a5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a5> ;
+    :label "a5" .
+
+:variable_a6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a6> ;
+    :label "a6" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c2> ;
+    :label "c2" .
+
+:variable_c3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c3> ;
+    :label "c3" .
+
+:variable_c4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c4> ;
+    :label "c4" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> ;
+    :label "g" .
+
+:variable_g2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g2> ;
+    :label "g2" .
+
+:variable_g3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g3> ;
+    :label "g3" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h2> ;
+    :label "h2" .
+
+:variable_h3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h3> ;
+    :label "h3" .
+
+:variable_h4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h4> ;
+    :label "h4" .
+
+:variable_h5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h5> ;
+    :label "h5" .
+
+:variable_h6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h6> ;
+    :label "h6" .
+
+:variable_h7 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h7> ;
+    :label "h7" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> ;
+    :label "m4" .
+
+:variable_m5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m5> ;
+    :label "m5" .
+
+:variable_m6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m6> ;
+    :label "m6" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p> ;
+    :label "p" ;
+    :name "Jupiter" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p2> ;
+    :label "p2" ;
+    :name "Saturn" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p3> ;
+    :label "p3" ;
+    :name "Uranus" .
+
+:variable_p4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p4> ;
+    :label "p4" ;
+    :name "Neptune" .
+
+:variable_p5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p5> ;
+    :label "p5" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> ;
+    :label "s" .
+
+:variable_v a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#v> ;
+    :label "v" .
+
+:variable_w a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#w> ;
+    :label "w" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a2> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a5> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#w> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a6> ;
+    ns11:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a6> a ns11:ammonia ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c> a ns2:contrast-01 ;
+    ns2:contrast-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> ;
+    ns2:contrast-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g2> a ns11:gas ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g3> a ns11:giant ;
+    ns11:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h2> a ns11:hydrogen ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h3> a ns11:helium ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h5> a ns2:high-02 ;
+    ns2:high-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h6> a ns11:hydrogen ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h7> a ns11:helium ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#ii> a ns11:ice ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#l> a ns11:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m2> a ns11:main ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m3> a ns2:melt-01 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m5> a ns11:methane ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m6> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Saturn" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p3> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Uranus" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p4> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Neptune" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p5> a ns11:point ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#v> a ns11:volatile ;
+    ns11:example <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#w> a ns11:water ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:call-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:contrast-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:high-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:melt-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:relative-05 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:ammonia a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:gas a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:ice a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:main a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:methane a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:point a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:substance a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:volatile a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:water a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:compose-01 ;
+    :label "compose-01" .
+
+:concept_giant rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:giant ;
+    :label "giant" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_helium rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:helium ;
+    :label "helium" .
+
+:concept_hydrogen rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:hydrogen ;
+    :label "hydrogen" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_p :leaf_planet_p ;
+    :edge_a_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_and_a3 a :AMR_Leaf ;
+    :edge_a3_p3 :leaf_planet_p3 ;
+    :edge_a3_p4 :leaf_planet_p4 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a3 .
+
+:leaf_and_a4 a :AMR_Leaf ;
+    :edge_a4_h6 :leaf_hydrogen_h6 ;
+    :edge_a4_h7 :leaf_helium_h7 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a4 .
+
+:leaf_giant_g a :AMR_Leaf ;
+    :edge_g_a :leaf_and_a ;
+    :edge_g_g2 :leaf_gas_g2 ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_substance_s a :AMR_Leaf ;
+    :hasConcept :concept_substance ;
+    :hasVariable :variable_s .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p3> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h6> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h7> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> a ns11:giant ;
+    ns11:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> a ns11:substance ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:compose-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:giant a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:helium a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:hydrogen a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..925d090822dc4ce59f34bf5caae9183e224d3011
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,2274 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:call-01.ARG1 a ns2:FrameRole .
+
+ns2:call-01.ARG2 a ns2:FrameRole .
+
+ns2:compose-01.ARG1 a ns2:FrameRole .
+
+ns2:compose-01.ARG2 a ns2:FrameRole .
+
+ns2:contrast-01.ARG1 a ns2:FrameRole .
+
+ns2:contrast-01.ARG2 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG1 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG2 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG3 a ns2:FrameRole .
+
+ns2:have-degree-91.ARG4 a ns2:FrameRole .
+
+ns2:high-02.ARG1 a ns2:FrameRole .
+
+ns2:relative-05.ARG2 a ns2:FrameRole .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:example a ns3:Role .
+
+ns11:mod a ns3:Role .
+
+ns11:op1 a ns3:Role .
+
+ns11:op2 a ns3:Role .
+
+ns11:op3 a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:edge_a2_h2 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a2_h3 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a3_p3 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a3_p4 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a4_h6 a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a4_h7 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a5_a6 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_a5_m5 a :AMR_Edge ;
+    :hasAmrRole :role_op3 ;
+    :hasRoleID "op3" .
+
+:edge_a5_w a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p a :AMR_Edge ;
+    :hasAmrRole :role_op1 ;
+    :hasRoleID "op1" .
+
+:edge_a_p2 a :AMR_Edge ;
+    :hasAmrRole :role_op2 ;
+    :hasRoleID "op2" .
+
+:edge_c2_a2 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c2_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c2_m2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_a3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c3_m6 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_c3_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c4_a4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c4_v a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_g a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c_g3 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_g3_a3 a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_g3_ii a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_g_a a :AMR_Edge ;
+    :hasAmrRole :role_domain ;
+    :hasRoleID "domain" .
+
+:edge_g_g2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_h4_a4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG4 ;
+    :hasRoleID "ARG4" .
+
+:edge_h4_h5 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h4_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_h4_s a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h5_p5 a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_a a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_h_l a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_h_m a :AMR_Edge ;
+    :hasAmrRole :role_ARG3 ;
+    :hasRoleID "ARG3" .
+
+:edge_p2_name_Saturn a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p3_name_Uranus a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p4_name_Neptune a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_p5_m3 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_name_Jupiter a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:edge_r_m4 a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_v_a5 a :AMR_Edge ;
+    :hasRoleID "example" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:root_WikiAbstract-SolarSystem-08 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#root01> ;
+    :hasRootLeaf :leaf_contrast-01_c ;
+    :hasSentenceID "WikiAbstract-SolarSystem-08" ;
+    :hasSentenceStatement "The two largest planets, Jupiter and Saturn, are gas giants, being composed mainly of hydrogen and helium; the two outermost planets, Uranus and Neptune, are ice giants, being composed mostly of substances with relatively high melting points compared with hydrogen and helium, called volatiles, such as water, ammonia and methane." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_compose_c3 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_planet_p3,
+        net:atomClass_planet_p4,
+        net:phenomena_conjunction-AND_a3 ;
+    :role_ARG2 net:atomClass_substance_s ;
+    :role_mod net:atomProperty_most_m6 ;
+    net:coverBaseNode :leaf_compose-01_c3 ;
+    net:coverNode :leaf_compose-01_c3 ;
+    net:hasNaming "compose" ;
+    net:hasPropertyName "compose" ;
+    net:hasPropertyName01 "composeing" ;
+    net:hasPropertyName10 "compose-by" ;
+    net:hasPropertyName12 "compose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a3,
+        :leaf_most_m6,
+        :leaf_substance_s .
+
+net:atomProperty_relative_r a net:Atom_Property_Net ;
+    :role_ARG2 net:atomClass_more_m4,
+        net:atomProperty_more_m4 ;
+    net:coverBaseNode :leaf_relative-05_r ;
+    net:coverNode :leaf_relative-05_r ;
+    net:hasNaming "relative" ;
+    net:hasPropertyName "relative" ;
+    net:hasPropertyName01 "relativeing" ;
+    net:hasPropertyName10 "relative-by" ;
+    net:hasPropertyName12 "relative-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_more_m4 .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_gas-giant-compose-helium_g a net:Composite_Class_Net ;
+    :role_domain net:phenomena_conjunction-AND_a ;
+    :role_mod net:atomClass_gas_g2 ;
+    net:composeFrom net:atomClass_helium_h3,
+        net:atomProperty_compose_c2,
+        net:compositeClass_gas-giant_g ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_compose-01_c2,
+        :leaf_gas_g2,
+        :leaf_giant_g,
+        :leaf_helium_h3 ;
+    net:hasMotherClassNet net:compositeClass_gas-giant_g ;
+    net:hasNaming "gas-giant-compose-helium" ;
+    net:hasRestriction net:restriction_compose-helium_c2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:compositeClass_gas-giant-compose-hydrogen_g a net:Composite_Class_Net ;
+    :role_domain net:phenomena_conjunction-AND_a ;
+    :role_mod net:atomClass_gas_g2 ;
+    net:composeFrom net:atomClass_hydrogen_h2,
+        net:atomProperty_compose_c2,
+        net:compositeClass_gas-giant_g ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_compose-01_c2,
+        :leaf_gas_g2,
+        :leaf_giant_g,
+        :leaf_hydrogen_h2 ;
+    net:hasMotherClassNet net:compositeClass_gas-giant_g ;
+    net:hasNaming "gas-giant-compose-hydrogen" ;
+    net:hasRestriction net:restriction_compose-hydrogen_c2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:compositeClass_helium-call-volatile_h7 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_helium_h7,
+        net:atomClass_volatile_v,
+        net:atomProperty_call_c4 ;
+    net:coverBaseNode :leaf_helium_h7 ;
+    net:coverNode :leaf_call-01_c4,
+        :leaf_helium_h7,
+        :leaf_volatile_v ;
+    net:hasMotherClassNet net:atomClass_helium_h7 ;
+    net:hasNaming "helium-call-volatile" ;
+    net:hasRestriction net:restriction_call-volatile_c4 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:compositeClass_hydrogen-call-volatile_h6 a net:Composite_Class_Net ;
+    net:composeFrom net:atomClass_hydrogen_h6,
+        net:atomClass_volatile_v,
+        net:atomProperty_call_c4 ;
+    net:coverBaseNode :leaf_hydrogen_h6 ;
+    net:coverNode :leaf_call-01_c4,
+        :leaf_hydrogen_h6,
+        :leaf_volatile_v ;
+    net:hasMotherClassNet net:atomClass_hydrogen_h6 ;
+    net:hasNaming "hydrogen-call-volatile" ;
+    net:hasRestriction net:restriction_call-volatile_c4 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_gas_g2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_gas_g2 ;
+    net:coverBaseNode :leaf_gas_g2 ;
+    net:coverNode :leaf_gas_g2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "gas" ;
+    net:hasMotherClassNet net:atomClass_gas_g2 ;
+    net:hasNaming "gas" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:individual_ice_ii a net:Individual_Net ;
+    net:composeFrom net:atomClass_ice_ii ;
+    net:coverBaseNode :leaf_ice_ii ;
+    net:coverNode :leaf_ice_ii ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "ice" ;
+    net:hasMotherClassNet net:atomClass_ice_ii ;
+    net:hasNaming "ice" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:phenomena_conjunction-AND_a5 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_water_w ;
+    :role_op2 net:atomClass_ammonia_a6 ;
+    :role_op3 net:atomClass_methane_m5 ;
+    net:coverBaseNode :leaf_and_a5 ;
+    net:coverNode :leaf_and_a5 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:phenomena_conjunction_c a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_giant_g,
+        net:compositeClass_gas-giant_g ;
+    :role_ARG2 net:atomClass_giant_g3,
+        net:compositeClass_ice-giant_g3 ;
+    net:coverBaseNode :leaf_contrast-01_c ;
+    net:coverNode :leaf_contrast-01_c ;
+    net:hasNaming "conjunction" ;
+    net:hasPhenomenaRef "contrast-01" ;
+    net:hasPhenomenaType :phenomena_conjunction ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:phenomena_degree_h a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_planet_p,
+        net:atomClass_planet_p2,
+        net:phenomena_conjunction-AND_a ;
+    :role_ARG2 net:atomClass_large_l ;
+    :role_ARG3 net:atomProperty_most_m ;
+    net:coverBaseNode :leaf_have-degree-91_h ;
+    net:coverNode :leaf_have-degree-91_h ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:phenomena_degree_h4 a net:Phenomena_Net ;
+    :role_ARG1 net:atomClass_substance_s ;
+    :role_ARG2 net:atomProperty_high_h5 ;
+    :role_ARG3 net:atomClass_more_m4,
+        net:atomProperty_more_m4 ;
+    :role_ARG4 net:atomClass_helium_h7,
+        net:atomClass_hydrogen_h6,
+        net:phenomena_conjunction-AND_a4 ;
+    net:coverBaseNode :leaf_have-degree-91_h4 ;
+    net:coverNode :leaf_have-degree-91_h4 ;
+    net:hasNaming "degree" ;
+    net:hasPhenomenaRef "have-degree-91" ;
+    net:hasPhenomenaType :phenomena_degree ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c2> a ns2:compose-01 ;
+    ns2:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> ;
+    ns2:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a2> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c3> a ns2:compose-01 ;
+    ns2:compose-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> ;
+    ns2:compose-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m6> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c4> a ns2:call-01 ;
+    ns2:call-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> ;
+    ns2:call-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#v> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h> a ns2:have-degree-91 ;
+    ns2:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> ;
+    ns2:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#l> ;
+    ns2:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h4> a ns2:have-degree-91 ;
+    ns2:have-degree-91.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> ;
+    ns2:have-degree-91.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h5> ;
+    ns2:have-degree-91.ARG3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> ;
+    ns2:have-degree-91.ARG4 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#r> a ns2:relative-05 ;
+    ns2:relative-05.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-08" ;
+    ns3:has-sentence "The two largest planets, Jupiter and Saturn, are gas giants, being composed mainly of hydrogen and helium; the two outermost planets, Uranus and Neptune, are ice giants, being composed mostly of substances with relatively high melting points compared with hydrogen and helium, called volatiles, such as water, ammonia and methane." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_ammonia rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:ammonia ;
+    :label "ammonia" .
+
+:concept_call-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:call-01 ;
+    :label "call-01" .
+
+:concept_contrast-01 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:contrast-01 ;
+    :hasPhenomenaLink :phenomena_conjunction ;
+    :label "contrast-01" .
+
+:concept_gas rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:gas ;
+    :label "gas" .
+
+:concept_high-02 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:high-02 ;
+    :label "high-02" .
+
+:concept_ice rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:ice ;
+    :label "ice" .
+
+:concept_large rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:large ;
+    :label "large" .
+
+:concept_main rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:main ;
+    :label "main" .
+
+:concept_melt-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:melt-01 ;
+    :label "melt-01" .
+
+:concept_methane rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:methane ;
+    :label "methane" .
+
+:concept_more rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:more ;
+    :label "more" .
+
+:concept_point rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:point ;
+    :label "point" .
+
+:concept_relative-05 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:relative-05 ;
+    :label "relative-05" .
+
+:concept_substance rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:substance ;
+    :label "substance" .
+
+:concept_volatile rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:volatile ;
+    :label "volatile" .
+
+:concept_water rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:water ;
+    :label "water" .
+
+:role_ARG4 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_op3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a2> ;
+    :label "a2" .
+
+:variable_a3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> ;
+    :label "a3" .
+
+:variable_a4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> ;
+    :label "a4" .
+
+:variable_a5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a5> ;
+    :label "a5" .
+
+:variable_a6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a6> ;
+    :label "a6" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c2> ;
+    :label "c2" .
+
+:variable_c3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c3> ;
+    :label "c3" .
+
+:variable_c4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c4> ;
+    :label "c4" .
+
+:variable_g a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> ;
+    :label "g" .
+
+:variable_g2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g2> ;
+    :label "g2" .
+
+:variable_g3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g3> ;
+    :label "g3" .
+
+:variable_h a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h> ;
+    :label "h" .
+
+:variable_h2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h2> ;
+    :label "h2" .
+
+:variable_h3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h3> ;
+    :label "h3" .
+
+:variable_h4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h4> ;
+    :label "h4" .
+
+:variable_h5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h5> ;
+    :label "h5" .
+
+:variable_h6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h6> ;
+    :label "h6" .
+
+:variable_h7 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h7> ;
+    :label "h7" .
+
+:variable_ii a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#ii> ;
+    :label "ii" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#l> ;
+    :label "l" .
+
+:variable_m a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m> ;
+    :label "m" .
+
+:variable_m2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m2> ;
+    :label "m2" .
+
+:variable_m3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m3> ;
+    :label "m3" .
+
+:variable_m4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> ;
+    :label "m4" .
+
+:variable_m5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m5> ;
+    :label "m5" .
+
+:variable_m6 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m6> ;
+    :label "m6" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p> ;
+    :label "p" ;
+    :name "Jupiter" .
+
+:variable_p2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p2> ;
+    :label "p2" ;
+    :name "Saturn" .
+
+:variable_p3 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p3> ;
+    :label "p3" ;
+    :name "Uranus" .
+
+:variable_p4 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p4> ;
+    :label "p4" ;
+    :name "Neptune" .
+
+:variable_p5 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p5> ;
+    :label "p5" .
+
+:variable_r a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#r> ;
+    :label "r" .
+
+:variable_s a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> ;
+    :label "s" .
+
+:variable_v a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#v> ;
+    :label "v" .
+
+:variable_w a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#w> ;
+    :label "w" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_ammonia_a6 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_ammonia_a6 ;
+    net:coverNode :leaf_ammonia_a6 ;
+    net:hasClassName "ammonia" ;
+    net:hasNaming "ammonia" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_large_l a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_large_l ;
+    net:coverNode :leaf_large_l ;
+    net:hasClassName "large" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "large" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_main_m2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_main_m2 ;
+    net:coverNode :leaf_main_m2 ;
+    net:hasClassName "main" ;
+    net:hasNaming "main" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_methane_m5 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_methane_m5 ;
+    net:coverNode :leaf_methane_m5 ;
+    net:hasClassName "methane" ;
+    net:hasNaming "methane" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_point_p5 a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_mod net:atomProperty_melt_m3 ;
+    net:coverBaseNode :leaf_point_p5 ;
+    net:coverNode :leaf_point_p5 ;
+    net:hasClassName "point" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "point" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_water_w a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_water_w ;
+    net:coverNode :leaf_water_w ;
+    net:hasClassName "water" ;
+    net:hasNaming "water" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomProperty_high_h5 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_point_p5 ;
+    net:coverBaseNode :leaf_high-02_h5 ;
+    net:coverNode :leaf_high-02_h5 ;
+    net:hasNaming "high" ;
+    net:hasPropertyName "high" ;
+    net:hasPropertyName01 "highing" ;
+    net:hasPropertyName10 "high-by" ;
+    net:hasPropertyName12 "high-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_point_p5 .
+
+net:atomProperty_melt_m3 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_melt-01_m3 ;
+    net:coverNode :leaf_melt-01_m3 ;
+    net:hasNaming "melt" ;
+    net:hasPropertyName "melt" ;
+    net:hasPropertyName01 "melting" ;
+    net:hasPropertyName10 "melt-by" ;
+    net:hasPropertyName12 "melt-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m ;
+    net:coverNode :leaf_most_m ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomProperty_most_m6 a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_most_m6 ;
+    net:coverNode :leaf_most_m6 ;
+    net:hasNaming "most" ;
+    net:hasPropertyName "most" ;
+    net:hasPropertyName01 "mosting" ;
+    net:hasPropertyName10 "most-by" ;
+    net:hasPropertyName12 "most-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" .
+
+net:compositeClass_ice-giant_g3 a net:Class_Net,
+        net:Composite_Class_Net ;
+    :role_domain net:phenomena_conjunction-AND_a3 ;
+    :role_mod net:atomClass_ice_ii ;
+    net:composeFrom net:atomClass_giant_g3,
+        net:atomClass_ice_ii ;
+    net:coverBaseNode :leaf_giant_g3 ;
+    net:coverNode :leaf_giant_g3,
+        :leaf_ice_ii ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_giant_g3 ;
+    net:hasNaming "ice-giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_Jupiter_p a net:Individual_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasIndividualLabel "Jupiter" ;
+    net:hasMotherClassNet net:atomClass_planet_p ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:individual_Neptune_p4 a net:Individual_Net ;
+    :role_name net:value_Neptune_blankNode ;
+    net:coverBaseNode :leaf_planet_p4 ;
+    net:coverNode :leaf_planet_p4 ;
+    net:hasIndividualLabel "Neptune" ;
+    net:hasMotherClassNet net:atomClass_planet_p4 ;
+    net:hasNaming "Neptune" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:individual_Saturn_p2 a net:Individual_Net ;
+    :role_name net:value_Saturn_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasIndividualLabel "Saturn" ;
+    net:hasMotherClassNet net:atomClass_planet_p2 ;
+    net:hasNaming "Saturn" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:individual_Uranus_p3 a net:Individual_Net ;
+    :role_name net:value_Uranus_blankNode ;
+    net:coverBaseNode :leaf_planet_p3 ;
+    net:coverNode :leaf_planet_p3 ;
+    net:hasIndividualLabel "Uranus" ;
+    net:hasMotherClassNet net:atomClass_planet_p3 ;
+    net:hasNaming "Uranus" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:phenomena_conjunction-AND_a2 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_hydrogen_h2 ;
+    :role_op2 net:atomClass_helium_h3 ;
+    net:coverBaseNode :leaf_and_a2 ;
+    net:coverNode :leaf_and_a2 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:restriction_compose-helium_c2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_helium_h3,
+        net:atomProperty_compose_c2 ;
+    net:coverBaseNode :leaf_compose-01_c2 ;
+    net:coverNode :leaf_compose-01_c2,
+        :leaf_helium_h3 ;
+    net:hasNaming "compose-helium" ;
+    net:hasRestrictionNetValue net:atomClass_helium_h3 ;
+    net:hasRestrictionOnProperty net:atomProperty_compose_c2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:restriction_compose-hydrogen_c2 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_hydrogen_h2,
+        net:atomProperty_compose_c2 ;
+    net:coverBaseNode :leaf_compose-01_c2 ;
+    net:coverNode :leaf_compose-01_c2,
+        :leaf_hydrogen_h2 ;
+    net:hasNaming "compose-hydrogen" ;
+    net:hasRestrictionNetValue net:atomClass_hydrogen_h2 ;
+    net:hasRestrictionOnProperty net:atomProperty_compose_c2 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a2> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h2> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a5> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#w> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a6> ;
+    ns11:op3 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a6> a ns11:ammonia ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#c> a ns2:contrast-01 ;
+    ns2:contrast-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> ;
+    ns2:contrast-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g2> a ns11:gas ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g3> a ns11:giant ;
+    ns11:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#ii> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h2> a ns11:hydrogen ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h3> a ns11:helium ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h5> a ns2:high-02 ;
+    ns2:high-02.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h6> a ns11:hydrogen ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h7> a ns11:helium ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#ii> a ns11:ice ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#l> a ns11:large ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m2> a ns11:main ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m3> a ns2:melt-01 ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m5> a ns11:methane ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m6> a ns3:most ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Jupiter" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p2> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Saturn" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p3> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Uranus" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p4> a <http://amr.isi.edu/entity-types#planet> ;
+    rdfs:label "Neptune" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p5> a ns11:point ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m3> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#v> a ns11:volatile ;
+    ns11:example <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a5> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#w> a ns11:water ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:call-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:contrast-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:high-02 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:melt-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:relative-05 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:ammonia a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:gas a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:ice a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:large a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:main a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:methane a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:point a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:substance a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:volatile a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:water a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:more a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:concept_compose-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:compose-01 ;
+    :label "compose-01" .
+
+:concept_giant rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:giant ;
+    :label "giant" .
+
+:concept_have-degree-91 rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns2:have-degree-91 ;
+    :hasPhenomenaLink :phenomena_degree ;
+    :label "have-degree-91" .
+
+:concept_helium rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:helium ;
+    :label "helium" .
+
+:concept_hydrogen rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:hydrogen ;
+    :label "hydrogen" .
+
+:concept_most rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:most ;
+    :label "most" .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_compose-01_c3 a :AMR_Leaf ;
+    :edge_c3_a3 :leaf_and_a3 ;
+    :edge_c3_m6 :leaf_most_m6 ;
+    :edge_c3_s :leaf_substance_s ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c3 .
+
+:leaf_have-degree-91_h a :AMR_Leaf ;
+    :edge_h_a :leaf_and_a ;
+    :edge_h_l :leaf_large_l ;
+    :edge_h_m :leaf_most_m ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h .
+
+:leaf_have-degree-91_h4 a :AMR_Leaf ;
+    :edge_h4_a4 :leaf_and_a4 ;
+    :edge_h4_h5 :leaf_high-02_h5 ;
+    :edge_h4_m4 :leaf_more_m4 ;
+    :edge_h4_s :leaf_substance_s ;
+    :hasConcept :concept_have-degree-91 ;
+    :hasVariable :variable_h4 .
+
+:leaf_relative-05_r a :AMR_Leaf ;
+    :edge_r_m4 :leaf_more_m4 ;
+    :hasConcept :concept_relative-05 ;
+    :hasVariable :variable_r .
+
+:role_ARG3 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_domain a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:value_Jupiter a :AMR_Value ;
+    rdfs:label "Jupiter" .
+
+:value_Neptune a :AMR_Value ;
+    rdfs:label "Neptune" .
+
+:value_Saturn a :AMR_Value ;
+    rdfs:label "Saturn" .
+
+:value_Uranus a :AMR_Value ;
+    rdfs:label "Uranus" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_more_m4 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:composeFrom net:atomProperty_more_m4 ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasClassName "more" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "more" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_substance_s a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_substance_s ;
+    net:coverNode :leaf_substance_s ;
+    net:hasClassName "substance" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "substance" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:phenomena_conjunction-AND_a4 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_hydrogen_h6 ;
+    :role_op2 net:atomClass_helium_h7 ;
+    net:coverBaseNode :leaf_and_a4 ;
+    net:coverNode :leaf_and_a4 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:restriction_call-volatile_c4 a net:Restriction_Net ;
+    net:composeFrom net:atomClass_volatile_v,
+        net:atomProperty_call_c4 ;
+    net:coverBaseNode :leaf_call-01_c4 ;
+    net:coverNode :leaf_call-01_c4,
+        :leaf_volatile_v ;
+    net:hasNaming "call-volatile" ;
+    net:hasRestrictionNetValue net:atomClass_volatile_v ;
+    net:hasRestrictionOnProperty net:atomProperty_call_c4 ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:value_Jupiter_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Jupiter ;
+    net:hasNaming "Jupiter" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:hasValueLabel "Jupiter" .
+
+net:value_Neptune_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Neptune ;
+    net:hasNaming "Neptune" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:hasValueLabel "Neptune" .
+
+net:value_Saturn_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Saturn ;
+    net:hasNaming "Saturn" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:hasValueLabel "Saturn" .
+
+net:value_Uranus_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_Uranus ;
+    net:hasNaming "Uranus" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:hasValueLabel "Uranus" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a3> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p3> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#p4> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a4> a ns3:and ;
+    ns11:op1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h6> ;
+    ns11:op2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#h7> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g> a ns11:giant ;
+    ns11:domain <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#a> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#g2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#m4> a ns3:more ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-08#s> a ns11:substance ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:compose-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:have-degree-91 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:giant a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:helium a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:hydrogen a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:most a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_ammonia_a6 a :AMR_Leaf ;
+    :hasConcept :concept_ammonia ;
+    :hasVariable :variable_a6 .
+
+:leaf_and_a5 a :AMR_Leaf ;
+    :edge_a5_a6 :leaf_ammonia_a6 ;
+    :edge_a5_m5 :leaf_methane_m5 ;
+    :edge_a5_w :leaf_water_w ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a5 .
+
+:leaf_contrast-01_c a :AMR_Leaf ;
+    :edge_c_g :leaf_giant_g ;
+    :edge_c_g3 :leaf_giant_g3 ;
+    :hasConcept :concept_contrast-01 ;
+    :hasVariable :variable_c .
+
+:leaf_high-02_h5 a :AMR_Leaf ;
+    :edge_h5_p5 :leaf_point_p5 ;
+    :hasConcept :concept_high-02 ;
+    :hasVariable :variable_h5 .
+
+:leaf_large_l a :AMR_Leaf ;
+    :hasConcept :concept_large ;
+    :hasVariable :variable_l .
+
+:leaf_melt-01_m3 a :AMR_Leaf ;
+    :hasConcept :concept_melt-01 ;
+    :hasVariable :variable_m3 .
+
+:leaf_methane_m5 a :AMR_Leaf ;
+    :hasConcept :concept_methane ;
+    :hasVariable :variable_m5 .
+
+:leaf_most_m a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m .
+
+:leaf_water_w a :AMR_Leaf ;
+    :hasConcept :concept_water ;
+    :hasVariable :variable_w .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_giant_g3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:phenomena_conjunction-AND_a3 ;
+    :role_mod net:atomClass_ice_ii ;
+    net:coverBaseNode :leaf_giant_g3 ;
+    net:coverNode :leaf_giant_g3 ;
+    net:hasClassName "giant" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Jupiter_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_planet_p2 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Saturn_blankNode ;
+    net:coverBaseNode :leaf_planet_p2 ;
+    net:coverNode :leaf_planet_p2 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_planet_p3 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Uranus_blankNode ;
+    net:coverBaseNode :leaf_planet_p3 ;
+    net:coverNode :leaf_planet_p3 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_planet_p4 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_Neptune_blankNode ;
+    net:coverBaseNode :leaf_planet_p4 ;
+    net:coverNode :leaf_planet_p4 ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomProperty_more_m4 a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_more_m4 ;
+    net:coverNode :leaf_more_m4 ;
+    net:hasNaming "more" ;
+    net:hasPropertyName "more" ;
+    net:hasPropertyName01 "moreing" ;
+    net:hasPropertyName10 "more-by" ;
+    net:hasPropertyName12 "more-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:phenomena_conjunction-AND_a3 a net:Phenomena_Net ;
+    :role_op1 net:atomClass_planet_p3,
+        net:individual_Uranus_p3 ;
+    :role_op2 net:atomClass_planet_p4,
+        net:individual_Neptune_p4 ;
+    net:coverBaseNode :leaf_and_a3 ;
+    net:coverNode :leaf_and_a3 ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:leaf_and_a a :AMR_Leaf ;
+    :edge_a_p :leaf_planet_p ;
+    :edge_a_p2 :leaf_planet_p2 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a .
+
+:leaf_and_a2 a :AMR_Leaf ;
+    :edge_a2_h2 :leaf_hydrogen_h2 ;
+    :edge_a2_h3 :leaf_helium_h3 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a2 .
+
+:leaf_main_m2 a :AMR_Leaf ;
+    :hasConcept :concept_main ;
+    :hasVariable :variable_m2 .
+
+:leaf_most_m6 a :AMR_Leaf ;
+    :hasConcept :concept_most ;
+    :hasVariable :variable_m6 .
+
+:leaf_point_p5 a :AMR_Leaf ;
+    :edge_p5_m3 :leaf_melt-01_m3 ;
+    :hasConcept :concept_point ;
+    :hasVariable :variable_p5 .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_giant_g a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:phenomena_conjunction-AND_a ;
+    :role_mod net:atomClass_gas_g2 ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_giant_g ;
+    net:hasClassName "giant" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomProperty_call_c4 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_helium_h7,
+        net:atomClass_hydrogen_h6,
+        net:phenomena_conjunction-AND_a4 ;
+    :role_ARG2 net:atomClass_volatile_v ;
+    net:coverBaseNode :leaf_call-01_c4 ;
+    net:coverNode :leaf_call-01_c4 ;
+    net:hasNaming "call" ;
+    net:hasPropertyName "call" ;
+    net:hasPropertyName01 "calling" ;
+    net:hasPropertyName10 "call-by" ;
+    net:hasPropertyName12 "call-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a4,
+        :leaf_volatile_v .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:concept_and rdfs:subClassOf :AMR_Relation_Concept ;
+    :fromAmrLk ns3:and ;
+    :hasPhenomenaLink :phenomena_conjunction_and ;
+    :label "and" .
+
+:leaf_and_a3 a :AMR_Leaf ;
+    :edge_a3_p3 :leaf_planet_p3 ;
+    :edge_a3_p4 :leaf_planet_p4 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a3 .
+
+:leaf_and_a4 a :AMR_Leaf ;
+    :edge_a4_h6 :leaf_hydrogen_h6 ;
+    :edge_a4_h7 :leaf_helium_h7 ;
+    :hasConcept :concept_and ;
+    :hasVariable :variable_a4 .
+
+:leaf_giant_g3 a :AMR_Leaf ;
+    :edge_g3_a3 :leaf_and_a3 ;
+    :edge_g3_ii :leaf_ice_ii ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g3 .
+
+:leaf_helium_h3 a :AMR_Leaf ;
+    :hasConcept :concept_helium ;
+    :hasVariable :variable_h3 .
+
+:leaf_helium_h7 a :AMR_Leaf ;
+    :hasConcept :concept_helium ;
+    :hasVariable :variable_h7 .
+
+:leaf_hydrogen_h2 a :AMR_Leaf ;
+    :hasConcept :concept_hydrogen ;
+    :hasVariable :variable_h2 .
+
+:leaf_hydrogen_h6 a :AMR_Leaf ;
+    :hasConcept :concept_hydrogen ;
+    :hasVariable :variable_h6 .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_name_Jupiter :value_Jupiter ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_planet_p2 a :AMR_Leaf ;
+    :edge_p2_name_Saturn :value_Saturn ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p2 .
+
+:leaf_planet_p3 a :AMR_Leaf ;
+    :edge_p3_name_Uranus :value_Uranus ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p3 .
+
+:leaf_planet_p4 a :AMR_Leaf ;
+    :edge_p4_name_Neptune :value_Neptune ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p4 .
+
+:leaf_substance_s a :AMR_Leaf ;
+    :hasConcept :concept_substance ;
+    :hasVariable :variable_s .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:atomClass_helium_h3 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_helium_h3 ;
+    net:coverNode :leaf_helium_h3 ;
+    net:hasClassName "helium" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "helium" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_helium_h7 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_helium_h7 ;
+    net:coverNode :leaf_helium_h7 ;
+    net:hasClassName "helium" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "helium" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_hydrogen_h2 a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_hydrogen_h2 ;
+    net:coverNode :leaf_hydrogen_h2 ;
+    net:hasClassName "hydrogen" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "hydrogen" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_hydrogen_h6 a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    net:coverBaseNode :leaf_hydrogen_h6 ;
+    net:coverNode :leaf_hydrogen_h6 ;
+    net:hasClassName "hydrogen" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "hydrogen" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_ice_ii a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_ice_ii ;
+    net:coverNode :leaf_ice_ii ;
+    net:hasClassName "ice" ;
+    net:hasNaming "ice" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:atomClass_volatile_v a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_volatile_v ;
+    net:coverNode :leaf_volatile_v ;
+    net:hasClassName "volatile" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "volatile" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+net:phenomena_conjunction-AND_a a net:Phenomena_Net ;
+    :role_op1 net:atomClass_planet_p,
+        net:individual_Jupiter_p ;
+    :role_op2 net:atomClass_planet_p2,
+        net:individual_Saturn_p2 ;
+    net:coverBaseNode :leaf_and_a ;
+    net:coverNode :leaf_and_a ;
+    net:hasNaming "conjunction-AND" ;
+    net:hasPhenomenaRef "and" ;
+    net:hasPhenomenaType :phenomena_conjunction_and ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+ns3:and a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+:leaf_call-01_c4 a :AMR_Leaf ;
+    :edge_c4_a4 :leaf_and_a4 ;
+    :edge_c4_v :leaf_volatile_v ;
+    :hasConcept :concept_call-01 ;
+    :hasVariable :variable_c4 .
+
+:leaf_ice_ii a :AMR_Leaf ;
+    :hasConcept :concept_ice ;
+    :hasVariable :variable_ii .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_compose_c2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_giant_g,
+        net:compositeClass_gas-giant_g ;
+    :role_ARG2 net:atomClass_helium_h3,
+        net:atomClass_hydrogen_h2,
+        net:phenomena_conjunction-AND_a2 ;
+    :role_mod net:atomClass_main_m2 ;
+    net:coverBaseNode :leaf_compose-01_c2 ;
+    net:coverNode :leaf_compose-01_c2 ;
+    net:hasNaming "compose" ;
+    net:hasPropertyName "compose" ;
+    net:hasPropertyName01 "composeing" ;
+    net:hasPropertyName10 "compose-by" ;
+    net:hasPropertyName12 "compose-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_and_a2,
+        :leaf_giant_g,
+        :leaf_main_m2 .
+
+net:compositeClass_gas-giant_g a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_domain net:phenomena_conjunction-AND_a ;
+    :role_mod net:atomClass_gas_g2 ;
+    net:composeFrom net:atomClass_gas_g2,
+        net:atomClass_giant_g ;
+    net:coverBaseNode :leaf_giant_g ;
+    net:coverNode :leaf_gas_g2,
+        :leaf_giant_g ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_giant_g ;
+    net:hasNaming "gas-giant" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+rdf:Property a owl:Class .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_more_m4 a :AMR_Leaf ;
+    :hasConcept :concept_more ;
+    :hasVariable :variable_m4 .
+
+:leaf_volatile_v a :AMR_Leaf ;
+    :edge_v_a5 :leaf_and_a5 ;
+    :hasConcept :concept_volatile ;
+    :hasVariable :variable_v .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+net:atomClass_gas_g2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_gas_g2 ;
+    net:coverNode :leaf_gas_g2 ;
+    net:hasClassName "gas" ;
+    net:hasNaming "gas" ;
+    net:hasStructure "WikiAbstract-SolarSystem-08" .
+
+:leaf_compose-01_c2 a :AMR_Leaf ;
+    :edge_c2_a2 :leaf_and_a2 ;
+    :edge_c2_g :leaf_giant_g ;
+    :edge_c2_m2 :leaf_main_m2 ;
+    :hasConcept :concept_compose-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_gas_g2 a :AMR_Leaf ;
+    :hasConcept :concept_gas ;
+    :hasVariable :variable_g2 .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:leaf_giant_g a :AMR_Leaf ;
+    :edge_g_a :leaf_and_a ;
+    :edge_g_g2 :leaf_gas_g2 ;
+    :hasConcept :concept_giant ;
+    :hasVariable :variable_g .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..2aa47749cbeb984035f2086bec44d2a9e3ca78c2
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-8/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,164 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#Jupiter> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Jupiter" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#Neptune> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Neptune" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#Saturn> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Saturn" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#Uranus> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#planet> ;
+    rdfs:label "Uranus" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#ammonia> a owl:Class ;
+    rdfs:label "ammonia" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#gas-giant-compose-helium> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#compose> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#helium> ],
+        <https://tenet.tetras-libre.fr/extract-result#gas-giant> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#gas-giant-compose-hydrogen> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#compose> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#hydrogen> ],
+        <https://tenet.tetras-libre.fr/extract-result#gas-giant> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#helium-call-volatile> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#call> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#volatile> ],
+        <https://tenet.tetras-libre.fr/extract-result#helium> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#high> a owl:ObjectProperty ;
+    rdfs:label "high" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#hydrogen-call-volatile> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#call> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#volatile> ],
+        <https://tenet.tetras-libre.fr/extract-result#hydrogen> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#ice-giant> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#giant> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#large> a owl:Class ;
+    rdfs:label "large" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#main> a owl:Class ;
+    rdfs:label "main" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#melt> a owl:ObjectProperty ;
+    rdfs:label "melt" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#methane> a owl:Class ;
+    rdfs:label "methane" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#more> a owl:Class ;
+    rdfs:label "more" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#most> a owl:ObjectProperty ;
+    rdfs:label "most" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#point> a owl:Class ;
+    rdfs:label "point" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#relative> a owl:ObjectProperty ;
+    rdfs:label "relative" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#substance> a owl:Class ;
+    rdfs:label "substance" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#water> a owl:Class ;
+    rdfs:label "water" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#gas> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#gas> ;
+    rdfs:label "gas" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#ice> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#ice> ;
+    rdfs:label "ice" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#call> a owl:ObjectProperty ;
+    rdfs:label "call" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#compose> a owl:ObjectProperty ;
+    rdfs:label "compose" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#gas-giant> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#giant> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#giant> a owl:Class ;
+    rdfs:label "giant" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#helium> a owl:Class ;
+    rdfs:label "helium" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#hydrogen> a owl:Class ;
+    rdfs:label "hydrogen" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
+<https://tenet.tetras-libre.fr/extract-result#volatile> a owl:Class ;
+    rdfs:label "volatile" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-08" .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..eb86eab8b860349c6ce4f3f268f31c177d456da5
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd.ttl
@@ -0,0 +1,836 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c2> a ns2:call-01 ;
+    ns2:call-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    ns2:call-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#t> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#f> a ns2:flat-06 ;
+    ns2:flat-06.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    ns11:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#n> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#l> a ns2:lie-07 ;
+    ns2:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> ;
+    ns2:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-09" ;
+    ns3:has-sentence "All eight planets have almost circular orbits that lie within a nearly flat disc called the ecliptic." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:call-01.ARG1 a ns2:FrameRole .
+
+ns2:call-01.ARG2 a ns2:FrameRole .
+
+ns2:flat-06.ARG1 a ns2:FrameRole .
+
+ns2:lie-07.ARG1 a ns2:FrameRole .
+
+ns2:lie-07.ARG2 a ns2:FrameRole .
+
+ns2:orbit-01.ARG0 a ns2:FrameRole .
+
+ns11:degree a ns3:Role .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:mod a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a> a ns3:all .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a2> a ns11:almost .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c> a ns11:circular ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a2> .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#n> a ns3:near .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a> ;
+    ns11:quant "8" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#t> a <http://amr.isi.edu/entity-types#thing> ;
+    rdfs:label "ecliptic" .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity .
+
+<http://amr.isi.edu/entity-types#thing> a ns3:NamedEntity .
+
+ns2:call-01 a ns3:Frame .
+
+ns2:flat-06 a ns3:Frame .
+
+ns2:lie-07 a ns3:Frame .
+
+ns2:orbit-01 a ns3:Frame .
+
+ns11:almost a ns3:Concept .
+
+ns11:circular a ns3:Concept .
+
+ns11:disc a ns3:Concept .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:all a ns3:Concept .
+
+ns3:near a ns3:Concept .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> a ns2:orbit-01 ;
+    ns2:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#p> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c> .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> a ns11:disc .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Linked_Data a owl:Class .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..70358073607f52095ed56e3e0682af718ecaed88
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_Generation.ttl
@@ -0,0 +1,1390 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:call-01.ARG1 a ns2:FrameRole .
+
+ns2:call-01.ARG2 a ns2:FrameRole .
+
+ns2:flat-06.ARG1 a ns2:FrameRole .
+
+ns2:lie-07.ARG1 a ns2:FrameRole .
+
+ns2:lie-07.ARG2 a ns2:FrameRole .
+
+ns2:orbit-01.ARG0 a ns2:FrameRole .
+
+ns11:degree a ns3:Role .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:mod a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:edge_c2_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c2_t a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_a2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_f_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_f_n a :AMR_Edge ;
+    :hasRoleID "degree" .
+
+:edge_l_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_l_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_c a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_o_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_quant_8 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_name_ecliptic a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-09 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#root01> ;
+    :hasRootLeaf :leaf_orbit-01_o ;
+    :hasSentenceID "WikiAbstract-SolarSystem-09" ;
+    :hasSentenceStatement "All eight planets have almost circular orbits that lie within a nearly flat disc called the ecliptic." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#all> a owl:ObjectProperty ;
+    rdfs:label "all" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#call> a owl:ObjectProperty ;
+    rdfs:label "call" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#circular-orbit-lie-disc> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#lie> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#disc> ],
+        <https://tenet.tetras-libre.fr/extract-result#circular-orbit> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#ecliptic> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#thing> ;
+    rdfs:label "ecliptic" ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#flat> a owl:ObjectProperty ;
+    rdfs:label "flat" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#near> a owl:ObjectProperty ;
+    rdfs:label "near" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_call_c2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_disc_d ;
+    :role_ARG2 net:atomClass_thing_t,
+        net:individual_ecliptic_t ;
+    net:coverBaseNode :leaf_call-01_c2 ;
+    net:coverNode :leaf_call-01_c2 ;
+    net:hasNaming "call" ;
+    net:hasPropertyName "call" ;
+    net:hasPropertyName01 "calling" ;
+    net:hasPropertyName10 "call-by" ;
+    net:hasPropertyName12 "call-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_disc_d,
+        :leaf_thing_t .
+
+net:atomProperty_flat_f a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_flat-06_f ;
+    net:coverNode :leaf_flat-06_f ;
+    net:hasNaming "flat" ;
+    net:hasPropertyName "flat" ;
+    net:hasPropertyName01 "flating" ;
+    net:hasPropertyName10 "flat-by" ;
+    net:hasPropertyName12 "flat-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_disc_d .
+
+net:atomProperty_near_n a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_near_n ;
+    net:coverNode :leaf_near_n ;
+    net:hasNaming "near" ;
+    net:hasPropertyName "near" ;
+    net:hasPropertyName01 "nearing" ;
+    net:hasPropertyName10 "near-by" ;
+    net:hasPropertyName12 "near-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_circular-orbit-lie-disc_o a net:Composite_Class_Net ;
+    :role_ARG0 net:atomClass_planet_p ;
+    :role_mod net:atomClass_circular_c ;
+    net:composeFrom net:atomClass_disc_d,
+        net:atomProperty_lie_l,
+        net:compositeClass_circular-orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_circular_c,
+        :leaf_disc_d,
+        :leaf_lie-07_l,
+        :leaf_orbit-01_o ;
+    net:hasMotherClassNet net:compositeClass_circular-orbit_o ;
+    net:hasNaming "circular-orbit-lie-disc" ;
+    net:hasRestriction net:restriction_lie-disc_l ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_almost_a2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_almost_a2 ;
+    net:coverBaseNode :leaf_almost_a2 ;
+    net:coverNode :leaf_almost_a2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "almost" ;
+    net:hasMotherClassNet net:atomClass_almost_a2 ;
+    net:hasNaming "almost" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:individual_circular_c a net:Individual_Net ;
+    net:composeFrom net:atomClass_circular_c ;
+    net:coverBaseNode :leaf_circular_c ;
+    net:coverNode :leaf_circular_c ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "circular" ;
+    net:hasMotherClassNet net:atomClass_circular_c,
+        net:compositeClass_almost-circular_c ;
+    net:hasNaming "circular" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c2> a ns2:call-01 ;
+    ns2:call-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    ns2:call-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#f> a ns2:flat-06 ;
+    ns2:flat-06.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    ns11:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#n> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#l> a ns2:lie-07 ;
+    ns2:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> ;
+    ns2:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-09" ;
+    ns3:has-sentence "All eight planets have almost circular orbits that lie within a nearly flat disc called the ecliptic." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_all rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:all ;
+    :label "all" .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:almost ;
+    :label "almost" .
+
+:concept_call-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:call-01 ;
+    :label "call-01" .
+
+:concept_circular rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:circular ;
+    :label "circular" .
+
+:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:disc ;
+    :label "disc" .
+
+:concept_flat-06 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:flat-06 ;
+    :label "flat-06" .
+
+:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:lie-07 ;
+    :label "lie-07" .
+
+:concept_near rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:near ;
+    :label "near" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_thing rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#thing> ;
+    :label "thing" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a2> ;
+    :label "a2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c2> ;
+    :label "c2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    :label "d" .
+
+:variable_f a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#f> ;
+    :label "f" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#l> ;
+    :label "l" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#p> ;
+    :label "p" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#t> ;
+    :label "t" ;
+    :name "ecliptic" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+<https://tenet.tetras-libre.fr/extract-result#almost> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#almost> ;
+    rdfs:label "almost" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#almost-circular> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#circular> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#circular-orbit> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#orbit> ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#disc> a owl:Class ;
+    rdfs:label "disc" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#lie> a owl:ObjectProperty ;
+    rdfs:label "lie" ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf sys:Entity ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_all_a a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_all_a ;
+    net:coverNode :leaf_all_a ;
+    net:hasNaming "all" ;
+    net:hasPropertyName "all" ;
+    net:hasPropertyName01 "alling" ;
+    net:hasPropertyName10 "all-by" ;
+    net:hasPropertyName12 "all-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_ecliptic_t a net:Individual_Net ;
+    :role_name net:value_ecliptic_blankNode ;
+    net:coverBaseNode :leaf_thing_t ;
+    net:coverNode :leaf_thing_t ;
+    net:hasIndividualLabel "ecliptic" ;
+    net:hasMotherClassNet net:atomClass_thing_t ;
+    net:hasNaming "ecliptic" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_lie-disc_l a net:Restriction_Net ;
+    net:composeFrom net:atomClass_disc_d,
+        net:atomProperty_lie_l ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_disc_d,
+        :leaf_lie-07_l ;
+    net:hasNaming "lie-disc" ;
+    net:hasRestrictionNetValue net:atomClass_disc_d ;
+    net:hasRestrictionOnProperty net:atomProperty_lie_l ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:value_8_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_8 ;
+    net:hasNaming "8" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:hasValueLabel "8" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a> a ns3:all ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a2> a ns11:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c> a ns11:circular ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#n> a ns3:near ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a> ;
+    ns11:quant "8" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#t> a <http://amr.isi.edu/entity-types#thing> ;
+    rdfs:label "ecliptic" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#thing> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:call-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:flat-06 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:lie-07 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:almost a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:circular a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:disc a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:all a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:near a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_call-01_c2 a :AMR_Leaf ;
+    :edge_c2_d :leaf_disc_d ;
+    :edge_c2_t :leaf_thing_t ;
+    :hasConcept :concept_call-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_flat-06_f a :AMR_Leaf ;
+    :edge_f_d :leaf_disc_d ;
+    :edge_f_n :leaf_near_n ;
+    :hasConcept :concept_flat-06 ;
+    :hasVariable :variable_f .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:value_8 a :AMR_Value ;
+    rdfs:label "8" .
+
+:value_ecliptic a :AMR_Value ;
+    rdfs:label "ecliptic" .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+<https://tenet.tetras-libre.fr/extract-result#circular> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#almost-circular>,
+        <https://tenet.tetras-libre.fr/extract-result#circular> ;
+    rdfs:label "circular" ;
+    rdfs:subClassOf sys:Undetermined_Thing ;
+    sys:fromStructure "WikiAbstract-SolarSystem-09" .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_thing_t a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_ecliptic_blankNode ;
+    net:coverBaseNode :leaf_thing_t ;
+    net:coverNode :leaf_thing_t ;
+    net:hasClassName "thing" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "thing" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:atomProperty_orbit_o a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_planet_p ;
+    :role_mod net:atomClass_circular_c,
+        net:compositeClass_almost-circular_c ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_circular_c,
+        :leaf_planet_p .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_ecliptic_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_ecliptic ;
+    net:hasNaming "ecliptic" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:hasValueLabel "ecliptic" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> a ns2:orbit-01 ;
+    ns2:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#p> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_all_a a :AMR_Leaf ;
+    :hasConcept :concept_all ;
+    :hasVariable :variable_a .
+
+:leaf_near_n a :AMR_Leaf ;
+    :hasConcept :concept_near ;
+    :hasVariable :variable_n .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_orbit_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_planet_p ;
+    :role_mod net:atomClass_circular_c,
+        net:compositeClass_almost-circular_c ;
+    net:composeFrom net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:atomProperty_lie_l a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_orbit_o,
+        net:atomProperty_orbit_o,
+        net:compositeClass_circular-orbit_o ;
+    :role_ARG2 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_lie-07_l ;
+    net:hasNaming "lie" ;
+    net:hasPropertyName "lie" ;
+    net:hasPropertyName01 "lieing" ;
+    net:hasPropertyName10 "lie-by" ;
+    net:hasPropertyName12 "lie-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_disc_d,
+        :leaf_orbit-01_o .
+
+net:compositeClass_almost-circular_c a net:Composite_Class_Net ;
+    :role_mod net:atomClass_almost_a2 ;
+    net:composeFrom net:atomClass_almost_a2,
+        net:atomClass_circular_c ;
+    net:coverBaseNode :leaf_circular_c ;
+    net:coverNode :leaf_almost_a2,
+        :leaf_circular_c ;
+    net:hasMotherClassNet net:atomClass_circular_c ;
+    net:hasNaming "almost-circular" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:compositeClass_circular-orbit_o a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_planet_p ;
+    :role_mod net:atomClass_circular_c ;
+    net:composeFrom net:atomClass_circular_c,
+        net:atomClass_orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_circular_c,
+        :leaf_orbit-01_o ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_orbit_o ;
+    net:hasNaming "circular-orbit" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> a ns11:disc ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_a :leaf_all_a ;
+    :edge_p_quant_8 :value_8 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_mod net:atomProperty_all_a ;
+    :role_quant net:value_8_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_lie-07_l a :AMR_Leaf ;
+    :edge_l_d :leaf_disc_d ;
+    :edge_l_o :leaf_orbit-01_o ;
+    :hasConcept :concept_lie-07 ;
+    :hasVariable :variable_l .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_almost_a2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_almost_a2 ;
+    net:coverNode :leaf_almost_a2 ;
+    net:hasClassName "almost" ;
+    net:hasNaming "almost" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Structure a owl:Class .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_thing_t a :AMR_Leaf ;
+    :edge_t_name_ecliptic :value_ecliptic ;
+    :hasConcept :concept_thing ;
+    :hasVariable :variable_t .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_disc_d a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_disc_d ;
+    net:coverNode :leaf_disc_d ;
+    net:hasClassName "disc" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "disc" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+net:atomClass_circular_c a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_almost_a2 ;
+    net:coverBaseNode :leaf_circular_c ;
+    net:coverNode :leaf_circular_c ;
+    net:hasClassName "circular" ;
+    net:hasNaming "circular" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_circular_c a :AMR_Leaf ;
+    :edge_c_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_circular ;
+    :hasVariable :variable_c .
+
+:leaf_disc_d a :AMR_Leaf ;
+    :hasConcept :concept_disc ;
+    :hasVariable :variable_d .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_orbit-01_o a :AMR_Leaf ;
+    :edge_o_c :leaf_circular_c ;
+    :edge_o_p :leaf_planet_p ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..8de36e916358cc0f886d48b1210513aa22e2cf84
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_Preprocessing.ttl
@@ -0,0 +1,1062 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:call-01.ARG1 a ns2:FrameRole .
+
+ns2:call-01.ARG2 a ns2:FrameRole .
+
+ns2:flat-06.ARG1 a ns2:FrameRole .
+
+ns2:lie-07.ARG1 a ns2:FrameRole .
+
+ns2:lie-07.ARG2 a ns2:FrameRole .
+
+ns2:orbit-01.ARG0 a ns2:FrameRole .
+
+ns11:degree a ns3:Role .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:mod a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:edge_c2_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c2_t a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_a2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_f_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_f_n a :AMR_Edge ;
+    :hasRoleID "degree" .
+
+:edge_l_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_l_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_c a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_o_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_quant_8 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_name_ecliptic a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_call-01_c2 a :AMR_Leaf ;
+    :edge_c2_d :leaf_disc_d ;
+    :edge_c2_t :leaf_thing_t ;
+    :hasConcept :concept_call-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_flat-06_f a :AMR_Leaf ;
+    :edge_f_d :leaf_disc_d ;
+    :edge_f_n :leaf_near_n ;
+    :hasConcept :concept_flat-06 ;
+    :hasVariable :variable_f .
+
+:leaf_lie-07_l a :AMR_Leaf ;
+    :edge_l_d :leaf_disc_d ;
+    :edge_l_o :leaf_orbit-01_o ;
+    :hasConcept :concept_lie-07 ;
+    :hasVariable :variable_l .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-09 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#root01> ;
+    :hasRootLeaf :leaf_orbit-01_o ;
+    :hasSentenceID "WikiAbstract-SolarSystem-09" ;
+    :hasSentenceStatement "All eight planets have almost circular orbits that lie within a nearly flat disc called the ecliptic." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c2> a ns2:call-01 ;
+    ns2:call-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    ns2:call-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#f> a ns2:flat-06 ;
+    ns2:flat-06.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    ns11:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#n> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#l> a ns2:lie-07 ;
+    ns2:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> ;
+    ns2:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-09" ;
+    ns3:has-sentence "All eight planets have almost circular orbits that lie within a nearly flat disc called the ecliptic." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_all rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:all ;
+    :label "all" .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:almost ;
+    :label "almost" .
+
+:concept_call-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:call-01 ;
+    :label "call-01" .
+
+:concept_circular rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:circular ;
+    :label "circular" .
+
+:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:disc ;
+    :label "disc" .
+
+:concept_flat-06 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:flat-06 ;
+    :label "flat-06" .
+
+:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:lie-07 ;
+    :label "lie-07" .
+
+:concept_near rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:near ;
+    :label "near" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_thing rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#thing> ;
+    :label "thing" .
+
+:leaf_all_a a :AMR_Leaf ;
+    :hasConcept :concept_all ;
+    :hasVariable :variable_a .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_circular_c a :AMR_Leaf ;
+    :edge_c_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_circular ;
+    :hasVariable :variable_c .
+
+:leaf_near_n a :AMR_Leaf ;
+    :hasConcept :concept_near ;
+    :hasVariable :variable_n .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_a :leaf_all_a ;
+    :edge_p_quant_8 :value_8 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+:leaf_thing_t a :AMR_Leaf ;
+    :edge_t_name_ecliptic :value_ecliptic ;
+    :hasConcept :concept_thing ;
+    :hasVariable :variable_t .
+
+:role_ARG0 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_name a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:value_8 a :AMR_Value ;
+    rdfs:label "8" .
+
+:value_ecliptic a :AMR_Value ;
+    rdfs:label "ecliptic" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a2> ;
+    :label "a2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c2> ;
+    :label "c2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    :label "d" .
+
+:variable_f a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#f> ;
+    :label "f" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#l> ;
+    :label "l" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#p> ;
+    :label "p" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#t> ;
+    :label "t" ;
+    :name "ecliptic" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a> a ns3:all ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a2> a ns11:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c> a ns11:circular ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#n> a ns3:near ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a> ;
+    ns11:quant "8" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#t> a <http://amr.isi.edu/entity-types#thing> ;
+    rdfs:label "ecliptic" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#thing> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:call-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:flat-06 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:lie-07 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:almost a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:circular a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:disc a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:all a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:near a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_orbit-01_o a :AMR_Leaf ;
+    :edge_o_c :leaf_circular_c ;
+    :edge_o_p :leaf_planet_p ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG2 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> a ns2:orbit-01 ;
+    ns2:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#p> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_disc_d a :AMR_Leaf ;
+    :hasConcept :concept_disc ;
+    :hasVariable :variable_d .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_mod a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> a ns11:disc ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Structure a owl:Class .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..2477649f6e6ec18222fb623ed7a92af5e0952aa2
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_Transduction.ttl
@@ -0,0 +1,1315 @@
+@prefix : <https://amr.tetras-libre.fr/rdf/schema#> .
+@prefix cprm: <https://tenet.tetras-libre.fr/config/parameters#> .
+@prefix net: <https://tenet.tetras-libre.fr/semantic-net#> .
+@prefix ns11: <http://amr.isi.edu/rdf/amr-terms#> .
+@prefix ns2: <http://amr.isi.edu/frames/ld/v1.2.2/> .
+@prefix ns3: <http://amr.isi.edu/rdf/core-amr#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+@prefix sys: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
+
+ns3:Concept a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Concept" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Role a rdfs:Class,
+        owl:Class ;
+    rdfs:label "AMR-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/test-1#root01> ns3:hasID "test-1" ;
+    ns3:hasSentence "The sun is a star." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-1#s> .
+
+<http://amr.isi.edu/amr_data/test-2#root01> ns3:hasID "test-2" ;
+    ns3:hasSentence "Earth is a planet." ;
+    ns3:root <http://amr.isi.edu/amr_data/test-2#p> .
+
+ns2:call-01.ARG1 a ns2:FrameRole .
+
+ns2:call-01.ARG2 a ns2:FrameRole .
+
+ns2:flat-06.ARG1 a ns2:FrameRole .
+
+ns2:lie-07.ARG1 a ns2:FrameRole .
+
+ns2:lie-07.ARG2 a ns2:FrameRole .
+
+ns2:orbit-01.ARG0 a ns2:FrameRole .
+
+ns11:degree a ns3:Role .
+
+ns11:domain a ns3:Role,
+        owl:AnnotationProperty,
+        owl:NamedIndividual .
+
+ns11:mod a ns3:Role .
+
+ns3:hasID a owl:AnnotationProperty .
+
+ns3:hasSentence a owl:AnnotationProperty .
+
+ns3:root a owl:AnnotationProperty .
+
+<https://amr.tetras-libre.fr/rdf/schema> a owl:Ontology ;
+    owl:versionIRI :0.1 .
+
+:AMR_DataProperty a owl:DatatypeProperty .
+
+:AMR_Prep_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Relation_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:edge_c2_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_c2_t a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_c_a2 a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_f_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_f_n a :AMR_Edge ;
+    :hasRoleID "degree" .
+
+:edge_l_d a :AMR_Edge ;
+    :hasAmrRole :role_ARG2 ;
+    :hasRoleID "ARG2" .
+
+:edge_l_o a :AMR_Edge ;
+    :hasAmrRole :role_ARG1 ;
+    :hasRoleID "ARG1" .
+
+:edge_o_c a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_o_p a :AMR_Edge ;
+    :hasAmrRole :role_ARG0 ;
+    :hasRoleID "ARG0" .
+
+:edge_p_a a :AMR_Edge ;
+    :hasAmrRole :role_mod ;
+    :hasRoleID "mod" .
+
+:edge_p_quant_8 a :AMR_Edge ;
+    :hasAmrRole :role_quant ;
+    :hasRoleID "quant" .
+
+:edge_t_name_ecliptic a :AMR_Edge ;
+    :hasAmrRole :role_name ;
+    :hasRoleID "name" .
+
+:fromAmrLkFramerole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRole a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:fromAmrLkRoot a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :fromAmrLk .
+
+:getDirectPropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getInversePropertyName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:getPropertyType a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :getProperty .
+
+:hasConcept a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasConceptLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasEdgeLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasLink .
+
+:hasReification a owl:AnnotationProperty ;
+    rdfs:range xsd:boolean ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationDomain a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasReificationRange a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :hasReificationDefinition .
+
+:hasRelationName a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasRoleID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRoleTag a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRolesetID a owl:ObjectProperty ;
+    rdfs:domain :AMR_Edge ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasRootLeaf a owl:ObjectProperty ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:hasSentenceID a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasSentenceStatement a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasVariable a owl:ObjectProperty ;
+    rdfs:domain :AMR_Leaf ;
+    rdfs:subPropertyOf :AMR_ObjectProperty .
+
+:label a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:phenomena_conjunction_and a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "and" ;
+    :label "conjunction-AND" .
+
+:phenomena_conjunction_or a owl:Class ;
+    rdfs:subClassOf :phenomena_conjunction ;
+    :hasConceptLink "or" ;
+    :label "conjunction-OR" .
+
+:phenomena_degree a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "have-degree-91" ;
+    :label "degree" .
+
+:phenomena_modality_obligation a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "obligate-01" ;
+    :label "obligation-modality" .
+
+:phenomena_modality_possible a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "allow-01",
+        "grant-01",
+        "likely-01",
+        "permit-01",
+        "possible-01" ;
+    :label "possible-modality" .
+
+:phenomena_modality_prohibition a owl:Class ;
+    rdfs:subClassOf :phenomena_modality ;
+    :hasConceptLink "prohibit-01" ;
+    :label "prohibition-modality" .
+
+:relation_domain a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "domain" .
+
+:relation_manner a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasManner" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "manner" .
+
+:relation_mod a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "mod" .
+
+:relation_name a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "name" .
+
+:relation_part a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification true ;
+    :hasReificationConcept "hasPart" ;
+    :hasReificationDomain "ARG1" ;
+    :hasReificationRange "ARG2" ;
+    :hasRelationName "part" .
+
+:relation_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "polarity" .
+
+:relation_quant a owl:Class ;
+    rdfs:subClassOf :AMR_Relation ;
+    :hasReification false ;
+    :hasRelationName "quant" .
+
+:role_ARG3 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG3" .
+
+:role_ARG4 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG4" .
+
+:role_ARG5 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG5" .
+
+:role_ARG6 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG6" .
+
+:role_ARG7 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG7" .
+
+:role_ARG8 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG8" .
+
+:role_ARG9 a owl:Class ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG9" .
+
+:role_domain a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :hasRelationName "domain" ;
+    :label "domain" ;
+    :toReifyAsConcept "domain" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_have-degree-91 a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :getPropertyType <net:specificProperty> .
+
+:role_manner a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "manner" ;
+    :getPropertyType owl:DataProperty ;
+    :label "manner" ;
+    :toReifyAsConcept "manner" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_op1 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op1" .
+
+:role_op2 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op2" .
+
+:role_op3 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op3" .
+
+:role_op4 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op4" .
+
+:role_op5 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op5" .
+
+:role_op6 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op6" .
+
+:role_op7 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op7" .
+
+:role_op8 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op8" .
+
+:role_op9 a owl:Class ;
+    rdfs:subClassOf :AMR_Op_Role ;
+    :label "op9" .
+
+:role_part a owl:Class ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasPart"^^xsd:string ;
+    :getInversePropertyName "partOf"^^xsd:string ;
+    :getPropertyType owl:ObjectProperty ;
+    :toReifyAsConcept "part" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:role_polarity a owl:Class ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "polarity" .
+
+:root_WikiAbstract-SolarSystem-09 a :AMR_Root ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#root01> ;
+    :hasRootLeaf :leaf_orbit-01_o ;
+    :hasSentenceID "WikiAbstract-SolarSystem-09" ;
+    :hasSentenceStatement "All eight planets have almost circular orbits that lie within a nearly flat disc called the ecliptic." .
+
+:toReifyAsConcept a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithBaseEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+:toReifyWithHeadEdge a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :toReify .
+
+<https://tenet.tetras-libre.fr/base-ontology> a owl:Ontology .
+
+sys:Event a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Undetermined_Thing a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:fromStructure a owl:AnnotationProperty ;
+    rdfs:subPropertyOf sys:Out_AnnotationProperty .
+
+sys:hasDegree a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+sys:hasFeature a owl:ObjectProperty ;
+    rdfs:subPropertyOf sys:Out_ObjectProperty .
+
+<https://tenet.tetras-libre.fr/config/parameters> a owl:Ontology .
+
+cprm:Config_Parameters a owl:Class ;
+    cprm:baseURI "https://tenet.tetras-libre.fr/" ;
+    cprm:netURI "https://tenet.tetras-libre.fr/semantic-net#" ;
+    cprm:newClassRef "new-class#" ;
+    cprm:newPropertyRef "new-relation#" ;
+    cprm:objectRef "object_" ;
+    cprm:targetOntologyURI "https://tenet.tetras-libre.fr/base-ontology/" .
+
+cprm:baseURI a rdf:Property ;
+    rdfs:label "Base URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:netURI a rdf:Property ;
+    rdfs:label "Net URI" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newClassRef a rdf:Property ;
+    rdfs:label "Reference for a new class" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:newPropertyRef a rdf:Property ;
+    rdfs:label "Reference for a new property" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:objectRef a rdf:Property ;
+    rdfs:label "Object Reference" ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+cprm:targetOntologyURI a rdf:Property ;
+    rdfs:label "URI of classes in target ontology" ;
+    rdfs:domain cprm:Frame ;
+    rdfs:range xsd:string ;
+    rdfs:subPropertyOf cprm:configParamProperty .
+
+<https://tenet.tetras-libre.fr/semantic-net> a owl:Ontology .
+
+net:Composite_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Logical_Set_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Phenomena_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Property_Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Axiom_Net .
+
+net:Property_Direction a owl:Class ;
+    rdfs:subClassOf net:Feature .
+
+net:Relation_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:abstractionClass a owl:AnnotationProperty ;
+    rdfs:label "abstraction class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:atomOf a owl:AnnotationProperty ;
+    rdfs:label "atom of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:atomProperty_call_c2 a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_disc_d ;
+    :role_ARG2 net:atomClass_thing_t,
+        net:individual_ecliptic_t ;
+    net:coverBaseNode :leaf_call-01_c2 ;
+    net:coverNode :leaf_call-01_c2 ;
+    net:hasNaming "call" ;
+    net:hasPropertyName "call" ;
+    net:hasPropertyName01 "calling" ;
+    net:hasPropertyName10 "call-by" ;
+    net:hasPropertyName12 "call-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_disc_d,
+        :leaf_thing_t .
+
+net:atomProperty_flat_f a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_flat-06_f ;
+    net:coverNode :leaf_flat-06_f ;
+    net:hasNaming "flat" ;
+    net:hasPropertyName "flat" ;
+    net:hasPropertyName01 "flating" ;
+    net:hasPropertyName10 "flat-by" ;
+    net:hasPropertyName12 "flat-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_disc_d .
+
+net:atomProperty_near_n a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_near_n ;
+    net:coverNode :leaf_near_n ;
+    net:hasNaming "near" ;
+    net:hasPropertyName "near" ;
+    net:hasPropertyName01 "nearing" ;
+    net:hasPropertyName10 "near-by" ;
+    net:hasPropertyName12 "near-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:isCoreRoleLinked "true" .
+
+net:atomType a owl:AnnotationProperty ;
+    rdfs:label "atom type" ;
+    rdfs:subPropertyOf net:objectType .
+
+net:compositeClass_circular-orbit-lie-disc_o a net:Composite_Class_Net ;
+    :role_ARG0 net:atomClass_planet_p ;
+    :role_mod net:atomClass_circular_c ;
+    net:composeFrom net:atomClass_disc_d,
+        net:atomProperty_lie_l,
+        net:compositeClass_circular-orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_circular_c,
+        :leaf_disc_d,
+        :leaf_lie-07_l,
+        :leaf_orbit-01_o ;
+    net:hasMotherClassNet net:compositeClass_circular-orbit_o ;
+    net:hasNaming "circular-orbit-lie-disc" ;
+    net:hasRestriction net:restriction_lie-disc_l ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:entityClass a owl:AnnotationProperty ;
+    rdfs:label "entity class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:featureClass a owl:AnnotationProperty ;
+    rdfs:label "feature class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_atom a owl:AnnotationProperty ;
+    rdfs:label "has atom" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_class a owl:AnnotationProperty ;
+    rdfs:label "is class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_class_name a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:has_value .
+
+net:has_class_uri a owl:AnnotationProperty ;
+    rdfs:label "class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_concept a owl:AnnotationProperty ;
+    rdfs:label "concept "@fr ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_entity a owl:AnnotationProperty ;
+    rdfs:label "has entity" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_feature a owl:AnnotationProperty ;
+    rdfs:label "has feature" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_instance a owl:AnnotationProperty ;
+    rdfs:label "entity instance" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_instance_uri a owl:AnnotationProperty ;
+    rdfs:label "instance uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_item a owl:AnnotationProperty ;
+    rdfs:label "has item" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_mother_class a owl:AnnotationProperty ;
+    rdfs:label "has mother class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_mother_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_node a owl:AnnotationProperty ;
+    rdfs:label "UNL Node" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_parent a owl:AnnotationProperty ;
+    rdfs:label "has parent" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_parent_class a owl:AnnotationProperty ;
+    rdfs:label "parent class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_parent_class_uri a owl:AnnotationProperty ;
+    rdfs:label "parent class uri" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:has_possible_domain a owl:AnnotationProperty ;
+    rdfs:label "has possible domain" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_possible_range a owl:AnnotationProperty ;
+    rdfs:label "has possible range" ;
+    rdfs:subPropertyOf net:has_object .
+
+net:has_relation a owl:AnnotationProperty ;
+    rdfs:label "has relation" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_source a owl:AnnotationProperty ;
+    rdfs:label "has source" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:has_structure a owl:AnnotationProperty ;
+    rdfs:label "Linguistic Structure (in UNL Document)" ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:has_target a owl:AnnotationProperty ;
+    rdfs:label "has target" ;
+    rdfs:subPropertyOf net:has_relation_value .
+
+net:individual_almost_a2 a net:Individual_Net ;
+    net:composeFrom net:atomClass_almost_a2 ;
+    net:coverBaseNode :leaf_almost_a2 ;
+    net:coverNode :leaf_almost_a2 ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "almost" ;
+    net:hasMotherClassNet net:atomClass_almost_a2 ;
+    net:hasNaming "almost" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:individual_circular_c a net:Individual_Net ;
+    net:composeFrom net:atomClass_circular_c ;
+    net:coverBaseNode :leaf_circular_c ;
+    net:coverNode :leaf_circular_c ;
+    net:hasBaseClassName "Feature" ;
+    net:hasIndividualLabel "circular" ;
+    net:hasMotherClassNet net:atomClass_circular_c,
+        net:compositeClass_almost-circular_c ;
+    net:hasNaming "circular" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:inverse_direction a owl:NamedIndividual .
+
+net:listBy a owl:AnnotationProperty ;
+    rdfs:label "list by" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:listGuiding a owl:AnnotationProperty ;
+    rdfs:label "Guiding connector of a list (or, and)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:listOf a owl:AnnotationProperty ;
+    rdfs:label "list of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:modCat1 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 1)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:modCat2 a owl:AnnotationProperty ;
+    rdfs:label "Modality Category (level 2)" ;
+    rdfs:subPropertyOf net:objectValue .
+
+net:normal_direction a owl:NamedIndividual .
+
+net:relationOf a owl:AnnotationProperty ;
+    rdfs:label "relation of" ;
+    rdfs:subPropertyOf net:typeProperty .
+
+net:type a owl:AnnotationProperty ;
+    rdfs:label "type "@fr ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:verbClass a owl:AnnotationProperty ;
+    rdfs:label "verb class" ;
+    rdfs:subPropertyOf net:objectValue .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c2> a ns2:call-01 ;
+    ns2:call-01.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    ns2:call-01.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#t> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#f> a ns2:flat-06 ;
+    ns2:flat-06.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    ns11:degree <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#n> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#l> a ns2:lie-07 ;
+    ns2:lie-07.ARG1 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> ;
+    ns2:lie-07.ARG2 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#root01> a ns3:AMR ;
+    ns3:has-id "WikiAbstract-SolarSystem-09" ;
+    ns3:has-sentence "All eight planets have almost circular orbits that lie within a nearly flat disc called the ecliptic." ;
+    ns3:root <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> .
+
+<http://amr.isi.edu/amr_data/test-1#s> ns11:domain <http://amr.isi.edu/amr_data/test-1#s2> .
+
+<http://amr.isi.edu/amr_data/test-2#p> rdfs:label "Earth" .
+
+ns3:AMR a owl:Class ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Root a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:concept_all rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:all ;
+    :label "all" .
+
+:concept_almost rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:almost ;
+    :label "almost" .
+
+:concept_call-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:call-01 ;
+    :label "call-01" .
+
+:concept_circular rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:circular ;
+    :label "circular" .
+
+:concept_disc rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk ns11:disc ;
+    :label "disc" .
+
+:concept_flat-06 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:flat-06 ;
+    :label "flat-06" .
+
+:concept_lie-07 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:lie-07 ;
+    :label "lie-07" .
+
+:concept_near rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns3:near ;
+    :label "near" .
+
+:concept_orbit-01 rdfs:subClassOf :AMR_Predicat_Concept ;
+    :fromAmrLk ns2:orbit-01 ;
+    :label "orbit-01" .
+
+:concept_planet rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#planet> ;
+    :label "planet" .
+
+:concept_thing rdfs:subClassOf :AMR_Term_Concept ;
+    :fromAmrLk <http://amr.isi.edu/entity-types#thing> ;
+    :label "thing" .
+
+:role_ARG0 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG0" .
+
+:role_name a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :label "name" .
+
+:role_quant a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Specific_Role ;
+    :label "quant" .
+
+:variable_a a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a> ;
+    :label "a" .
+
+:variable_a2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a2> ;
+    :label "a2" .
+
+:variable_c a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c> ;
+    :label "c" .
+
+:variable_c2 a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c2> ;
+    :label "c2" .
+
+:variable_d a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> ;
+    :label "d" .
+
+:variable_f a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#f> ;
+    :label "f" .
+
+:variable_l a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#l> ;
+    :label "l" .
+
+:variable_n a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#n> ;
+    :label "n" .
+
+:variable_o a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> ;
+    :label "o" .
+
+:variable_p a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#p> ;
+    :label "p" .
+
+:variable_t a :AMR_Variable ;
+    :fromAmrLk <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#t> ;
+    :label "t" ;
+    :name "ecliptic" .
+
+sys:Degree a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Feature a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+sys:Out_AnnotationProperty a owl:AnnotationProperty .
+
+net:Axiom_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Feature a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:Restriction_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomProperty_all_a a net:Atom_Property_Net ;
+    net:coverBaseNode :leaf_all_a ;
+    net:coverNode :leaf_all_a ;
+    net:hasNaming "all" ;
+    net:hasPropertyName "all" ;
+    net:hasPropertyName01 "alling" ;
+    net:hasPropertyName10 "all-by" ;
+    net:hasPropertyName12 "all-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:isCoreRoleLinked "true" .
+
+net:has_value a owl:AnnotationProperty ;
+    rdfs:subPropertyOf net:netProperty .
+
+net:individual_ecliptic_t a net:Individual_Net ;
+    :role_name net:value_ecliptic_blankNode ;
+    net:coverBaseNode :leaf_thing_t ;
+    net:coverNode :leaf_thing_t ;
+    net:hasIndividualLabel "ecliptic" ;
+    net:hasMotherClassNet net:atomClass_thing_t ;
+    net:hasNaming "ecliptic" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:objectType a owl:AnnotationProperty ;
+    rdfs:label "object type" ;
+    rdfs:subPropertyOf net:objectProperty .
+
+net:restriction_lie-disc_l a net:Restriction_Net ;
+    net:composeFrom net:atomClass_disc_d,
+        net:atomProperty_lie_l ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_disc_d,
+        :leaf_lie-07_l ;
+    net:hasNaming "lie-disc" ;
+    net:hasRestrictionNetValue net:atomClass_disc_d ;
+    net:hasRestrictionOnProperty net:atomProperty_lie_l ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:value_8_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_8 ;
+    net:hasNaming "8" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:hasValueLabel "8" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a> a ns3:all ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a2> a ns11:almost ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c> a ns11:circular ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a2> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#n> a ns3:near ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#p> a <http://amr.isi.edu/entity-types#planet> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#a> ;
+    ns11:quant "8" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#t> a <http://amr.isi.edu/entity-types#thing> ;
+    rdfs:label "ecliptic" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#planet> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+<http://amr.isi.edu/entity-types#thing> a ns3:NamedEntity ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:call-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:flat-06 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:lie-07 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns2:orbit-01 a ns3:Frame ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:almost a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:circular a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns11:disc a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:NamedEntity a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-EntityType",
+        "AMR-Term" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:all a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:near a ns3:Concept ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Value a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:hasLink a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_call-01_c2 a :AMR_Leaf ;
+    :edge_c2_d :leaf_disc_d ;
+    :edge_c2_t :leaf_thing_t ;
+    :hasConcept :concept_call-01 ;
+    :hasVariable :variable_c2 .
+
+:leaf_flat-06_f a :AMR_Leaf ;
+    :edge_f_d :leaf_disc_d ;
+    :edge_f_n :leaf_near_n ;
+    :hasConcept :concept_flat-06 ;
+    :hasVariable :variable_f .
+
+:phenomena_conjunction a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena ;
+    :hasConceptLink "contrast-01",
+        "either",
+        "neither" ;
+    :label "conjunction" .
+
+:role_ARG2 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG2" .
+
+:value_8 a :AMR_Value ;
+    rdfs:label "8" .
+
+:value_ecliptic a :AMR_Value ;
+    rdfs:label "ecliptic" .
+
+sys:Out_ObjectProperty a owl:ObjectProperty .
+
+net:Property_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Value_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_thing_t a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_name net:value_ecliptic_blankNode ;
+    net:coverBaseNode :leaf_thing_t ;
+    net:coverNode :leaf_thing_t ;
+    net:hasClassName "thing" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "thing" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:atomProperty_orbit_o a net:Atom_Property_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_planet_p ;
+    :role_mod net:atomClass_circular_c,
+        net:compositeClass_almost-circular_c ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o ;
+    net:hasNaming "orbit" ;
+    net:hasPropertyName "orbit" ;
+    net:hasPropertyName01 "orbiting" ;
+    net:hasPropertyName10 "orbit-by" ;
+    net:hasPropertyName12 "orbit-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_circular_c,
+        :leaf_planet_p .
+
+net:objectProperty a owl:AnnotationProperty ;
+    rdfs:label "object attribute" .
+
+net:value_ecliptic_blankNode a net:Value_Net ;
+    net:coverAmrValue :value_ecliptic ;
+    net:hasNaming "ecliptic" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:hasValueLabel "ecliptic" .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#o> a ns2:orbit-01 ;
+    ns2:orbit-01.ARG0 <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#p> ;
+    ns11:mod <http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#c> ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Phenomena a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Specific_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:fromAmrLk a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:getProperty a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:hasReificationDefinition a owl:AnnotationProperty ;
+    rdfs:range rdfs:Literal ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+:leaf_all_a a :AMR_Leaf ;
+    :hasConcept :concept_all ;
+    :hasVariable :variable_a .
+
+:leaf_near_n a :AMR_Leaf ;
+    :hasConcept :concept_near ;
+    :hasVariable :variable_n .
+
+:phenomena_modality a owl:Class ;
+    rdfs:subClassOf :AMR_Phenomena .
+
+:role_ARG1 a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_Core_Role ;
+    :label "ARG1" .
+
+:role_mod a owl:Class,
+        net:Relation ;
+    rdfs:subClassOf :AMR_NonCore_Role ;
+    :getDirectPropertyName "hasFeature"^^xsd:string ;
+    :getPropertyType rdfs:subClassOf,
+        owl:ObjectProperty ;
+    :label "mod" ;
+    :toReifyAsConcept "mod" ;
+    :toReifyWithBaseEdge "ARG0" ;
+    :toReifyWithHeadEdge "ARG1" .
+
+:toReify a owl:AnnotationProperty ;
+    rdfs:subPropertyOf :AMR_AnnotationProperty .
+
+net:Composite_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Individual_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:Net_Structure a owl:Class ;
+    rdfs:label "Semantic Net Structure" ;
+    rdfs:comment "A semantic net captures a set of nodes, and associates this set with type(s) and value(s)." .
+
+net:atomClass_orbit_o a net:Atom_Class_Net,
+        net:Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_planet_p ;
+    :role_mod net:atomClass_circular_c,
+        net:compositeClass_almost-circular_c ;
+    net:composeFrom net:atomProperty_orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_orbit-01_o ;
+    net:hasClassName "orbit" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "orbit" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:atomProperty_lie_l a net:Atom_Property_Net ;
+    :role_ARG1 net:atomClass_orbit_o,
+        net:atomProperty_orbit_o,
+        net:compositeClass_circular-orbit_o ;
+    :role_ARG2 net:atomClass_disc_d ;
+    net:coverBaseNode :leaf_lie-07_l ;
+    net:coverNode :leaf_lie-07_l ;
+    net:hasNaming "lie" ;
+    net:hasPropertyName "lie" ;
+    net:hasPropertyName01 "lieing" ;
+    net:hasPropertyName10 "lie-by" ;
+    net:hasPropertyName12 "lie-of" ;
+    net:hasPropertyType owl:ObjectProperty ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" ;
+    net:isCoreRoleLinked "true" ;
+    net:targetArgumentNode :leaf_disc_d,
+        :leaf_orbit-01_o .
+
+net:compositeClass_almost-circular_c a net:Composite_Class_Net ;
+    :role_mod net:atomClass_almost_a2 ;
+    net:composeFrom net:atomClass_almost_a2,
+        net:atomClass_circular_c ;
+    net:coverBaseNode :leaf_circular_c ;
+    net:coverNode :leaf_almost_a2,
+        :leaf_circular_c ;
+    net:hasMotherClassNet net:atomClass_circular_c ;
+    net:hasNaming "almost-circular" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:compositeClass_circular-orbit_o a net:Class_Net,
+        net:Composite_Class_Net,
+        net:Deprecated_Net ;
+    :role_ARG0 net:atomClass_planet_p ;
+    :role_mod net:atomClass_circular_c ;
+    net:composeFrom net:atomClass_circular_c,
+        net:atomClass_orbit_o ;
+    net:coverBaseNode :leaf_orbit-01_o ;
+    net:coverNode :leaf_circular_c,
+        :leaf_orbit-01_o ;
+    net:hasClassType sys:Entity ;
+    net:hasMotherClassNet net:atomClass_orbit_o ;
+    net:hasNaming "circular-orbit" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:has_relation_value a owl:AnnotationProperty ;
+    rdfs:label "has relation value" ;
+    rdfs:subPropertyOf net:has_object .
+
+<http://amr.isi.edu/amr_data/WikiAbstract-SolarSystem-09#d> a ns11:disc ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+ns3:Frame a ns3:Concept,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Frame" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_Element a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:leaf_planet_p a :AMR_Leaf ;
+    :edge_p_a :leaf_all_a ;
+    :edge_p_quant_8 :value_8 ;
+    :hasConcept :concept_planet ;
+    :hasVariable :variable_p .
+
+net:atomClass_planet_p a net:Atom_Class_Net,
+        net:Class_Net ;
+    :role_mod net:atomProperty_all_a ;
+    :role_quant net:value_8_blankNode ;
+    net:coverBaseNode :leaf_planet_p ;
+    net:coverNode :leaf_planet_p ;
+    net:hasClassName "planet" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "planet" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:typeProperty a owl:AnnotationProperty ;
+    rdfs:label "type property" .
+
+:AMR_NonCore_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:AMR_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:AMR_Term_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:leaf_lie-07_l a :AMR_Leaf ;
+    :edge_l_d :leaf_disc_d ;
+    :edge_l_o :leaf_orbit-01_o ;
+    :hasConcept :concept_lie-07 ;
+    :hasVariable :variable_l .
+
+sys:Out_Structure a owl:Class ;
+    rdfs:label "Output Ontology Structure" .
+
+net:Deprecated_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:atomClass_almost_a2 a net:Atom_Class_Net ;
+    net:coverBaseNode :leaf_almost_a2 ;
+    net:coverNode :leaf_almost_a2 ;
+    net:hasClassName "almost" ;
+    net:hasNaming "almost" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+net:netProperty a owl:AnnotationProperty ;
+    rdfs:label "netProperty" .
+
+ns2:FrameRole a ns3:Role,
+        owl:Class,
+        owl:NamedIndividual ;
+    rdfs:label "AMR-PropBank-Role" ;
+    rdfs:subClassOf :AMR_Linked_Data .
+
+:AMR_ObjectProperty a owl:ObjectProperty ;
+    rdfs:subPropertyOf owl:topObjectProperty .
+
+:AMR_Predicat_Concept a owl:Class ;
+    rdfs:subClassOf :AMR_Concept .
+
+:AMR_Structure a owl:Class .
+
+:leaf_almost_a2 a :AMR_Leaf ;
+    :hasConcept :concept_almost ;
+    :hasVariable :variable_a2 .
+
+:leaf_thing_t a :AMR_Leaf ;
+    :edge_t_name_ecliptic :value_ecliptic ;
+    :hasConcept :concept_thing ;
+    :hasVariable :variable_t .
+
+sys:Entity a owl:Class ;
+    rdfs:subClassOf sys:Out_Structure .
+
+cprm:configParamProperty a rdf:Property ;
+    rdfs:label "Config Parameter Property" .
+
+net:Atom_Class_Net a owl:Class ;
+    rdfs:subClassOf net:Class_Net .
+
+net:Atom_Property_Net a owl:Class ;
+    rdfs:subClassOf net:Property_Net .
+
+net:Relation a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+net:atomClass_disc_d a net:Atom_Class_Net,
+        net:Class_Net ;
+    net:coverBaseNode :leaf_disc_d ;
+    net:coverNode :leaf_disc_d ;
+    net:hasClassName "disc" ;
+    net:hasClassType sys:Entity ;
+    net:hasNaming "disc" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+rdf:Property a owl:Class .
+
+:AMR_Relation a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:Class_Net a owl:Class ;
+    rdfs:subClassOf net:Net .
+
+net:has_object a owl:AnnotationProperty ;
+    rdfs:label "relation" ;
+    rdfs:subPropertyOf net:netProperty .
+
+:AMR_Op_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+net:atomClass_circular_c a net:Atom_Class_Net,
+        net:Deprecated_Net ;
+    :role_mod net:atomClass_almost_a2 ;
+    net:coverBaseNode :leaf_circular_c ;
+    net:coverNode :leaf_circular_c ;
+    net:hasClassName "circular" ;
+    net:hasNaming "circular" ;
+    net:hasStructure "WikiAbstract-SolarSystem-09" .
+
+:AMR_AnnotationProperty a owl:AnnotationProperty .
+
+:AMR_Core_Role a owl:Class ;
+    rdfs:subClassOf :AMR_Role .
+
+:leaf_circular_c a :AMR_Leaf ;
+    :edge_c_a2 :leaf_almost_a2 ;
+    :hasConcept :concept_circular ;
+    :hasVariable :variable_c .
+
+:leaf_disc_d a :AMR_Leaf ;
+    :hasConcept :concept_disc ;
+    :hasVariable :variable_d .
+
+net:Net a owl:Class ;
+    rdfs:subClassOf net:Net_Structure .
+
+:AMR_Variable a owl:Class ;
+    rdfs:subClassOf :AMR_Element .
+
+:leaf_orbit-01_o a :AMR_Leaf ;
+    :edge_o_c :leaf_circular_c ;
+    :edge_o_p :leaf_planet_p ;
+    :hasConcept :concept_orbit-01 ;
+    :hasVariable :variable_o .
+
+:AMR_Leaf a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+:AMR_Edge a owl:Class ;
+    rdfs:subClassOf :AMR_Structure .
+
+net:objectValue a owl:AnnotationProperty ;
+    rdfs:label "valuations"@fr ;
+    rdfs:subPropertyOf net:objectProperty .
+
+:AMR_Linked_Data a owl:Class .
+
+[] a owl:AllDisjointClasses ;
+    owl:members ( sys:Degree sys:Entity sys:Feature ) .
+
diff --git a/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
new file mode 100644
index 0000000000000000000000000000000000000000..0566a4f6cc85718eb11be213ca099ed3fb7ecabb
--- /dev/null
+++ b/tests/main_tests/test_owl_output/SolarSystemProd-20230911/technical-data/tenet.tetras-libre.fr_demo_SolarSystemProd-9/tenet.tetras-libre.fr_demo_SolarSystemProd_factoid.ttl
@@ -0,0 +1,79 @@
+@prefix ns1: <https://tenet.tetras-libre.fr/base-ontology#> .
+@prefix owl: <http://www.w3.org/2002/07/owl#> .
+@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
+
+<https://tenet.tetras-libre.fr/extract-result#all> a owl:ObjectProperty ;
+    rdfs:label "all" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#call> a owl:ObjectProperty ;
+    rdfs:label "call" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#circular-orbit-lie-disc> a owl:Class ;
+    rdfs:subClassOf [ a owl:Restriction ;
+            owl:onProperty <https://tenet.tetras-libre.fr/extract-result#lie> ;
+            owl:someValuesFrom <https://tenet.tetras-libre.fr/extract-result#disc> ],
+        <https://tenet.tetras-libre.fr/extract-result#circular-orbit> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#ecliptic> a owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#thing> ;
+    rdfs:label "ecliptic" ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#flat> a owl:ObjectProperty ;
+    rdfs:label "flat" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#near> a owl:ObjectProperty ;
+    rdfs:label "near" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#planet> a owl:Class ;
+    rdfs:label "planet" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#almost> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#almost> ;
+    rdfs:label "almost" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#almost-circular> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#circular> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#circular-orbit> a owl:Class ;
+    rdfs:subClassOf <https://tenet.tetras-libre.fr/extract-result#orbit> ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#disc> a owl:Class ;
+    rdfs:label "disc" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#lie> a owl:ObjectProperty ;
+    rdfs:label "lie" ;
+    rdfs:subPropertyOf ns1:Out_ObjectProperty ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#orbit> a owl:Class ;
+    rdfs:label "orbit" ;
+    rdfs:subClassOf ns1:Entity ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+
+<https://tenet.tetras-libre.fr/extract-result#circular> a owl:Class,
+        owl:Individual,
+        <https://tenet.tetras-libre.fr/extract-result#almost-circular>,
+        <https://tenet.tetras-libre.fr/extract-result#circular> ;
+    rdfs:label "circular" ;
+    rdfs:subClassOf ns1:Undetermined_Thing ;
+    ns1:fromStructure "WikiAbstract-SolarSystem-09" .
+