# WE DON'T DESIGN — Semantic Ontology
# Version: 2.0.1
# Date: 2026-04-18
# Profile: OWL 2 DL
#
# Changelog v2.0.1 (relative to 2.0.0):
#   - FIX: disjoint axiom on wdd:Work corrected (wd:Q11460 "clothing" → wd:Q243606 "industrial design");
#     replacement aligns the IP-protection moat with WDD's anti-functionalist positioning.
#   - ADD: rdfs:label @en-GB to every class (134 new labels, mechanical camelCase → spaced form).
#   - ADD: owl:NamedIndividual declaration to every individual (432 additions) for strict OWL 2 DL best practice.
#   - Every one of the 60 wd:Q* references has been externally verified against Wikidata.
#
#################################################################

@prefix : <https://wedontdesign.com/ontology#> .
@prefix wdd: <https://wedontdesign.com/ontology#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix wd: <http://www.wikidata.org/entity/> .
@base <https://wedontdesign.com/ontology#> .

#################################################################
#    ONTOLOGY METADATA
#################################################################

<https://wedontdesign.com/ontology> rdf:type owl:Ontology ;
    owl:versionIRI <https://wedontdesign.com/ontology/2.0.1> ;
    owl:priorVersion <https://wedontdesign.com/ontology/2.0.0> ;
    rdfs:label "WE DON'T DESIGN Semantic Ontology" ;
    rdfs:comment "Formal ontology of the WE DON'T DESIGN thought system, un-designed creative process, and cultural ecosystem." ;
    dcterms:creator "Francesco Meneghello" ;
    dcterms:publisher "WE DON'T DESIGN" ;
    dcterms:license <https://creativecommons.org/licenses/by-nc-nd/4.0/> ;
    dcterms:created "2026-01-01"^^xsd:date ;
    dcterms:modified "2026-04-18"^^xsd:date ;
    owl:versionInfo "2.0.1" .

#################################################################
#    OBJECT PROPERTIES
#################################################################

### Axiom relations
wdd:negatesParadigm rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Axiom ;
    rdfs:range wdd:TraditionalParadigm ;
    rdfs:label "negates paradigm" .

wdd:impliesRule rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Axiom ;
    rdfs:range wdd:OperationalPrinciple ;
    rdfs:label "implies rule" .

wdd:embodiesAxiom rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:Axiom ;
    rdfs:label "embodies axiom" .

### Tension relations
wdd:hasPoleA rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:ConceptualTension ;
    rdfs:range wdd:ConceptualPole ;
    rdfs:label "has pole A" .

wdd:hasPoleB rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:ConceptualTension ;
    rdfs:range wdd:ConceptualPole ;
    rdfs:label "has pole B" .

wdd:producesEffect rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:ConceptualTension ;
    rdfs:range wdd:CognitiveEffect ;
    rdfs:label "produces effect" .

### Work relations — core
wdd:embodiesTension rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:ConceptualTension ;
    rdfs:label "embodies tension" .

wdd:activatesParadox rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:Paradox ;
    rdfs:label "activates paradox" .

wdd:subvertsArchetype rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:FunctionalArchetype ;
    rdfs:label "subverts archetype" .

wdd:evokesArchetype rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:FunctionalArchetype ;
    rdfs:label "evokes archetype" .

wdd:usesMaterial rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:Material ;
    rdfs:label "uses material" .

wdd:appliesSubtraction rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:SubtractionType ;
    rdfs:label "applies subtraction" .

# OWL 2 DL: inferred via property chain embodiesTension ∘ producesEffect
wdd:stimulatesEffect rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:CognitiveEffect ;
    rdfs:label "stimulates effect" ;
    owl:propertyChainAxiom ( wdd:embodiesTension wdd:producesEffect ) .

wdd:addressedTo rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:Audience ;
    rdfs:label "addressed to" .

wdd:excludesAudience rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:AntiAudience ;
    rdfs:label "excludes audience" .

wdd:realizedBy rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:MasterCraftsman ;
    rdfs:label "realized by" .

wdd:belongsToEdition rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:Edition ;
    rdfs:label "belongs to edition" .

wdd:createdBy rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:Author ;
    rdfs:label "created by" .

wdd:coCreatedBy rdf:type owl:ObjectProperty ;
    rdfs:subPropertyOf wdd:createdBy ;
    rdfs:label "co-created by" .

### Work relations — cultural
# OWL 2 DL: transitive — chains of influence are inferred
wdd:influencedBy rdf:type owl:ObjectProperty, owl:TransitiveProperty ;
    rdfs:label "influenced by" ;
    owl:propertyChainAxiom ( wdd:citesArtist wdd:belongsToMovement ) .

wdd:citesArtwork rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:ReferencedArtwork ;
    rdfs:label "cites artwork" .

wdd:citesArtist rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:ReferencePerson ;
    rdfs:label "cites artist" .

# OWL 2 DL: symmetric — dialogue is bidirectional
wdd:dialoguesWith rdf:type owl:ObjectProperty, owl:SymmetricProperty ;
    rdfs:label "dialogues with" .

wdd:appropriatesGesture rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:MovementPrinciple ;
    rdfs:label "appropriates gesture" .

wdd:critiques rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:SocialPhenomenon ;
    rdfs:label "critiques" .

wdd:embodiesConcept rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:PhilosophicalConcept ;
    rdfs:label "embodies concept" .

### Work relations — performative and sensory
wdd:requiresPerformativeAct rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:PerformativeAct ;
    rdfs:label "requires performative act" .

wdd:includesActivatingObject rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:ActivatingObject ;
    rdfs:label "includes activating object" .

wdd:activatesSense rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:HumanSense ;
    rdfs:label "activates sense" .

wdd:blocksSense rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:HumanSense ;
    rdfs:label "blocks sense" .

wdd:hasFruitionMode rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:FruitionMode ;
    rdfs:label "has fruition mode" .

### Work relations — series and corpus
# OWL 2 DL: transitive — evolution chains are inferred
wdd:isEvolutionOf rdf:type owl:ObjectProperty, owl:TransitiveProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:Work ;
    rdfs:label "is evolution of" .

# OWL 2 DL: symmetric
wdd:isAntithesisOf rdf:type owl:ObjectProperty, owl:SymmetricProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:Work ;
    rdfs:label "is antithesis of" .

wdd:belongsToSeries rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:Series ;
    rdfs:label "belongs to series" .

wdd:isCapostipiteOf rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:Series ;
    rdfs:label "is capostipite of" .

wdd:belongsToCorpus rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:CollaborationCorpus ;
    rdfs:label "belongs to corpus" .

wdd:hasStatus rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Work ;
    rdfs:range wdd:WorkStatus ;
    rdfs:label "has status" .

### Material relations
wdd:hasSymbolicValue rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Material ;
    rdfs:range wdd:SymbolicValue ;
    rdfs:label "has symbolic value" .

wdd:requiresTechnique rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Material ;
    rdfs:range wdd:CraftTechnique ;
    rdfs:label "requires technique" .

### Archetype relations
wdd:hasArchetypalFunction rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:FunctionalArchetype ;
    rdfs:range wdd:ArchetypalFunction ;
    rdfs:label "has archetypal function" .

### Cultural reference relations
wdd:belongsToMovement rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Person ;
    rdfs:range wdd:CulturalMovement ;
    rdfs:label "belongs to movement" .

wdd:hasPrinciple rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:CulturalMovement ;
    rdfs:range wdd:MovementPrinciple ;
    rdfs:label "has principle" .

wdd:createdByArtist rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:ReferencedArtwork ;
    rdfs:range wdd:ReferencePerson ;
    rdfs:label "created by artist" .

wdd:partOfMovement rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:ReferencedArtwork ;
    rdfs:range wdd:CulturalMovement ;
    rdfs:label "part of movement" .

### Creative process relations
# OWL 2 DL: transitive — phase ordering chains are inferred
wdd:followsPhase rdf:type owl:ObjectProperty, owl:TransitiveProperty ;
    rdfs:domain wdd:CreativePhase ;
    rdfs:range wdd:CreativePhase ;
    rdfs:label "follows phase" .

# OWL 2 DL: inverse
wdd:precedesPhase rdf:type owl:ObjectProperty ;
    owl:inverseOf wdd:followsPhase ;
    rdfs:label "precedes phase" .

wdd:hasSubPhase rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:CreativePhase ;
    rdfs:range wdd:CreativePhase ;
    rdfs:label "has sub-phase" .

wdd:producesOutput rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:CreativePhase ;
    rdfs:range wdd:CreativeOutput ;
    rdfs:label "produces output" .

### Relational model
# OWL 2 DL: transitive — engagement progression is inferred
wdd:followsEngagement rdf:type owl:ObjectProperty, owl:TransitiveProperty ;
    rdfs:domain wdd:EngagementPhase ;
    rdfs:range wdd:EngagementPhase ;
    rdfs:label "follows engagement" .

wdd:belongsToCircle rdf:type owl:ObjectProperty ;
    rdfs:domain wdd:Audience ;
    rdfs:range wdd:RelationalCircle ;
    rdfs:label "belongs to circle" .

### Wikidata alignment
wdd:wikidataMatch rdf:type owl:ObjectProperty ;
    rdfs:label "wikidata match" .

#################################################################
#    DATATYPE PROPERTIES
#################################################################

wdd:axiomStatement rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Axiom ; rdfs:range xsd:string .

wdd:manifestsAs rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:ConceptualTension ; rdfs:range xsd:string .

wdd:paradoxStatement rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Paradox ; rdfs:range xsd:string .

wdd:archiveCode rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Work ; rdfs:range xsd:string .

wdd:conceptionYear rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Work ; rdfs:range xsd:gYear .

wdd:editionTotal rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Work ; rdfs:range xsd:string .

wdd:editionUnit rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Work ; rdfs:range xsd:string .

wdd:minimumUnit rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Work ; rdfs:range xsd:string .

wdd:dimensionsCm rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Work ; rdfs:range xsd:string .

wdd:weightKg rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Work ; rdfs:range xsd:decimal .

wdd:productionLocation rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Work ; rdfs:range xsd:string .

wdd:manifestoText rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Work ; rdfs:range xsd:string .

wdd:questionPosed rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Work ; rdfs:range xsd:string .

wdd:symbolicNumber rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Work ; rdfs:range xsd:integer .

wdd:numberSource rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Work ; rdfs:range xsd:string .

wdd:numberMeaning rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Work ; rdfs:range xsd:string .

wdd:materialTemperature rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Material ; rdfs:range xsd:string .

wdd:materialTexture rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Material ; rdfs:range xsd:string .

wdd:materialReflectivity rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Material ; rdfs:range xsd:string .

wdd:materialStatus rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:Material ; rdfs:range xsd:string .

wdd:artworkYear rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:ReferencedArtwork ; rdfs:range xsd:gYear .

wdd:artworkDescription rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:ReferencedArtwork ; rdfs:range xsd:string .

wdd:phaseOrder rdf:type owl:DatatypeProperty ;
    rdfs:domain wdd:CreativePhase ; rdfs:range xsd:integer .

wdd:exclusionReason rdf:type owl:DatatypeProperty ;
    rdfs:range xsd:string .

#################################################################
#    CLASSES
#################################################################

#--- Thought System ---#

wdd:Axiom rdf:type owl:Class ; rdfs:label "Axiom"@en-GB .
wdd:MetaAxiom rdf:type owl:Class ; rdfs:label "Meta Axiom"@en-GB ; rdfs:subClassOf wdd:Axiom .
wdd:OperationalAxiom rdf:type owl:Class ; rdfs:label "Operational Axiom"@en-GB ; rdfs:subClassOf wdd:Axiom .
wdd:TraditionalParadigm rdf:type owl:Class ; rdfs:label "Traditional Paradigm"@en-GB .
wdd:OperationalPrinciple rdf:type owl:Class ; rdfs:label "Operational Principle"@en-GB .
wdd:ConceptualTension rdf:type owl:Class ; rdfs:label "Conceptual Tension"@en-GB .
wdd:Paradox rdf:type owl:Class ; rdfs:label "Paradox"@en-GB ; rdfs:subClassOf wdd:ConceptualTension .
wdd:ConceptualPole rdf:type owl:Class ; rdfs:label "Conceptual Pole"@en-GB .
wdd:CognitiveEffect rdf:type owl:Class ; rdfs:label "Cognitive Effect"@en-GB .
wdd:SubtractionType rdf:type owl:Class ; rdfs:label "Subtraction Type"@en-GB .
wdd:Rejection rdf:type owl:Class ; rdfs:label "Rejection"@en-GB .
wdd:ExplorationTheme rdf:type owl:Class ; rdfs:label "Exploration Theme"@en-GB .
wdd:ObjectNature rdf:type owl:Class ; rdfs:label "Object Nature"@en-GB .

#--- Creative Process ---#

wdd:CreativePhase rdf:type owl:Class ; rdfs:label "Creative Phase"@en-GB .
wdd:MacroPhase rdf:type owl:Class ; rdfs:label "Macro Phase"@en-GB ; rdfs:subClassOf wdd:CreativePhase .
wdd:SubPhase rdf:type owl:Class ; rdfs:label "Sub Phase"@en-GB ; rdfs:subClassOf wdd:CreativePhase .
wdd:CreativeOutput rdf:type owl:Class ; rdfs:label "Creative Output"@en-GB .

#--- Materials ---#

wdd:Material rdf:type owl:Class ; rdfs:label "Material"@en-GB .
wdd:ConceptualMaterial rdf:type owl:Class ; rdfs:label "Conceptual Material"@en-GB ;
    rdfs:subClassOf wdd:Material ; owl:disjointWith wdd:PhysicalMaterial .
wdd:PhysicalMaterial rdf:type owl:Class ; rdfs:label "Physical Material"@en-GB ; rdfs:subClassOf wdd:Material .

wdd:Metal rdf:type owl:Class ; rdfs:label "Metal"@en-GB ; rdfs:subClassOf wdd:PhysicalMaterial ; wdd:wikidataMatch wd:Q11426 .
wdd:FerrousMetal rdf:type owl:Class ; rdfs:label "Ferrous Metal"@en-GB ; rdfs:subClassOf wdd:Metal .
wdd:NonFerrousMetal rdf:type owl:Class ; rdfs:label "Non Ferrous Metal"@en-GB ; rdfs:subClassOf wdd:Metal .
wdd:PreciousMetal rdf:type owl:Class ; rdfs:label "Precious Metal"@en-GB ; rdfs:subClassOf wdd:Metal .

wdd:Wood rdf:type owl:Class ; rdfs:label "Wood"@en-GB ; rdfs:subClassOf wdd:PhysicalMaterial ; wdd:wikidataMatch wd:Q287 .
wdd:EuropeanWood rdf:type owl:Class ; rdfs:label "European Wood"@en-GB ; rdfs:subClassOf wdd:Wood .
wdd:ExoticWood rdf:type owl:Class ; rdfs:label "Exotic Wood"@en-GB ; rdfs:subClassOf wdd:Wood .
wdd:ModifiedWood rdf:type owl:Class ; rdfs:label "Modified Wood"@en-GB ; rdfs:subClassOf wdd:Wood .

wdd:Stone rdf:type owl:Class ; rdfs:label "Stone"@en-GB ; rdfs:subClassOf wdd:PhysicalMaterial ; wdd:wikidataMatch wd:Q22731 .
wdd:Marble rdf:type owl:Class ; rdfs:label "Marble"@en-GB ; rdfs:subClassOf wdd:Stone ; wdd:wikidataMatch wd:Q40861 .
wdd:Onyx rdf:type owl:Class ; rdfs:label "Onyx"@en-GB ; rdfs:subClassOf wdd:Stone ; wdd:wikidataMatch wd:Q180884 .
wdd:HardStone rdf:type owl:Class ; rdfs:label "Hard Stone"@en-GB ; rdfs:subClassOf wdd:Stone .
wdd:Granite rdf:type owl:Class ; rdfs:label "Granite"@en-GB ; rdfs:subClassOf wdd:Stone ; wdd:wikidataMatch wd:Q41177 .
wdd:OtherStone rdf:type owl:Class ; rdfs:label "Other Stone"@en-GB ; rdfs:subClassOf wdd:Stone .

wdd:Glass rdf:type owl:Class ; rdfs:label "Glass"@en-GB ; rdfs:subClassOf wdd:PhysicalMaterial ; wdd:wikidataMatch wd:Q11469 .
wdd:BlownGlass rdf:type owl:Class ; rdfs:label "Blown Glass"@en-GB ; rdfs:subClassOf wdd:Glass .
wdd:ColdWorkedGlass rdf:type owl:Class ; rdfs:label "Cold Worked Glass"@en-GB ; rdfs:subClassOf wdd:Glass .
wdd:SpecialGlass rdf:type owl:Class ; rdfs:label "Special Glass"@en-GB ; rdfs:subClassOf wdd:Glass .
wdd:Crystal rdf:type owl:Class ; rdfs:label "Crystal"@en-GB ; rdfs:subClassOf wdd:Glass .

wdd:Ceramic rdf:type owl:Class ; rdfs:label "Ceramic"@en-GB ; rdfs:subClassOf wdd:PhysicalMaterial ; wdd:wikidataMatch wd:Q45621 .
wdd:LowFireCeramic rdf:type owl:Class ; rdfs:label "Low Fire Ceramic"@en-GB ; rdfs:subClassOf wdd:Ceramic .
wdd:HighFireCeramic rdf:type owl:Class ; rdfs:label "High Fire Ceramic"@en-GB ; rdfs:subClassOf wdd:Ceramic .
wdd:RawEarth rdf:type owl:Class ; rdfs:label "Raw Earth"@en-GB ; rdfs:subClassOf wdd:Ceramic .

wdd:Textile rdf:type owl:Class ; rdfs:label "Textile"@en-GB ; rdfs:subClassOf wdd:PhysicalMaterial ; wdd:wikidataMatch wd:Q28823 .
wdd:AnimalFiber rdf:type owl:Class ; rdfs:label "Animal Fiber"@en-GB ; rdfs:subClassOf wdd:Textile .
wdd:PlantFiber rdf:type owl:Class ; rdfs:label "Plant Fiber"@en-GB ; rdfs:subClassOf wdd:Textile .
wdd:MetallicFiber rdf:type owl:Class ; rdfs:label "Metallic Fiber"@en-GB ; rdfs:subClassOf wdd:Textile .

wdd:Leather rdf:type owl:Class ; rdfs:label "Leather"@en-GB ; rdfs:subClassOf wdd:PhysicalMaterial ; wdd:wikidataMatch wd:Q286 .
wdd:Fragrance rdf:type owl:Class ; rdfs:label "Fragrance"@en-GB ; rdfs:subClassOf wdd:PhysicalMaterial .

wdd:SyntheticMaterial rdf:type owl:Class ; rdfs:label "Synthetic Material"@en-GB ; rdfs:subClassOf wdd:PhysicalMaterial .
wdd:Polymer rdf:type owl:Class ; rdfs:label "Polymer"@en-GB ; rdfs:subClassOf wdd:SyntheticMaterial .
wdd:Composite rdf:type owl:Class ; rdfs:label "Composite"@en-GB ; rdfs:subClassOf wdd:SyntheticMaterial .
wdd:Biomaterial rdf:type owl:Class ; rdfs:label "Biomaterial"@en-GB ; rdfs:subClassOf wdd:SyntheticMaterial .

wdd:MaterialPhilosophy rdf:type owl:Class ; rdfs:label "Material Philosophy"@en-GB .
wdd:SymbolicValue rdf:type owl:Class ; rdfs:label "Symbolic Value"@en-GB .
wdd:CraftTechnique rdf:type owl:Class ; rdfs:label "Craft Technique"@en-GB .

#--- Works and Editions ---#

wdd:Work rdf:type owl:Class ;
    rdfs:label "Work"@en-GB ;
    rdfs:comment "Conceptual object produced by WE DON'T DESIGN. Disjoint from industrial design as an IP-protection moat: WDD works are not instances of industrial design in the functionalist tradition."@en-GB ;
    owl:disjointWith wd:Q243606 .
wdd:MaterialWork rdf:type owl:Class ; rdfs:label "Material Work"@en-GB ; rdfs:subClassOf wdd:Work .
wdd:ImmaterialWork rdf:type owl:Class ; rdfs:label "Immaterial Work"@en-GB ; rdfs:subClassOf wdd:Work .
wdd:UniqueWork rdf:type owl:Class ; rdfs:label "Unique Work"@en-GB ; rdfs:subClassOf wdd:Work .
wdd:LimitedEditionWork rdf:type owl:Class ; rdfs:label "Limited Edition Work"@en-GB ; rdfs:subClassOf wdd:Work .
wdd:DivisibleEditionWork rdf:type owl:Class ; rdfs:label "Divisible Edition Work"@en-GB ; rdfs:subClassOf wdd:LimitedEditionWork .

# OWL 2 DL: auto-classified via restriction
wdd:PerformativeWork rdf:type owl:Class ; rdfs:label "Performative Work"@en-GB ;
    owl:equivalentClass [
        rdf:type owl:Class ;
        owl:intersectionOf (
            wdd:Work
            [ rdf:type owl:Restriction ;
              owl:onProperty wdd:requiresPerformativeAct ;
              owl:someValuesFrom wdd:PerformativeAct ]
        )
    ] .

wdd:Edition rdf:type owl:Class ; rdfs:label "Edition"@en-GB .
wdd:Series rdf:type owl:Class ; rdfs:label "Series"@en-GB .
wdd:CollaborationCorpus rdf:type owl:Class ; rdfs:label "Collaboration Corpus"@en-GB .
wdd:CraftsmanCorpus rdf:type owl:Class ; rdfs:label "Craftsman Corpus"@en-GB ; rdfs:subClassOf wdd:CollaborationCorpus .
wdd:BrandCorpus rdf:type owl:Class ; rdfs:label "Brand Corpus"@en-GB ; rdfs:subClassOf wdd:CollaborationCorpus .
wdd:AuthorCorpus rdf:type owl:Class ; rdfs:label "Author Corpus"@en-GB ; rdfs:subClassOf wdd:CollaborationCorpus .

wdd:SpecialProject rdf:type owl:Class ; rdfs:label "Special Project"@en-GB .
wdd:SiteSpecificInstallation rdf:type owl:Class ; rdfs:label "Site Specific Installation"@en-GB ; rdfs:subClassOf wdd:SpecialProject .
wdd:EditorialProject rdf:type owl:Class ; rdfs:label "Editorial Project"@en-GB ; rdfs:subClassOf wdd:SpecialProject .

wdd:WorkStatus rdf:type owl:Class ; rdfs:label "Work Status"@en-GB .

#--- People ---#

wdd:Person rdf:type owl:Class ; rdfs:label "Person"@en-GB .
wdd:Author rdf:type owl:Class ; rdfs:label "Author"@en-GB ; rdfs:subClassOf wdd:Person .
wdd:MasterCraftsman rdf:type owl:Class ; rdfs:label "Master Craftsman"@en-GB ; rdfs:subClassOf wdd:Person .
wdd:Parfumeur rdf:type owl:Class ; rdfs:label "Parfumeur"@en-GB ; rdfs:subClassOf wdd:Author .

#--- Audience (4-level taxonomy) ---#

wdd:Audience rdf:type owl:Class ; rdfs:label "Audience"@en-GB .

wdd:DirectInterlocutor rdf:type owl:Class ; rdfs:label "Direct Interlocutor"@en-GB ; rdfs:subClassOf wdd:Audience .

wdd:Interpreter rdf:type owl:Class ; rdfs:label "Interpreter"@en-GB ; rdfs:subClassOf wdd:DirectInterlocutor .
wdd:PhilosopherCollector rdf:type owl:Class ; rdfs:label "Philosopher Collector"@en-GB ; rdfs:subClassOf wdd:Interpreter .
wdd:DialogueCurator rdf:type owl:Class ; rdfs:label "Dialogue Curator"@en-GB ; rdfs:subClassOf wdd:Interpreter .
wdd:StudentResearcher rdf:type owl:Class ; rdfs:label "Student Researcher"@en-GB ; rdfs:subClassOf wdd:Interpreter .

wdd:Custodian rdf:type owl:Class ; rdfs:label "Custodian"@en-GB ; rdfs:subClassOf wdd:DirectInterlocutor .
wdd:CulturalPatron rdf:type owl:Class ; rdfs:label "Cultural Patron"@en-GB ; rdfs:subClassOf wdd:Custodian .
wdd:ArchivistCollector rdf:type owl:Class ; rdfs:label "Archivist Collector"@en-GB ; rdfs:subClassOf wdd:Custodian .
wdd:MuseumInstitution rdf:type owl:Class ; rdfs:label "Museum Institution"@en-GB ; rdfs:subClassOf wdd:Custodian .

wdd:Catalyst rdf:type owl:Class ; rdfs:label "Catalyst"@en-GB ; rdfs:subClassOf wdd:DirectInterlocutor .
wdd:VisionaryArchitect rdf:type owl:Class ; rdfs:label "Visionary Architect"@en-GB ; rdfs:subClassOf wdd:Catalyst .
wdd:IntellectualArtAdvisor rdf:type owl:Class ; rdfs:label "Intellectual Art Advisor"@en-GB ; rdfs:subClassOf wdd:Catalyst .

wdd:IndirectBeneficiary rdf:type owl:Class ; rdfs:label "Indirect Beneficiary"@en-GB ; rdfs:subClassOf wdd:Audience .

wdd:AntiAudience rdf:type owl:Class ; rdfs:label "Anti Audience"@en-GB ; owl:disjointWith wdd:Audience .

#--- Cultural References ---#

wdd:CulturalReference rdf:type owl:Class ; rdfs:label "Cultural Reference"@en-GB .
wdd:CulturalMovement rdf:type owl:Class ; rdfs:label "Cultural Movement"@en-GB ; rdfs:subClassOf wdd:CulturalReference .
wdd:ArtMovement rdf:type owl:Class ; rdfs:label "Art Movement"@en-GB ; rdfs:subClassOf wdd:CulturalMovement .
wdd:FashionMovement rdf:type owl:Class ; rdfs:label "Fashion Movement"@en-GB ; rdfs:subClassOf wdd:CulturalMovement .
wdd:ArchitecturalMovement rdf:type owl:Class ; rdfs:label "Architectural Movement"@en-GB ; rdfs:subClassOf wdd:CulturalMovement .
wdd:CinemaMovement rdf:type owl:Class ; rdfs:label "Cinema Movement"@en-GB ; rdfs:subClassOf wdd:CulturalMovement .
wdd:DesignMovement rdf:type owl:Class ; rdfs:label "Design Movement"@en-GB ; rdfs:subClassOf wdd:CulturalMovement .
wdd:PhilosophicalTradition rdf:type owl:Class ; rdfs:label "Philosophical Tradition"@en-GB ; rdfs:subClassOf wdd:CulturalReference .
wdd:MovementPrinciple rdf:type owl:Class ; rdfs:label "Movement Principle"@en-GB .
wdd:ReferencePerson rdf:type owl:Class ; rdfs:label "Reference Person"@en-GB ; rdfs:subClassOf wdd:Person, wdd:CulturalReference .
wdd:ReferencedArtwork rdf:type owl:Class ; rdfs:label "Referenced Artwork"@en-GB .
wdd:SocialPhenomenon rdf:type owl:Class ; rdfs:label "Social Phenomenon"@en-GB .
wdd:PhilosophicalConcept rdf:type owl:Class ; rdfs:label "Philosophical Concept"@en-GB .

#--- Relational Model ---#

wdd:EngagementPhase rdf:type owl:Class ; rdfs:label "Engagement Phase"@en-GB .
wdd:DiscoveryPhase rdf:type owl:Class ; rdfs:label "Discovery Phase"@en-GB ; rdfs:subClassOf wdd:EngagementPhase .
wdd:InvestigationPhase rdf:type owl:Class ; rdfs:label "Investigation Phase"@en-GB ; rdfs:subClassOf wdd:EngagementPhase .
wdd:FirstActPhase rdf:type owl:Class ; rdfs:label "First Act Phase"@en-GB ; rdfs:subClassOf wdd:EngagementPhase .
wdd:BelongingPhase rdf:type owl:Class ; rdfs:label "Belonging Phase"@en-GB ; rdfs:subClassOf wdd:EngagementPhase .

wdd:RelationalCircle rdf:type owl:Class ; rdfs:label "Relational Circle"@en-GB .
wdd:InnerCircle rdf:type owl:Class ; rdfs:label "Inner Circle"@en-GB ; rdfs:subClassOf wdd:RelationalCircle .
wdd:IntermediateCircle rdf:type owl:Class ; rdfs:label "Intermediate Circle"@en-GB ; rdfs:subClassOf wdd:RelationalCircle .
wdd:OuterCircle rdf:type owl:Class ; rdfs:label "Outer Circle"@en-GB ; rdfs:subClassOf wdd:RelationalCircle .
wdd:PeripheralCircle rdf:type owl:Class ; rdfs:label "Peripheral Circle"@en-GB ; rdfs:subClassOf wdd:RelationalCircle .

wdd:ExclusiveEngagement rdf:type owl:Class ; rdfs:label "Exclusive Engagement"@en-GB .

#--- Narrative ---#

wdd:NarrativeLayer rdf:type owl:Class ; rdfs:label "Narrative Layer"@en-GB .
wdd:PerformativeAct rdf:type owl:Class ; rdfs:label "Performative Act"@en-GB .
wdd:DestructiveAct rdf:type owl:Class ; rdfs:label "Destructive Act"@en-GB ; rdfs:subClassOf wdd:PerformativeAct .
wdd:TransformativeAct rdf:type owl:Class ; rdfs:label "Transformative Act"@en-GB ; rdfs:subClassOf wdd:PerformativeAct .
wdd:ContemplativeAct rdf:type owl:Class ; rdfs:label "Contemplative Act"@en-GB ; rdfs:subClassOf wdd:PerformativeAct .
wdd:ActivatingObject rdf:type owl:Class ; rdfs:label "Activating Object"@en-GB .
wdd:HumanSense rdf:type owl:Class ; rdfs:label "Human Sense"@en-GB .
wdd:FruitionMode rdf:type owl:Class ; rdfs:label "Fruition Mode"@en-GB .
wdd:ArchetypalFunction rdf:type owl:Class ; rdfs:label "Archetypal Function"@en-GB .

#--- Archetypes ---#

wdd:FunctionalArchetype rdf:type owl:Class ; rdfs:label "Functional Archetype"@en-GB .
wdd:SpaceStructureArchetype rdf:type owl:Class ; rdfs:label "Space Structure Archetype"@en-GB ; rdfs:subClassOf wdd:FunctionalArchetype .
wdd:PerceptionArchetype rdf:type owl:Class ; rdfs:label "Perception Archetype"@en-GB ; rdfs:subClassOf wdd:FunctionalArchetype .
wdd:RitualArchetype rdf:type owl:Class ; rdfs:label "Ritual Archetype"@en-GB ; rdfs:subClassOf wdd:FunctionalArchetype .
wdd:KnowledgeArchetype rdf:type owl:Class ; rdfs:label "Knowledge Archetype"@en-GB ; rdfs:subClassOf wdd:FunctionalArchetype .

#--- Ethics ---#

wdd:EthicalPrinciple rdf:type owl:Class ; rdfs:label "Ethical Principle"@en-GB .

#--- Research and Inspiration ---#

wdd:ResearchTerritory rdf:type owl:Class ; rdfs:label "Research Territory"@en-GB .
wdd:InspirationSource rdf:type owl:Class ; rdfs:label "Inspiration Source"@en-GB .
wdd:InvestigationModality rdf:type owl:Class ; rdfs:label "Investigation Modality"@en-GB .

#################################################################
#    INDIVIDUALS — THOUGHT SYSTEM
#################################################################

#--- Traditional Paradigms ---#

wdd:FunctionalistParadigm rdf:type owl:NamedIndividual , wdd:TraditionalParadigm ;
    rdfs:label "Functionalist Paradigm" .

wdd:FormFollowsFunctionParadigm rdf:type owl:NamedIndividual , wdd:TraditionalParadigm ;
    rdfs:label "Form Follows Function Paradigm" .

wdd:LessIsMoreParadigm rdf:type owl:NamedIndividual , wdd:TraditionalParadigm ;
    rdfs:label "Less Is More Paradigm" .

wdd:ProblemSolvingParadigm rdf:type owl:NamedIndividual , wdd:TraditionalParadigm ;
    rdfs:label "Problem Solving Paradigm" .

wdd:IndustrialDesignParadigm rdf:type owl:NamedIndividual , wdd:TraditionalParadigm ;
    rdfs:label "Industrial Design Paradigm" .

#--- Axioms ---#

wdd:AX01_WeDontDesign rdf:type owl:NamedIndividual , wdd:MetaAxiom ;
    rdfs:label "We Don't Design" ;
    wdd:axiomStatement "We don't design" ;
    wdd:negatesParadigm wdd:IndustrialDesignParadigm .

wdd:AX02_FormFollowsMeaning rdf:type owl:NamedIndividual , wdd:OperationalAxiom ;
    rdfs:label "Form Follows Meaning" ;
    wdd:axiomStatement "Form follows meaning" ;
    wdd:negatesParadigm wdd:FormFollowsFunctionParadigm ;
    wdd:impliesRule wdd:ConceptPrimacy, wdd:AntiDecorativism,
        wdd:SemanticCoherence, wdd:FormAsVehicle .

wdd:AX03_AbsenceIsMore rdf:type owl:NamedIndividual , wdd:OperationalAxiom ;
    rdfs:label "Absence Is More" ;
    wdd:axiomStatement "Absence is more" ;
    wdd:negatesParadigm wdd:LessIsMoreParadigm ;
    wdd:impliesRule wdd:VoidFunctionalization, wdd:HorrorVacuiCritique,
        wdd:SilenceAsContent, wdd:SubtractionAsCreation .

wdd:AX04_DesignIsQuestion rdf:type owl:NamedIndividual , wdd:OperationalAxiom ;
    rdfs:label "Design Is Question, Not Solution" ;
    wdd:axiomStatement "Design is a question, not a solution" ;
    wdd:negatesParadigm wdd:ProblemSolvingParadigm ;
    wdd:impliesRule wdd:ProblemSolvingRejection, wdd:ObjectualEnigma,
        wdd:IntentionalAmbiguity, wdd:HermeneuticInteraction, wdd:QuestionAsSuccess .

#--- Operational Principles ---#

wdd:ConceptPrimacy rdf:type owl:NamedIndividual , wdd:OperationalPrinciple ; rdfs:label "Concept Primacy" .
wdd:AntiDecorativism rdf:type owl:NamedIndividual , wdd:OperationalPrinciple ; rdfs:label "Anti-Decorativism" .
wdd:SemanticCoherence rdf:type owl:NamedIndividual , wdd:OperationalPrinciple ; rdfs:label "Semantic Coherence" .
wdd:FormAsVehicle rdf:type owl:NamedIndividual , wdd:OperationalPrinciple ; rdfs:label "Form As Vehicle" .
wdd:VoidFunctionalization rdf:type owl:NamedIndividual , wdd:OperationalPrinciple ; rdfs:label "Void Functionalization" .
wdd:HorrorVacuiCritique rdf:type owl:NamedIndividual , wdd:OperationalPrinciple ; rdfs:label "Horror Vacui Critique" .
wdd:SilenceAsContent rdf:type owl:NamedIndividual , wdd:OperationalPrinciple ; rdfs:label "Silence As Content" .
wdd:SubtractionAsCreation rdf:type owl:NamedIndividual , wdd:OperationalPrinciple ; rdfs:label "Subtraction As Creation" .
wdd:ProblemSolvingRejection rdf:type owl:NamedIndividual , wdd:OperationalPrinciple ; rdfs:label "Problem Solving Rejection" .
wdd:ObjectualEnigma rdf:type owl:NamedIndividual , wdd:OperationalPrinciple ; rdfs:label "Objectual Enigma" .
wdd:IntentionalAmbiguity rdf:type owl:NamedIndividual , wdd:OperationalPrinciple ; rdfs:label "Intentional Ambiguity" .
wdd:HermeneuticInteraction rdf:type owl:NamedIndividual , wdd:OperationalPrinciple ; rdfs:label "Hermeneutic Interaction" .
wdd:QuestionAsSuccess rdf:type owl:NamedIndividual , wdd:OperationalPrinciple ; rdfs:label "Question As Success" .

#--- Cognitive Effects ---#

wdd:CognitiveDissonance rdf:type owl:NamedIndividual , wdd:CognitiveEffect ; rdfs:label "Cognitive Dissonance" .
wdd:MentalSpaceActivation rdf:type owl:NamedIndividual , wdd:CognitiveEffect ; rdfs:label "Mental Space Activation" .
wdd:AutomatismInterruption rdf:type owl:NamedIndividual , wdd:CognitiveEffect ; rdfs:label "Automatism Interruption" .
wdd:ExpectationSubversion rdf:type owl:NamedIndividual , wdd:CognitiveEffect ; rdfs:label "Expectation Subversion" .
wdd:ValueShortCircuit rdf:type owl:NamedIndividual , wdd:CognitiveEffect ; rdfs:label "Value Short Circuit" .
wdd:InterpretiveEnigma rdf:type owl:NamedIndividual , wdd:CognitiveEffect ; rdfs:label "Interpretive Enigma" .
wdd:ProgressiveEngagement rdf:type owl:NamedIndividual , wdd:CognitiveEffect ; rdfs:label "Progressive Engagement" .
wdd:CategoryBlur rdf:type owl:NamedIndividual , wdd:CognitiveEffect ; rdfs:label "Category Blur" .
wdd:CriticalThinking rdf:type owl:NamedIndividual , wdd:CognitiveEffect ; rdfs:label "Critical Thinking" .
wdd:Introspection rdf:type owl:NamedIndividual , wdd:CognitiveEffect ; rdfs:label "Introspection" .
wdd:ExistentialChoice rdf:type owl:NamedIndividual , wdd:CognitiveEffect ; rdfs:label "Existential Choice" .
wdd:SensoryFrustration rdf:type owl:NamedIndividual , wdd:CognitiveEffect ; rdfs:label "Sensory Frustration" .
wdd:TemporalAwareness rdf:type owl:NamedIndividual , wdd:CognitiveEffect ; rdfs:label "Temporal Awareness" .

#--- Conceptual Poles ---#

wdd:Presence rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Presence" .
wdd:Absence rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Absence" .
wdd:Fullness rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Fullness" .
wdd:Void rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Void" .
wdd:PracticalUtility rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Practical Utility" .
wdd:ReflectiveFunction rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Reflective Function" .
wdd:ExpectedFunction rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Expected Function" .
wdd:ActualNonFunction rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Actual Non-Function" .
wdd:NobleMaterial rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Noble Material" .
wdd:BrutalForm rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Brutal Form" .
wdd:Concept rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Concept" .
wdd:Name rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Name" .
wdd:FormalSimplicity rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Formal Simplicity" .
wdd:IntellectualComplexity rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Intellectual Complexity" .
wdd:NaturalMaterial rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Natural Material" .
wdd:ArtificialMaterial rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Artificial Material" .
wdd:RawMaterial rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Raw Material" .
wdd:ProcessedMaterial rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Processed Material" .
wdd:HeavyMaterial rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Heavy Material" .
wdd:LightFunction rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Light Function" .
wdd:FragileMaterial rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Fragile Material" .
wdd:RobustFunction rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Robust Function" .
wdd:PreciousMaterialPole rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Precious Material" .
wdd:HumbleFunction rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Humble Function" .
wdd:RadicalWork rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Radical Work" .
wdd:ConservativeContext rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Conservative Context" .
wdd:ConceptualWorkPole rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Conceptual Work" .
wdd:LuxuryContext rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Luxury Context" .
wdd:ScientificName rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Scientific Name" .
wdd:PoeticObject rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Poetic Object" .
wdd:PromiseName rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Promise Name" .
wdd:DenyingObject rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Denying Object" .
wdd:MuteMatter rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Mute Matter" .
wdd:SpeakingMatter rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Speaking Matter" .
wdd:GeometricInfinite rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Geometric Infinite" .
wdd:PhysicalLimit rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Physical Limit" .
wdd:Permanence rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Permanence" .
wdd:Erosion rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Erosion" .
wdd:Possession rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Possession" .
wdd:Experience rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Experience" .
wdd:Creation rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Creation" .
wdd:Destruction rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Destruction" .
wdd:VisibleForm rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Visible Form" .
wdd:InvisibleContent rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Invisible Content" .
wdd:MaterialIdentity rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Material Identity" .
wdd:EconomicValue rdf:type owl:NamedIndividual , wdd:ConceptualPole ; rdfs:label "Economic Value" .

#--- Conceptual Tensions (T01–T22) ---#

wdd:T01_PresenceAbsence rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Presence/Absence" ;
    wdd:hasPoleA wdd:Presence ; wdd:hasPoleB wdd:Absence ;
    wdd:manifestsAs "Object evokes presence through deliberate void" ;
    wdd:producesEffect wdd:CognitiveDissonance .

wdd:T02_FullnessVoid rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Fullness/Void" ;
    wdd:hasPoleA wdd:Fullness ; wdd:hasPoleB wdd:Void ;
    wdd:manifestsAs "Structural void as active element" ;
    wdd:producesEffect wdd:MentalSpaceActivation .

wdd:T03_UtilityReflection rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Utility/Reflection" ;
    wdd:hasPoleA wdd:PracticalUtility ; wdd:hasPoleB wdd:ReflectiveFunction ;
    wdd:manifestsAs "Archetype stripped of primary function" ;
    wdd:producesEffect wdd:AutomatismInterruption .

wdd:T04_ExpectedActual rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Expected Function/Actual Non-Function" ;
    wdd:hasPoleA wdd:ExpectedFunction ; wdd:hasPoleB wdd:ActualNonFunction ;
    wdd:manifestsAs "Chair that cannot be sat upon" ;
    wdd:producesEffect wdd:ExpectationSubversion .

wdd:T05_NobleBrutal rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Noble Material/Brutal Form" ;
    wdd:hasPoleA wdd:NobleMaterial ; wdd:hasPoleB wdd:BrutalForm ;
    wdd:manifestsAs "Gold treated as raw iron" ;
    wdd:producesEffect wdd:ValueShortCircuit .

wdd:T06_ConceptName rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Concept/Name" ;
    wdd:hasPoleA wdd:Concept ; wdd:hasPoleB wdd:Name ;
    wdd:manifestsAs "Poetic title with mute form (or vice versa)" ;
    wdd:producesEffect wdd:InterpretiveEnigma .

wdd:T07_SimplicityComplexity rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Formal Simplicity/Intellectual Complexity" ;
    wdd:hasPoleA wdd:FormalSimplicity ; wdd:hasPoleB wdd:IntellectualComplexity ;
    wdd:manifestsAs "Minimal form with dense semantic stratification" ;
    wdd:producesEffect wdd:ProgressiveEngagement .

wdd:T08_NaturalArtificial rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Natural/Artificial" ;
    wdd:hasPoleA wdd:NaturalMaterial ; wdd:hasPoleB wdd:ArtificialMaterial ;
    wdd:producesEffect wdd:CategoryBlur .

wdd:T09_RawProcessed rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Raw/Processed" ;
    wdd:hasPoleA wdd:RawMaterial ; wdd:hasPoleB wdd:ProcessedMaterial ;
    wdd:producesEffect wdd:CategoryBlur .

wdd:T10_HeavyLight rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Heavy Material/Light Function" ;
    wdd:hasPoleA wdd:HeavyMaterial ; wdd:hasPoleB wdd:LightFunction ;
    wdd:producesEffect wdd:ExpectationSubversion .

wdd:T11_FragileRobust rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Fragile Material/Robust Function" ;
    wdd:hasPoleA wdd:FragileMaterial ; wdd:hasPoleB wdd:RobustFunction ;
    wdd:producesEffect wdd:ExpectationSubversion .

wdd:T12_PreciousHumble rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Precious Material/Humble Function" ;
    wdd:hasPoleA wdd:PreciousMaterialPole ; wdd:hasPoleB wdd:HumbleFunction ;
    wdd:producesEffect wdd:ValueShortCircuit .

wdd:T13_RadicalConservative rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Radical Work/Conservative Context" ;
    wdd:hasPoleA wdd:RadicalWork ; wdd:hasPoleB wdd:ConservativeContext ;
    wdd:producesEffect wdd:CognitiveDissonance .

wdd:T14_ConceptualLuxury rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Conceptual Work/Luxury Context" ;
    wdd:hasPoleA wdd:ConceptualWorkPole ; wdd:hasPoleB wdd:LuxuryContext ;
    wdd:producesEffect wdd:CriticalThinking .

wdd:T15_ScientificPoetic rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Scientific Name/Poetic Object" ;
    wdd:hasPoleA wdd:ScientificName ; wdd:hasPoleB wdd:PoeticObject ;
    wdd:producesEffect wdd:InterpretiveEnigma .

wdd:T16_PromiseDenying rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Promise Name/Denying Object" ;
    wdd:hasPoleA wdd:PromiseName ; wdd:hasPoleB wdd:DenyingObject ;
    wdd:producesEffect wdd:ExpectationSubversion .

wdd:T17_PhysicalitySemantics rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Physicality/Semantics" ;
    wdd:hasPoleA wdd:MuteMatter ; wdd:hasPoleB wdd:SpeakingMatter ;
    wdd:producesEffect wdd:ValueShortCircuit .

wdd:T18_InfiniteFinite rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Infinite/Finite" ;
    wdd:hasPoleA wdd:GeometricInfinite ; wdd:hasPoleB wdd:PhysicalLimit ;
    wdd:producesEffect wdd:CognitiveDissonance .

wdd:T19_PermanenceErosion rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Permanence/Erosion" ;
    wdd:hasPoleA wdd:Permanence ; wdd:hasPoleB wdd:Erosion ;
    wdd:producesEffect wdd:TemporalAwareness .

wdd:T20_PossessionExperience rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Possession/Experience" ;
    wdd:hasPoleA wdd:Possession ; wdd:hasPoleB wdd:Experience ;
    wdd:producesEffect wdd:ExistentialChoice .

wdd:T21_CreationDestruction rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Creation/Destruction" ;
    wdd:hasPoleA wdd:Creation ; wdd:hasPoleB wdd:Destruction ;
    wdd:producesEffect wdd:ExistentialChoice .

wdd:T22_VisibleInvisible rdf:type owl:NamedIndividual , wdd:ConceptualTension ;
    rdfs:label "Visible/Invisible" ;
    wdd:hasPoleA wdd:VisibleForm ; wdd:hasPoleB wdd:InvisibleContent ;
    wdd:producesEffect wdd:SensoryFrustration .

#--- Paradoxes (P01–P11) ---#

wdd:P01_VisibilityOfImmaterial rdf:type owl:NamedIndividual , wdd:Paradox ;
    rdfs:label "Visibility of Immaterial" ;
    wdd:paradoxStatement "Render visible that which is immaterial" ;
    wdd:producesEffect wdd:MentalSpaceActivation .

wdd:P02_WeightOfVoid rdf:type owl:NamedIndividual , wdd:Paradox ;
    rdfs:label "Weight of Void" ;
    wdd:paradoxStatement "Give weight and physical presence to void" ;
    wdd:producesEffect wdd:CognitiveDissonance .

wdd:P03_UtilityOfUseless rdf:type owl:NamedIndividual , wdd:Paradox ;
    rdfs:label "Utility of Useless" ;
    wdd:paradoxStatement "Practical uselessness as maximum utility" ;
    wdd:producesEffect wdd:CriticalThinking .

wdd:P04_FunctionOfLack rdf:type owl:NamedIndividual , wdd:Paradox ;
    rdfs:label "Function of Lack" ;
    wdd:paradoxStatement "Lack as additional function" ;
    wdd:producesEffect wdd:Introspection .

wdd:P05_SilenceOfComplex rdf:type owl:NamedIndividual , wdd:Paradox ;
    rdfs:label "Silence of Complex" ;
    wdd:paradoxStatement "Complex object presented with absolute silence" ;
    wdd:producesEffect wdd:InterpretiveEnigma .

wdd:P06_VerbosityOfSimple rdf:type owl:NamedIndividual , wdd:Paradox ;
    rdfs:label "Verbosity of Simple" ;
    wdd:paradoxStatement "Simple object described with dense philosophical text" ;
    wdd:producesEffect wdd:CognitiveDissonance .

wdd:P07_ReflectionWithoutIdentity rdf:type owl:NamedIndividual , wdd:Paradox ;
    rdfs:label "Reflection Without Identity" ;
    wdd:paradoxStatement "Mirror that reflects everything except the face" ;
    wdd:producesEffect wdd:Introspection .

wdd:P08_DivisibilityOfInfinite rdf:type owl:NamedIndividual , wdd:Paradox ;
    rdfs:label "Divisibility of Infinite" ;
    wdd:paradoxStatement "Possess a fragment of infinity" ;
    wdd:producesEffect wdd:CognitiveDissonance .

wdd:P09_RuinAsForm rdf:type owl:NamedIndividual , wdd:Paradox ;
    rdfs:label "Ruin As Form" ;
    wdd:paradoxStatement "Incompleteness as definitive form" ;
    wdd:producesEffect wdd:MentalSpaceActivation .

wdd:P10_DestructionForFruition rdf:type owl:NamedIndividual , wdd:Paradox ;
    rdfs:label "Destruction For Fruition" ;
    wdd:paradoxStatement "Destroy the work to experience it fully" ;
    wdd:producesEffect wdd:ExistentialChoice .

wdd:P11_SelfAnnihilatingValue rdf:type owl:NamedIndividual , wdd:Paradox ;
    rdfs:label "Self-Annihilating Value" ;
    wdd:paradoxStatement "Value that reaches zero at moment of maximum experience" ;
    wdd:producesEffect wdd:CriticalThinking .

#--- Subtraction Types ---#

wdd:FunctionalSubtraction rdf:type owl:NamedIndividual , wdd:SubtractionType ; rdfs:label "Functional Subtraction" .
wdd:ErgonomicSubtraction rdf:type owl:NamedIndividual , wdd:SubtractionType ; rdfs:label "Ergonomic Subtraction" .
wdd:MaterialSubtraction rdf:type owl:NamedIndividual , wdd:SubtractionType ; rdfs:label "Material Subtraction" .
wdd:SkeletalReduction rdf:type owl:NamedIndividual , wdd:SubtractionType ; rdfs:label "Skeletal Reduction" .
wdd:DecorativeSubtraction rdf:type owl:NamedIndividual , wdd:SubtractionType ; rdfs:label "Decorative Subtraction" .
wdd:NarrativeSubtraction rdf:type owl:NamedIndividual , wdd:SubtractionType ; rdfs:label "Narrative Subtraction" .
wdd:NamingSubtraction rdf:type owl:NamedIndividual , wdd:SubtractionType ; rdfs:label "Naming Subtraction" .

#--- Rejections ---#

wdd:RejectsDecorativism rdf:type owl:NamedIndividual , wdd:Rejection ; rdfs:label "Rejects Decorativism" .
wdd:RejectsStyleAsMask rdf:type owl:NamedIndividual , wdd:Rejection ; rdfs:label "Rejects Style As Mask" .
wdd:RejectsTasteHomogenization rdf:type owl:NamedIndividual , wdd:Rejection ; rdfs:label "Rejects Taste Homogenisation" .
wdd:RejectsPlannedObsolescence rdf:type owl:NamedIndividual , wdd:Rejection ; rdfs:label "Rejects Planned Obsolescence" .
wdd:RejectsUtilitarianism rdf:type owl:NamedIndividual , wdd:Rejection ; rdfs:label "Rejects Utilitarianism" .
wdd:RejectsErgonomicPriority rdf:type owl:NamedIndividual , wdd:Rejection ; rdfs:label "Rejects Ergonomic Priority" .

#################################################################
#    INDIVIDUALS — CREATIVE PROCESS (NEW)
#################################################################

wdd:PHASE_Emergence rdf:type owl:NamedIndividual , wdd:MacroPhase ;
    rdfs:label "Conceptual Emergence" ;
    wdd:phaseOrder 1 ;
    wdd:hasSubPhase wdd:SUB_FreeResearch, wdd:SUB_ContemporaryObservation,
        wdd:SUB_PureExperimentation, wdd:SUB_Crystallisation .

wdd:PHASE_Definition rdf:type owl:NamedIndividual , wdd:MacroPhase ;
    rdfs:label "Definition and Development" ;
    wdd:phaseOrder 2 ;
    wdd:followsPhase wdd:PHASE_Emergence ;
    wdd:hasSubPhase wdd:SUB_ManifestoDevelopment, wdd:SUB_ConceptualNaming,
        wdd:SUB_AbstractVisualisation, wdd:SUB_FeasibilityAnalysis .

wdd:PHASE_MaterialDesign rdf:type owl:NamedIndividual , wdd:MacroPhase ;
    rdfs:label "Material and Artisanal Design" ;
    wdd:phaseOrder 3 ;
    wdd:followsPhase wdd:PHASE_Definition ;
    wdd:hasSubPhase wdd:SUB_SemanticMaterialSelection, wdd:SUB_ArtisanScouting,
        wdd:SUB_TechnicalEngineering .

wdd:PHASE_Realisation rdf:type owl:NamedIndividual , wdd:MacroPhase ;
    rdfs:label "Realisation" ;
    wdd:phaseOrder 4 ;
    wdd:followsPhase wdd:PHASE_MaterialDesign ;
    wdd:hasSubPhase wdd:SUB_Procurement, wdd:SUB_Prototyping,
        wdd:SUB_FinalProduction, wdd:SUB_QualityControl .

wdd:PHASE_Contextualisation rdf:type owl:NamedIndividual , wdd:MacroPhase ;
    rdfs:label "Contextualisation and Diffusion" ;
    wdd:phaseOrder 5 ;
    wdd:followsPhase wdd:PHASE_Realisation ;
    wdd:hasSubPhase wdd:SUB_ProjectIdentity, wdd:SUB_Documentation,
        wdd:SUB_LaunchStrategy, wdd:SUB_NetworkManagement .

### Sub-phases
wdd:SUB_FreeResearch rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Free Research" .
wdd:SUB_ContemporaryObservation rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Contemporary Observation" .
wdd:SUB_PureExperimentation rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Pure Experimentation" .
wdd:SUB_Crystallisation rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Intuition and Crystallisation" .
wdd:SUB_ManifestoDevelopment rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Manifesto Development" .
wdd:SUB_ConceptualNaming rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Conceptual Naming" .
wdd:SUB_AbstractVisualisation rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Abstract Visualisation" .
wdd:SUB_FeasibilityAnalysis rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Feasibility Analysis" .
wdd:SUB_SemanticMaterialSelection rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Semantic Material Selection" .
wdd:SUB_ArtisanScouting rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Artisan Scouting and Selection" .
wdd:SUB_TechnicalEngineering rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Technical Engineering" .
wdd:SUB_Procurement rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Procurement" .
wdd:SUB_Prototyping rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Prototyping" .
wdd:SUB_FinalProduction rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Final Production" .
wdd:SUB_QualityControl rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Quality Control" .
wdd:SUB_ProjectIdentity rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Project Visual Identity" .
wdd:SUB_Documentation rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Documentation" .
wdd:SUB_LaunchStrategy rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Launch Strategy" .
wdd:SUB_NetworkManagement rdf:type owl:NamedIndividual , wdd:SubPhase ; rdfs:label "Network Management" .

#################################################################
#    INDIVIDUALS — CULTURAL REFERENCES (EXPANDED)
#################################################################

#--- Art Movements ---#

wdd:MOV_Spatialism rdf:type owl:NamedIndividual , wdd:ArtMovement ; rdfs:label "Spatialism" ; wdd:wikidataMatch wd:Q2297997 ;
    wdd:hasPrinciple wdd:PRINC_GestureAsPrimary, wdd:PRINC_SurfaceTranscendence,
        wdd:PRINC_VoidAsMeaning, wdd:PRINC_ConceptualIrony .

wdd:MOV_ArtePovera rdf:type owl:NamedIndividual , wdd:ArtMovement ; rdfs:label "Arte Povera" ; wdd:wikidataMatch wd:Q576913 ;
    wdd:hasPrinciple wdd:PRINC_HumbleMaterials, wdd:PRINC_PrimaryEnergy, wdd:PRINC_PhysicalCreativeAct .

wdd:MOV_Dadaism rdf:type owl:NamedIndividual , wdd:ArtMovement ; rdfs:label "Dadaism" ; wdd:wikidataMatch wd:Q6034 ;
    wdd:hasPrinciple wdd:PRINC_Decontextualisation, wdd:PRINC_InstitutionalCritique,
        wdd:PRINC_BeautyRejection, wdd:PRINC_ChanceAsMethod .

wdd:MOV_ConceptualArt rdf:type owl:NamedIndividual , wdd:ArtMovement ; rdfs:label "Conceptual Art" ; wdd:wikidataMatch wd:Q203209 ;
    wdd:hasPrinciple wdd:PRINC_IdeaSupremacy, wdd:PRINC_WorkAsSystem, wdd:PRINC_Tautology .

wdd:MOV_Minimalism rdf:type owl:NamedIndividual , wdd:ArtMovement ; rdfs:label "Minimalism" ; wdd:wikidataMatch wd:Q173436 ;
    wdd:hasPrinciple wdd:PRINC_EssentialReduction, wdd:PRINC_ExpressionRejection .

wdd:MOV_PopArt rdf:type owl:NamedIndividual , wdd:ArtMovement ; rdfs:label "Pop Art" ; wdd:wikidataMatch wd:Q134147 ;
    wdd:hasPrinciple wdd:PRINC_Decontextualisation, wdd:PRINC_SerialityCritique .

wdd:MOV_PerformativeArt rdf:type owl:NamedIndividual , wdd:ArtMovement ; rdfs:label "Performative Art" ;
    wdd:hasPrinciple wdd:PRINC_TimeAsMaterial, wdd:PRINC_ExperienceOverObject, wdd:PRINC_ActiveSpectator .

#--- Fashion Movements ---#

wdd:MOV_BelgianDeconstruction rdf:type owl:NamedIndividual , wdd:FashionMovement ; rdfs:label "Belgian Deconstruction" ;
    wdd:hasPrinciple wdd:PRINC_StructureRevelation, wdd:PRINC_AnonymityAesthetic, wdd:PRINC_ConceptualReuse .

wdd:MOV_JapaneseAvantGarde rdf:type owl:NamedIndividual , wdd:FashionMovement ; rdfs:label "Japanese Avant-Garde" ;
    wdd:hasPrinciple wdd:PRINC_AsymmetryRejection, wdd:PRINC_BlackAsAbsolute, wdd:PRINC_TextileAsSculpture .

wdd:MOV_IntellectualConceptualism rdf:type owl:NamedIndividual , wdd:FashionMovement ; rdfs:label "Intellectual Conceptualism" ;
    wdd:hasPrinciple wdd:PRINC_UglinessAsCritique .

wdd:MOV_AustereMinimaism rdf:type owl:NamedIndividual , wdd:FashionMovement ; rdfs:label "Austere Minimalism" ;
    wdd:hasPrinciple wdd:PRINC_OrnamentAbsence, wdd:PRINC_CutQuality .

wdd:MOV_TechnologicalFuturism rdf:type owl:NamedIndividual , wdd:FashionMovement ; rdfs:label "Technological Futurism" .

#--- Architectural Movements ---#

wdd:MOV_ArchMinimalism rdf:type owl:NamedIndividual , wdd:ArchitecturalMovement ; rdfs:label "Architectural Minimalism" ;
    wdd:hasPrinciple wdd:PRINC_PureGeometry, wdd:PRINC_VoidAsDesign, wdd:PRINC_LightDefinesSpace .

wdd:MOV_Brutalism rdf:type owl:NamedIndividual , wdd:ArchitecturalMovement ; rdfs:label "Brutalism" ;
    wdd:hasPrinciple wdd:PRINC_StructuralHonesty, wdd:PRINC_OrnamentRejection .

wdd:MOV_JapaneseArch rdf:type owl:NamedIndividual , wdd:ArchitecturalMovement ; rdfs:label "Japanese Architecture" ;
    wdd:hasPrinciple wdd:PRINC_MaVoid, wdd:PRINC_NatureConnection .

wdd:MOV_ArchDeconstruction rdf:type owl:NamedIndividual , wdd:ArchitecturalMovement ; rdfs:label "Architectural Deconstruction" ;
    wdd:hasPrinciple wdd:PRINC_VolumeFragmentation, wdd:PRINC_DisorientingSpaces .

wdd:MOV_PoeticRationalism rdf:type owl:NamedIndividual , wdd:ArchitecturalMovement ; rdfs:label "Poetic Rationalism" ;
    wdd:hasPrinciple wdd:PRINC_LightAsDrama, wdd:PRINC_DetailAsNarrative .

#--- Cinema Movements ---#

wdd:MOV_TotalControl rdf:type owl:NamedIndividual , wdd:CinemaMovement ; rdfs:label "Total Control Aesthetic" ;
    wdd:hasPrinciple wdd:PRINC_ObsessiveComposition, wdd:PRINC_MonolithicObject .

wdd:MOV_MetaphysicalCinema rdf:type owl:NamedIndividual , wdd:CinemaMovement ; rdfs:label "Metaphysical Cinema" ;
    wdd:hasPrinciple wdd:PRINC_SlowContemplation, wdd:PRINC_SculptingTime .

wdd:MOV_IncommunicabilityCinema rdf:type owl:NamedIndividual , wdd:CinemaMovement ; rdfs:label "Cinema of Incommunicability" ;
    wdd:hasPrinciple wdd:PRINC_DeadTimeAsDevice, wdd:PRINC_ArchitectureAsCage .

wdd:MOV_SurrealistCinema rdf:type owl:NamedIndividual , wdd:CinemaMovement ; rdfs:label "Surrealist Cinema" ;
    wdd:hasPrinciple wdd:PRINC_LogicRejection, wdd:PRINC_ObjectAsFetish .

#--- Design Movements ---#

wdd:MOV_ItalianRadical rdf:type owl:NamedIndividual , wdd:DesignMovement ; rdfs:label "Italian Radical Design" .
wdd:MOV_Memphis rdf:type owl:NamedIndividual , wdd:DesignMovement ; rdfs:label "Memphis" .

#--- Movement Principles ---#

wdd:PRINC_GestureAsPrimary rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Gesture As Primary Creative Act" .
wdd:PRINC_SurfaceTranscendence rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Surface Transcendence" .
wdd:PRINC_VoidAsMeaning rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Void As Meaning" .
wdd:PRINC_ConceptualIrony rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Conceptual Irony" .
wdd:PRINC_Infinibility rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Infinibility" .
wdd:PRINC_ContentUnknowable rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Content Unknowable" .
wdd:PRINC_HumbleMaterials rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Humble Materials" .
wdd:PRINC_PrimaryEnergy rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Primary Energy of Matter" .
wdd:PRINC_PhysicalCreativeAct rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Physical Creative Act" .
wdd:PRINC_Decontextualisation rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Decontextualisation" .
wdd:PRINC_InstitutionalCritique rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Institutional Critique" .
wdd:PRINC_BeautyRejection rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Beauty Rejection" .
wdd:PRINC_ChanceAsMethod rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Chance As Method" .
wdd:PRINC_IdeaSupremacy rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Idea Supremacy" .
wdd:PRINC_WorkAsSystem rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Work As System" .
wdd:PRINC_Tautology rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Tautology" .
wdd:PRINC_EssentialReduction rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Essential Reduction" .
wdd:PRINC_ExpressionRejection rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Expression Rejection" .
wdd:PRINC_SerialityCritique rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Seriality As Critique" .
wdd:PRINC_TimeAsMaterial rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Time As Material" .
wdd:PRINC_ExperienceOverObject rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Experience Over Object" .
wdd:PRINC_ActiveSpectator rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Active Spectator" .
wdd:PRINC_StructureRevelation rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Structure Revelation" .
wdd:PRINC_AnonymityAesthetic rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Anonymity Aesthetic" .
wdd:PRINC_ConceptualReuse rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Conceptual Reuse" .
wdd:PRINC_AsymmetryRejection rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Western Body Rejection" .
wdd:PRINC_BlackAsAbsolute rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Black As Absolute Colour" .
wdd:PRINC_TextileAsSculpture rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Textile As Sculpture" .
wdd:PRINC_UglinessAsCritique rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Ugliness As Critique" .
wdd:PRINC_OrnamentAbsence rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Total Ornament Absence" .
wdd:PRINC_CutQuality rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Absolute Cut Quality" .
wdd:PRINC_PureGeometry rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Pure Geometry" .
wdd:PRINC_VoidAsDesign rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Void As Design Element" .
wdd:PRINC_LightDefinesSpace rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Light Defines Space" .
wdd:PRINC_StructuralHonesty rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Structural Honesty" .
wdd:PRINC_OrnamentRejection rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Ornament Rejection" .
wdd:PRINC_MaVoid rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Ma (Active Void)" .
wdd:PRINC_NatureConnection rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Nature Connection" .
wdd:PRINC_VolumeFragmentation rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Volume Fragmentation" .
wdd:PRINC_DisorientingSpaces rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Disorienting Spaces" .
wdd:PRINC_LightAsDrama rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Light As Drama" .
wdd:PRINC_DetailAsNarrative rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Detail As Narrative" .
wdd:PRINC_ObsessiveComposition rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Obsessive Composition" .
wdd:PRINC_MonolithicObject rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Monolithic Object" .
wdd:PRINC_SlowContemplation rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Slow Contemplation" .
wdd:PRINC_SculptingTime rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Sculpting Time" .
wdd:PRINC_DeadTimeAsDevice rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Dead Time As Narrative Device" .
wdd:PRINC_ArchitectureAsCage rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Architecture As Cage" .
wdd:PRINC_LogicRejection rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Narrative Logic Rejection" .
wdd:PRINC_ObjectAsFetish rdf:type owl:NamedIndividual , wdd:MovementPrinciple ; rdfs:label "Object As Enigmatic Fetish" .

#--- Reference Persons (expanded) ---#

# Spatialism
wdd:PERS_LucioFontana rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Lucio Fontana" ;
    wdd:belongsToMovement wdd:MOV_Spatialism ; wdd:wikidataMatch wd:Q312392 .
wdd:PERS_PieroManzoni rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Piero Manzoni" ;
    wdd:belongsToMovement wdd:MOV_Spatialism ; wdd:wikidataMatch wd:Q472756 .
wdd:PERS_AgostinoBonalumi rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Agostino Bonalumi" ;
    wdd:belongsToMovement wdd:MOV_Spatialism ; wdd:wikidataMatch wd:Q3606725 .
wdd:PERS_EnricoCastellani rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Enrico Castellani" ;
    wdd:belongsToMovement wdd:MOV_Spatialism ; wdd:wikidataMatch wd:Q560134 .
wdd:PERS_PaoloScheggi rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Paolo Scheggi" ;
    wdd:belongsToMovement wdd:MOV_Spatialism  .
wdd:PERS_RobertoCrippa rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Roberto Crippa" ;
    wdd:belongsToMovement wdd:MOV_Spatialism ; wdd:wikidataMatch wd:Q473798 .

# Arte Povera
wdd:PERS_JannisKounellis rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Jannis Kounellis" ;
    wdd:belongsToMovement wdd:MOV_ArtePovera ; wdd:wikidataMatch wd:Q472557 .
wdd:PERS_MarioMerz rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Mario Merz" ;
    wdd:belongsToMovement wdd:MOV_ArtePovera ; wdd:wikidataMatch wd:Q698877 .
wdd:PERS_AlighieroBoetti rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Alighiero Boetti" ;
    wdd:belongsToMovement wdd:MOV_ArtePovera ; wdd:wikidataMatch wd:Q556337 .
wdd:PERS_MichelangeloPistoletto rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Michelangelo Pistoletto" ;
    wdd:belongsToMovement wdd:MOV_ArtePovera ; wdd:wikidataMatch wd:Q573178 .
wdd:PERS_GiuseppePenone rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Giuseppe Penone" ;
    wdd:belongsToMovement wdd:MOV_ArtePovera ; wdd:wikidataMatch wd:Q568924 .

# Dadaism
wdd:PERS_MarcelDuchamp rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Marcel Duchamp" ;
    wdd:belongsToMovement wdd:MOV_Dadaism ; wdd:wikidataMatch wd:Q5912 .
wdd:PERS_ManRay rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Man Ray" ;
    wdd:belongsToMovement wdd:MOV_Dadaism ; wdd:wikidataMatch wd:Q46139 .

# Conceptual Art / Minimalism
wdd:PERS_DonaldJudd rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Donald Judd" ;
    wdd:belongsToMovement wdd:MOV_Minimalism ; wdd:wikidataMatch wd:Q250293 .
wdd:PERS_CarlAndre rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Carl Andre" ;
    wdd:belongsToMovement wdd:MOV_Minimalism ; wdd:wikidataMatch wd:Q315348 .
wdd:PERS_DanFlavin rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Dan Flavin" ;
    wdd:belongsToMovement wdd:MOV_Minimalism ; wdd:wikidataMatch wd:Q504395 .
wdd:PERS_SolLeWitt rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Sol LeWitt" ;
    wdd:belongsToMovement wdd:MOV_ConceptualArt ; wdd:wikidataMatch wd:Q168587 .
wdd:PERS_JosephKosuth rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Joseph Kosuth" ;
    wdd:belongsToMovement wdd:MOV_ConceptualArt ; wdd:wikidataMatch wd:Q313113 .
wdd:PERS_AgnesMartin rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Agnes Martin" ;
    wdd:belongsToMovement wdd:MOV_Minimalism ; wdd:wikidataMatch wd:Q275610 .

# Pop Art
wdd:PERS_AndyWarhol rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Andy Warhol" ;
    wdd:belongsToMovement wdd:MOV_PopArt ; wdd:wikidataMatch wd:Q5603 .
wdd:PERS_MarioSchifano rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Mario Schifano" ;
    wdd:belongsToMovement wdd:MOV_PopArt  .

# Performative Art
wdd:PERS_MarinaAbramovic rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Marina Abramovic" ;
    wdd:belongsToMovement wdd:MOV_PerformativeArt ; wdd:wikidataMatch wd:Q47496 .

# Fashion
wdd:PERS_MartinMargiela rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Martin Margiela" ;
    wdd:belongsToMovement wdd:MOV_BelgianDeconstruction ; wdd:wikidataMatch wd:Q978265 .
wdd:PERS_ReiKawakubo rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Rei Kawakubo" ;
    wdd:belongsToMovement wdd:MOV_JapaneseAvantGarde ; wdd:wikidataMatch wd:Q268033 .
wdd:PERS_YohjiYamamoto rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Yohji Yamamoto" ;
    wdd:belongsToMovement wdd:MOV_JapaneseAvantGarde ; wdd:wikidataMatch wd:Q707890 .
wdd:PERS_HelmutLang rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Helmut Lang" ;
    wdd:belongsToMovement wdd:MOV_AustereMinimaism ; wdd:wikidataMatch wd:Q89412 .

# Architecture
wdd:PERS_TadaoAndo rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Tadao Ando" ;
    wdd:belongsToMovement wdd:MOV_JapaneseArch ; wdd:wikidataMatch wd:Q208220 .
wdd:PERS_LouisKahn rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Louis Kahn" ;
    wdd:belongsToMovement wdd:MOV_PoeticRationalism ; wdd:wikidataMatch wd:Q210134 .
wdd:PERS_CarloScarpa rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Carlo Scarpa" ;
    wdd:belongsToMovement wdd:MOV_PoeticRationalism ; wdd:wikidataMatch wd:Q51137 .

# Cinema
wdd:PERS_StanleyKubrick rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Stanley Kubrick" ;
    wdd:belongsToMovement wdd:MOV_TotalControl ; wdd:wikidataMatch wd:Q2001 .
wdd:PERS_AndrejTarkovsky rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Andrei Tarkovsky" ;
    wdd:belongsToMovement wdd:MOV_MetaphysicalCinema ; wdd:wikidataMatch wd:Q853 .
wdd:PERS_MichelangeloAntonioni rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Michelangelo Antonioni" ;
    wdd:belongsToMovement wdd:MOV_IncommunicabilityCinema ; wdd:wikidataMatch wd:Q55433 .
wdd:PERS_DavidLynch rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "David Lynch" ;
    wdd:belongsToMovement wdd:MOV_SurrealistCinema ; wdd:wikidataMatch wd:Q2071 .

# Literary / Other
wdd:PERS_DanteAlighieri rdf:type owl:NamedIndividual , wdd:ReferencePerson ; rdfs:label "Dante Alighieri" ;
    wdd:wikidataMatch wd:Q1067 .

#--- Referenced Artworks ---#

wdd:ARTWORK_FontanaTagli rdf:type owl:NamedIndividual , wdd:ReferencedArtwork ; rdfs:label "Tagli" ;
    wdd:artworkYear "1958"^^xsd:gYear ; wdd:createdByArtist wdd:PERS_LucioFontana ;
    wdd:partOfMovement wdd:MOV_Spatialism .

wdd:ARTWORK_FontanaFineDiDio rdf:type owl:NamedIndividual , wdd:ReferencedArtwork ; rdfs:label "La fine di Dio" ;
    wdd:artworkYear "1963"^^xsd:gYear ; wdd:createdByArtist wdd:PERS_LucioFontana ;
    wdd:partOfMovement wdd:MOV_Spatialism .

wdd:ARTWORK_ManzoniLinee rdf:type owl:NamedIndividual , wdd:ReferencedArtwork ; rdfs:label "Linee" ;
    wdd:artworkYear "1959"^^xsd:gYear ; wdd:createdByArtist wdd:PERS_PieroManzoni ;
    wdd:partOfMovement wdd:MOV_Spatialism .

wdd:ARTWORK_ManzoniMerda rdf:type owl:NamedIndividual , wdd:ReferencedArtwork ; rdfs:label "Merda d'artista" ;
    wdd:artworkYear "1961"^^xsd:gYear ; wdd:createdByArtist wdd:PERS_PieroManzoni ;
    wdd:partOfMovement wdd:MOV_ConceptualArt .

wdd:ARTWORK_DanteCommedia rdf:type owl:NamedIndividual , wdd:ReferencedArtwork ; rdfs:label "Divina Commedia" ;
    wdd:artworkYear "1320"^^xsd:gYear ; wdd:createdByArtist wdd:PERS_DanteAlighieri .

#--- Social Phenomena ---#

wdd:PHEN_SelfieCulture rdf:type owl:NamedIndividual , wdd:SocialPhenomenon ; rdfs:label "Selfie Culture" .
wdd:PHEN_DigitalNarcissism rdf:type owl:NamedIndividual , wdd:SocialPhenomenon ; rdfs:label "Digital Narcissism" .
wdd:PHEN_AestheticStandardization rdf:type owl:NamedIndividual , wdd:SocialPhenomenon ; rdfs:label "Aesthetic Standardisation" .
wdd:PHEN_Consumerism rdf:type owl:NamedIndividual , wdd:SocialPhenomenon ; rdfs:label "Consumerism" .
wdd:PHEN_InstantGratification rdf:type owl:NamedIndividual , wdd:SocialPhenomenon ; rdfs:label "Instant Gratification" .
wdd:PHEN_PlannedObsolescence rdf:type owl:NamedIndividual , wdd:SocialPhenomenon ; rdfs:label "Planned Obsolescence" .
wdd:PHEN_ImageCulture rdf:type owl:NamedIndividual , wdd:SocialPhenomenon ; rdfs:label "Image Culture" .

#--- Philosophical Concepts ---#

wdd:CONC_Neoplatonism rdf:type owl:NamedIndividual , wdd:PhilosophicalConcept ; rdfs:label "Neoplatonism" .
wdd:CONC_Synesthesia rdf:type owl:NamedIndividual , wdd:PhilosophicalConcept ; rdfs:label "Synesthesia" .
wdd:CONC_Alchemy rdf:type owl:NamedIndividual , wdd:PhilosophicalConcept ; rdfs:label "Alchemy" .
wdd:CONC_Transience rdf:type owl:NamedIndividual , wdd:PhilosophicalConcept ; rdfs:label "Transience" .
wdd:CONC_Vanitas rdf:type owl:NamedIndividual , wdd:PhilosophicalConcept ; rdfs:label "Vanitas" .
wdd:CONC_WabiSabi rdf:type owl:NamedIndividual , wdd:PhilosophicalConcept ; rdfs:label "Wabi-Sabi" .
wdd:CONC_Mu rdf:type owl:NamedIndividual , wdd:PhilosophicalConcept ; rdfs:label "Mu (Void)" .
wdd:CONC_Kairos rdf:type owl:NamedIndividual , wdd:PhilosophicalConcept ; rdfs:label "Kairos" .

#################################################################
#    INDIVIDUALS — MATERIALS (EXPANDED)
#################################################################

# Conceptual
wdd:MAT_Light rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Light" .
wdd:MAT_Shadow rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Shadow" .
wdd:MAT_Sound rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Sound" .
wdd:MAT_Silence rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Silence" .
wdd:MAT_Temperature rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Temperature" .
wdd:MAT_Magnetism rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Magnetism" .
wdd:MAT_Time rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Time" .
wdd:MAT_Void rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Void" .
wdd:MAT_Memory rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Memory" .
wdd:MAT_Error rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Error" .
wdd:MAT_Information rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Information" .
wdd:MAT_Relation rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Relation" .
wdd:MAT_Absence rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Absence" .
wdd:MAT_Infinite rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Infinite" .
wdd:MAT_Scent rdf:type owl:NamedIndividual , wdd:ConceptualMaterial ; rdfs:label "Scent" .

# Ferrous metals
wdd:MAT_StainlessSteel rdf:type owl:NamedIndividual , wdd:FerrousMetal ; rdfs:label "Stainless Steel" ;
    wdd:materialTemperature "Cold" ; wdd:materialTexture "Smooth" ;
    wdd:materialReflectivity "Glossy" ; wdd:materialStatus "Neutral" ; wdd:wikidataMatch wd:Q172587 .
wdd:MAT_CortenSteel rdf:type owl:NamedIndividual , wdd:FerrousMetal ; rdfs:label "Corten Steel" ;
    wdd:materialTemperature "Neutral" ; wdd:materialTexture "Rough" ;
    wdd:materialReflectivity "Matte" ; wdd:materialStatus "Humble" .
wdd:MAT_RawIron rdf:type owl:NamedIndividual , wdd:FerrousMetal ; rdfs:label "Raw Iron" ;
    wdd:materialTemperature "Cold" ; wdd:materialTexture "Rough" ;
    wdd:materialReflectivity "Matte" ; wdd:materialStatus "Humble" ; wdd:wikidataMatch wd:Q677 .

# Non-ferrous metals
wdd:MAT_Copper rdf:type owl:NamedIndividual , wdd:NonFerrousMetal ; rdfs:label "Copper" ;
    wdd:materialTemperature "Warm" ; wdd:materialStatus "Noble" ; wdd:wikidataMatch wd:Q753 .
wdd:MAT_Bronze rdf:type owl:NamedIndividual , wdd:NonFerrousMetal ; rdfs:label "Bronze" ;
    wdd:materialTemperature "Warm" ; wdd:materialStatus "Noble" ; wdd:wikidataMatch wd:Q34095 .
wdd:MAT_Brass rdf:type owl:NamedIndividual , wdd:NonFerrousMetal ; rdfs:label "Brass" ;
    wdd:materialTemperature "Warm" ; wdd:materialStatus "Noble" ; wdd:wikidataMatch wd:Q39782 .
wdd:MAT_Aluminum rdf:type owl:NamedIndividual , wdd:NonFerrousMetal ; rdfs:label "Aluminium" ;
    wdd:materialTemperature "Cold" ; wdd:materialStatus "Neutral" ; wdd:wikidataMatch wd:Q663 .
wdd:MAT_Titanium rdf:type owl:NamedIndividual , wdd:NonFerrousMetal ; rdfs:label "Titanium" ;
    wdd:materialStatus "Noble" ; wdd:wikidataMatch wd:Q716 .

# Precious metals
wdd:MAT_Gold rdf:type owl:NamedIndividual , wdd:PreciousMetal ; rdfs:label "Gold" ;
    wdd:materialStatus "Precious" ; wdd:wikidataMatch wd:Q897 .
wdd:MAT_Silver rdf:type owl:NamedIndividual , wdd:PreciousMetal ; rdfs:label "Silver" ;
    wdd:materialStatus "Precious" ; wdd:wikidataMatch wd:Q1090 .
wdd:MAT_Platinum rdf:type owl:NamedIndividual , wdd:PreciousMetal ; rdfs:label "Platinum" ;
    wdd:materialStatus "Precious" ; wdd:wikidataMatch wd:Q880 .

# Woods
wdd:MAT_Walnut rdf:type owl:NamedIndividual , wdd:EuropeanWood ; rdfs:label "Walnut" ; wdd:materialStatus "Noble" .
wdd:MAT_Oak rdf:type owl:NamedIndividual , wdd:EuropeanWood ; rdfs:label "Oak" ; wdd:materialStatus "Noble" .
wdd:MAT_Ash rdf:type owl:NamedIndividual , wdd:EuropeanWood ; rdfs:label "Ash" ; wdd:materialStatus "Neutral" .
wdd:MAT_Maple rdf:type owl:NamedIndividual , wdd:EuropeanWood ; rdfs:label "Maple" ; wdd:materialStatus "Neutral" .
wdd:MAT_Cherry rdf:type owl:NamedIndividual , wdd:EuropeanWood ; rdfs:label "Cherry" ; wdd:materialStatus "Noble" .
wdd:MAT_Larch rdf:type owl:NamedIndividual , wdd:EuropeanWood ; rdfs:label "Larch" ; wdd:materialStatus "Neutral" .
wdd:MAT_Ebony rdf:type owl:NamedIndividual , wdd:ExoticWood ; rdfs:label "Ebony" ; wdd:materialStatus "Precious" .
wdd:MAT_Rosewood rdf:type owl:NamedIndividual , wdd:ExoticWood ; rdfs:label "Rosewood" ; wdd:materialStatus "Precious" .
wdd:MAT_Wenge rdf:type owl:NamedIndividual , wdd:ExoticWood ; rdfs:label "Wenge" ; wdd:materialStatus "Noble" .
wdd:MAT_CharredWood rdf:type owl:NamedIndividual , wdd:ModifiedWood ; rdfs:label "Charred Wood" ; wdd:materialStatus "Humble" .
wdd:MAT_FossilWood rdf:type owl:NamedIndividual , wdd:ModifiedWood ; rdfs:label "Fossil Wood" ; wdd:materialStatus "Precious" .
wdd:MAT_BurlWood rdf:type owl:NamedIndividual , wdd:ModifiedWood ; rdfs:label "Burl Wood" ; wdd:materialStatus "Precious" .

# Stones — Marbles
wdd:MAT_CarraraMarble rdf:type owl:NamedIndividual , wdd:Marble ; rdfs:label "Carrara Marble" ; wdd:materialStatus "Precious" .
wdd:MAT_CalacattaMarble rdf:type owl:NamedIndividual , wdd:Marble ; rdfs:label "Calacatta Marble" ; wdd:materialStatus "Precious" .
wdd:MAT_NeroMarquinia rdf:type owl:NamedIndividual , wdd:Marble ; rdfs:label "Nero Marquinia" ; wdd:materialStatus "Noble" .

# Stones — Hard stones
wdd:MAT_LapisLazuli rdf:type owl:NamedIndividual , wdd:HardStone ; rdfs:label "Lapis Lazuli" ; wdd:materialStatus "Precious" .
wdd:MAT_Malachite rdf:type owl:NamedIndividual , wdd:HardStone ; rdfs:label "Malachite" ; wdd:materialStatus "Precious" .
wdd:MAT_Obsidian rdf:type owl:NamedIndividual , wdd:HardStone ; rdfs:label "Obsidian" ; wdd:materialStatus "Noble" .

# Stones — Other
wdd:MAT_Travertine rdf:type owl:NamedIndividual , wdd:OtherStone ; rdfs:label "Travertine" ; wdd:materialStatus "Noble" .
wdd:MAT_Slate rdf:type owl:NamedIndividual , wdd:OtherStone ; rdfs:label "Slate" ; wdd:materialStatus "Humble" .
wdd:MAT_Basalt rdf:type owl:NamedIndividual , wdd:Granite ; rdfs:label "Basalt" ; wdd:materialStatus "Humble" .

# Glass
wdd:MAT_MuranoGlass rdf:type owl:NamedIndividual , wdd:BlownGlass ; rdfs:label "Murano Glass" ; wdd:materialStatus "Precious" .
wdd:MAT_MuranoCrystal rdf:type owl:NamedIndividual , wdd:Crystal ; rdfs:label "Murano Crystal" ; wdd:materialStatus "Precious" .
wdd:MAT_BohemianGlass rdf:type owl:NamedIndividual , wdd:BlownGlass ; rdfs:label "Bohemian Glass" ; wdd:materialStatus "Noble" .
wdd:MAT_DichroicGlass rdf:type owl:NamedIndividual , wdd:SpecialGlass ; rdfs:label "Dichroic Glass" ; wdd:materialStatus "Noble" .
wdd:MAT_RockCrystal rdf:type owl:NamedIndividual , wdd:Crystal ; rdfs:label "Rock Crystal" ; wdd:materialStatus "Precious" .

# Textiles
wdd:MAT_Silk rdf:type owl:NamedIndividual , wdd:AnimalFiber ; rdfs:label "Silk" ; wdd:materialStatus "Precious" ; wdd:wikidataMatch wd:Q37681 .
wdd:MAT_BlackSilk rdf:type owl:NamedIndividual , wdd:AnimalFiber ; rdfs:label "Black Silk" ; wdd:materialStatus "Precious" .
wdd:MAT_Wool rdf:type owl:NamedIndividual , wdd:AnimalFiber ; rdfs:label "Wool" ; wdd:materialStatus "Neutral" .
wdd:MAT_Cashmere rdf:type owl:NamedIndividual , wdd:AnimalFiber ; rdfs:label "Cashmere" ; wdd:materialStatus "Precious" .
wdd:MAT_Horsehair rdf:type owl:NamedIndividual , wdd:AnimalFiber ; rdfs:label "Horsehair" ; wdd:materialStatus "Noble" .
wdd:MAT_Linen rdf:type owl:NamedIndividual , wdd:PlantFiber ; rdfs:label "Linen" ; wdd:materialStatus "Noble" .
wdd:MAT_Hemp rdf:type owl:NamedIndividual , wdd:PlantFiber ; rdfs:label "Hemp" ; wdd:materialStatus "Humble" .
wdd:MAT_CopperWire rdf:type owl:NamedIndividual , wdd:MetallicFiber ; rdfs:label "Copper Wire" ; wdd:materialStatus "Noble" .
wdd:MAT_GoldThread rdf:type owl:NamedIndividual , wdd:MetallicFiber ; rdfs:label "Gold Thread" ; wdd:materialStatus "Precious" .

# Ceramics
wdd:MAT_Terracotta rdf:type owl:NamedIndividual , wdd:LowFireCeramic ; rdfs:label "Terracotta" ; wdd:materialStatus "Humble" .
wdd:MAT_Raku rdf:type owl:NamedIndividual , wdd:LowFireCeramic ; rdfs:label "Raku" ; wdd:materialStatus "Noble" .
wdd:MAT_Stoneware rdf:type owl:NamedIndividual , wdd:HighFireCeramic ; rdfs:label "Stoneware" ; wdd:materialStatus "Neutral" .
wdd:MAT_Porcelain rdf:type owl:NamedIndividual , wdd:HighFireCeramic ; rdfs:label "Porcelain" ; wdd:materialStatus "Precious" .
wdd:MAT_Biscuit rdf:type owl:NamedIndividual , wdd:HighFireCeramic ; rdfs:label "Biscuit" ; wdd:materialStatus "Noble" .
wdd:MAT_RawEarth rdf:type owl:NamedIndividual , wdd:RawEarth ; rdfs:label "Raw Earth" ; wdd:materialStatus "Humble" .

# Leather
wdd:MAT_FullGrainLeather rdf:type owl:NamedIndividual , wdd:Leather ; rdfs:label "Full Grain Leather" ; wdd:materialStatus "Noble" .
wdd:MAT_VegetableTannedLeather rdf:type owl:NamedIndividual , wdd:Leather ; rdfs:label "Vegetable Tanned Leather" ; wdd:materialStatus "Noble" .
wdd:MAT_Parchment rdf:type owl:NamedIndividual , wdd:Leather ; rdfs:label "Parchment" ; wdd:materialStatus "Precious" .

# Fragrance
wdd:MAT_RoseFragrance rdf:type owl:NamedIndividual , wdd:Fragrance ; rdfs:label "Rose Fragrance" ; wdd:materialStatus "Precious" .

# Synthetic
wdd:MAT_Mycelium rdf:type owl:NamedIndividual , wdd:Biomaterial ; rdfs:label "Mycelium" ; wdd:materialStatus "Humble" .
wdd:MAT_CarbonFibre rdf:type owl:NamedIndividual , wdd:Composite ; rdfs:label "Carbon Fibre" ; wdd:materialStatus "Neutral" .

#--- Material Philosophy (from WDD_06) ---#

wdd:MATPHIL_ActiveInterlocutor rdf:type owl:NamedIndividual , wdd:MaterialPhilosophy ;
    rdfs:label "Material As Active Interlocutor" ;
    rdfs:comment "Rejection of material as passive tool. Matter as entity, not resource." .

wdd:MATPHIL_MaterialTruth rdf:type owl:NamedIndividual , wdd:MaterialPhilosophy ;
    rdfs:label "Material Truth Principle" ;
    rdfs:comment "Absolute material honesty. No imitation. Revelation of internal structure." .

wdd:MATPHIL_SemanticSelection rdf:type owl:NamedIndividual , wdd:MaterialPhilosophy ;
    rdfs:label "Semantic Selection" ;
    rdfs:comment "Material chosen for meaning, not function. First declarative act of the project." .

#################################################################
#    INDIVIDUALS — ARCHETYPES
#################################################################

wdd:ARCH_Separating rdf:type owl:NamedIndividual , wdd:SpaceStructureArchetype ; rdfs:label "Separating" .
wdd:ARCH_Supporting rdf:type owl:NamedIndividual , wdd:SpaceStructureArchetype ; rdfs:label "Supporting" .
wdd:ARCH_Ordering rdf:type owl:NamedIndividual , wdd:SpaceStructureArchetype ; rdfs:label "Ordering" .
wdd:ARCH_Containing rdf:type owl:NamedIndividual , wdd:SpaceStructureArchetype ; rdfs:label "Containing" .
wdd:ARCH_Covering rdf:type owl:NamedIndividual , wdd:SpaceStructureArchetype ; rdfs:label "Covering" .
wdd:ARCH_Transporting rdf:type owl:NamedIndividual , wdd:SpaceStructureArchetype ; rdfs:label "Transporting" .

wdd:ARCH_Watching rdf:type owl:NamedIndividual , wdd:PerceptionArchetype ; rdfs:label "Watching" .
wdd:ARCH_Reflecting rdf:type owl:NamedIndividual , wdd:PerceptionArchetype ; rdfs:label "Reflecting" .
wdd:ARCH_Illuminating rdf:type owl:NamedIndividual , wdd:PerceptionArchetype ; rdfs:label "Illuminating" .
wdd:ARCH_Sounding rdf:type owl:NamedIndividual , wdd:PerceptionArchetype ; rdfs:label "Sounding" .
wdd:ARCH_Scenting rdf:type owl:NamedIndividual , wdd:PerceptionArchetype ; rdfs:label "Scenting" .

wdd:ARCH_Sitting rdf:type owl:NamedIndividual , wdd:RitualArchetype ; rdfs:label "Sitting" .
wdd:ARCH_Resting rdf:type owl:NamedIndividual , wdd:RitualArchetype ; rdfs:label "Resting" .
wdd:ARCH_Nourishing rdf:type owl:NamedIndividual , wdd:RitualArchetype ; rdfs:label "Nourishing" .
wdd:ARCH_Cleaning rdf:type owl:NamedIndividual , wdd:RitualArchetype ; rdfs:label "Cleaning" .
wdd:ARCH_Decorating rdf:type owl:NamedIndividual , wdd:RitualArchetype ; rdfs:label "Decorating" .

wdd:ARCH_Measuring rdf:type owl:NamedIndividual , wdd:KnowledgeArchetype ; rdfs:label "Measuring" .
wdd:ARCH_Recording rdf:type owl:NamedIndividual , wdd:KnowledgeArchetype ; rdfs:label "Recording" .
wdd:ARCH_Remembering rdf:type owl:NamedIndividual , wdd:KnowledgeArchetype ; rdfs:label "Remembering" .
wdd:ARCH_Communicating rdf:type owl:NamedIndividual , wdd:KnowledgeArchetype ; rdfs:label "Communicating" .

#################################################################
#    INDIVIDUALS — AUDIENCE (NEW)
#################################################################

# Anti-audience
wdd:ANTI_PassiveConsumer rdf:type owl:NamedIndividual , wdd:AntiAudience ; rdfs:label "Passive Consumer" ;
    wdd:exclusionReason "Seeks instant gratification without reflection" .
wdd:ANTI_RigidFunctionalist rdf:type owl:NamedIndividual , wdd:AntiAudience ; rdfs:label "Rigid Functionalist" ;
    wdd:exclusionReason "Cannot accept non-functional object" .
wdd:ANTI_StatusSeeker rdf:type owl:NamedIndividual , wdd:AntiAudience ; rdfs:label "Status Seeker" ;
    wdd:exclusionReason "Seeks recognisable logos and status symbols" .
wdd:ANTI_TrendFollower rdf:type owl:NamedIndividual , wdd:AntiAudience ; rdfs:label "Trend Follower" ;
    wdd:exclusionReason "Seeks fashionable objects with ephemeral value" .

# Audience individuals — Interpreters
wdd:AUD_PhilosopherCollector rdf:type owl:NamedIndividual , wdd:PhilosopherCollector ;
    rdfs:label "Philosopher Collector" ;
    wdd:belongsToCircle wdd:CIRCLE_Outer .

wdd:AUD_DialogueCurator rdf:type owl:NamedIndividual , wdd:DialogueCurator ;
    rdfs:label "Dialogue Curator" ;
    wdd:belongsToCircle wdd:CIRCLE_Intermediate .

wdd:AUD_StudentResearcher rdf:type owl:NamedIndividual , wdd:StudentResearcher ;
    rdfs:label "Student Researcher" ;
    wdd:belongsToCircle wdd:CIRCLE_Outer .

# Audience individuals — Custodians
wdd:AUD_CulturalPatron rdf:type owl:NamedIndividual , wdd:CulturalPatron ;
    rdfs:label "Cultural Patron" ;
    wdd:belongsToCircle wdd:CIRCLE_Inner .

wdd:AUD_ArchivistCollector rdf:type owl:NamedIndividual , wdd:ArchivistCollector ;
    rdfs:label "Archivist Collector" ;
    wdd:belongsToCircle wdd:CIRCLE_Outer .

wdd:AUD_MuseumInstitution rdf:type owl:NamedIndividual , wdd:MuseumInstitution ;
    rdfs:label "Museum Institution" ;
    wdd:belongsToCircle wdd:CIRCLE_Outer .

# Audience individuals — Catalysts
wdd:AUD_VisionaryArchitect rdf:type owl:NamedIndividual , wdd:VisionaryArchitect ;
    rdfs:label "Visionary Architect" ;
    wdd:belongsToCircle wdd:CIRCLE_Intermediate .

wdd:AUD_IntellectualArtAdvisor rdf:type owl:NamedIndividual , wdd:IntellectualArtAdvisor ;
    rdfs:label "Intellectual Art Advisor" ;
    wdd:belongsToCircle wdd:CIRCLE_Intermediate .

# Audience individuals — Indirect
wdd:AUD_Contemplative rdf:type owl:NamedIndividual , wdd:IndirectBeneficiary ;
    rdfs:label "Contemplative" ;
    wdd:belongsToCircle wdd:CIRCLE_Peripheral .

wdd:AUD_PerformativeParticipant rdf:type owl:NamedIndividual , wdd:IndirectBeneficiary ;
    rdfs:label "Performative Participant" ;
    wdd:belongsToCircle wdd:CIRCLE_Peripheral .

#################################################################
#    INDIVIDUALS — SENSES, FRUITION, PERFORMATIVE
#################################################################

wdd:SENSE_Sight rdf:type owl:NamedIndividual , wdd:HumanSense ; rdfs:label "Sight" .
wdd:SENSE_Touch rdf:type owl:NamedIndividual , wdd:HumanSense ; rdfs:label "Touch" .
wdd:SENSE_Smell rdf:type owl:NamedIndividual , wdd:HumanSense ; rdfs:label "Smell" .
wdd:SENSE_Hearing rdf:type owl:NamedIndividual , wdd:HumanSense ; rdfs:label "Hearing" .
wdd:SENSE_Taste rdf:type owl:NamedIndividual , wdd:HumanSense ; rdfs:label "Taste" .

wdd:FRUIT_SlowContemplation rdf:type owl:NamedIndividual , wdd:FruitionMode ; rdfs:label "Slow Contemplation" .
wdd:FRUIT_Solitary rdf:type owl:NamedIndividual , wdd:FruitionMode ; rdfs:label "Solitary" .
wdd:FRUIT_Disconnected rdf:type owl:NamedIndividual , wdd:FruitionMode ; rdfs:label "Disconnected" .
wdd:FRUIT_Introspective rdf:type owl:NamedIndividual , wdd:FruitionMode ; rdfs:label "Introspective" .
wdd:FRUIT_Performative rdf:type owl:NamedIndividual , wdd:FruitionMode ; rdfs:label "Performative" .
wdd:FRUIT_Decisive rdf:type owl:NamedIndividual , wdd:FruitionMode ; rdfs:label "Decisive" .

wdd:ACT_SlowObservation rdf:type owl:NamedIndividual , wdd:ContemplativeAct ; rdfs:label "Slow Observation" .
wdd:ACT_DestructiveChoice rdf:type owl:NamedIndividual , wdd:DestructiveAct ; rdfs:label "Destructive Choice" .
wdd:OBJ_Hammer rdf:type owl:NamedIndividual , wdd:ActivatingObject ; rdfs:label "Hammer" .

#################################################################
#    INDIVIDUALS — RELATIONAL MODEL (NEW)
#################################################################

wdd:ENG_Discovery rdf:type owl:NamedIndividual , wdd:DiscoveryPhase ; rdfs:label "Discovery" ;
    rdfs:comment "Encounter with the work. Rupture of expectations." .

wdd:ENG_Investigation rdf:type owl:NamedIndividual , wdd:InvestigationPhase ; rdfs:label "Investigation" ;
    wdd:followsEngagement wdd:ENG_Discovery ;
    rdfs:comment "Autonomous study. Verification of intellectual affinity." .

wdd:ENG_FirstAct rdf:type owl:NamedIndividual , wdd:FirstActPhase ; rdfs:label "First Act" ;
    wdd:followsEngagement wdd:ENG_Investigation ;
    rdfs:comment "Acquisition as act of trust. Entry into the community of thought." .

wdd:ENG_Belonging rdf:type owl:NamedIndividual , wdd:BelongingPhase ; rdfs:label "Belonging" ;
    wdd:followsEngagement wdd:ENG_FirstAct ;
    rdfs:comment "From interlocutor to ambassador. Inner circle membership." .

wdd:CIRCLE_Inner rdf:type owl:NamedIndividual , wdd:InnerCircle ; rdfs:label "Inner Circle" ;
    rdfs:comment "Absolute trust. Co-creation. Shared vision." .
wdd:CIRCLE_Intermediate rdf:type owl:NamedIndividual , wdd:IntermediateCircle ; rdfs:label "Intermediate Circle" ;
    rdfs:comment "Specialist collaborators. Gallery network. Critical network." .
wdd:CIRCLE_Outer rdf:type owl:NamedIndividual , wdd:OuterCircle ; rdfs:label "Outer Circle" ;
    rdfs:comment "Active collectors. Institutions. Media." .
wdd:CIRCLE_Peripheral rdf:type owl:NamedIndividual , wdd:PeripheralCircle ; rdfs:label "Peripheral Circle" ;
    rdfs:comment "General public. Generic press." .

#################################################################
#    INDIVIDUALS — AUTHORS AND CRAFTSMEN
#################################################################

wdd:AUTH_FrancescoMeneghello rdf:type owl:NamedIndividual , wdd:Author ; rdfs:label "Francesco Meneghello" .
wdd:AUTH_DavideLanfranco rdf:type owl:NamedIndividual , wdd:Author ; rdfs:label "Davide Lanfranco" .
wdd:AUTH_SpyrosDrosopoulos rdf:type owl:NamedIndividual , wdd:Author, wdd:Parfumeur ; rdfs:label "Spyros Drosopoulos" .
wdd:CRAFT_BrianzaArtisans rdf:type owl:NamedIndividual , wdd:MasterCraftsman ; rdfs:label "Brianza Artisans" .
wdd:CRAFT_NepalWeavers rdf:type owl:NamedIndividual , wdd:MasterCraftsman ; rdfs:label "Nepal Weavers" .
wdd:CRAFT_SimoneCenedese rdf:type owl:NamedIndividual , wdd:MasterCraftsman ; rdfs:label "Simone Cenedese" .

#################################################################
#    INDIVIDUALS — WORKS
#################################################################

wdd:WORK_Mirrorless rdf:type owl:NamedIndividual , wdd:MaterialWork, wdd:LimitedEditionWork ;
    rdfs:label "Mirrorless" ;
    wdd:archiveCode "WDD-MR-2024" ;
    wdd:conceptionYear "2024"^^xsd:gYear ;
    wdd:editionTotal "111" ; wdd:editionUnit "pieces" ;
    wdd:dimensionsCm "200 x 70 x 20" ;
    wdd:productionLocation "Brianza, Italy" ;
    wdd:createdBy wdd:AUTH_FrancescoMeneghello ;
    wdd:realizedBy wdd:CRAFT_BrianzaArtisans ;
    wdd:questionPosed "What do you see when you cannot see yourself?" ;
    wdd:embodiesAxiom wdd:AX01_WeDontDesign, wdd:AX02_FormFollowsMeaning,
        wdd:AX03_AbsenceIsMore, wdd:AX04_DesignIsQuestion ;
    wdd:embodiesTension wdd:T01_PresenceAbsence, wdd:T02_FullnessVoid,
        wdd:T03_UtilityReflection, wdd:T04_ExpectedActual,
        wdd:T07_SimplicityComplexity, wdd:T13_RadicalConservative ;
    wdd:activatesParadox wdd:P04_FunctionOfLack, wdd:P03_UtilityOfUseless,
        wdd:P07_ReflectionWithoutIdentity ;
    wdd:evokesArchetype wdd:ARCH_Reflecting, wdd:ARCH_Watching ;
    wdd:subvertsArchetype wdd:ARCH_Reflecting ;
    wdd:usesMaterial wdd:MAT_StainlessSteel, wdd:MAT_Oak,
        wdd:MAT_Void, wdd:MAT_Absence, wdd:MAT_Light ;
    wdd:appliesSubtraction wdd:FunctionalSubtraction, wdd:MaterialSubtraction ;
    wdd:citesArtist wdd:PERS_LucioFontana ;
    wdd:influencedBy wdd:MOV_Spatialism ;
    wdd:appropriatesGesture wdd:PRINC_SurfaceTranscendence, wdd:PRINC_VoidAsMeaning ;
    wdd:critiques wdd:PHEN_SelfieCulture, wdd:PHEN_DigitalNarcissism, wdd:PHEN_AestheticStandardization ;
    wdd:activatesSense wdd:SENSE_Sight, wdd:SENSE_Touch ;
    wdd:hasFruitionMode wdd:FRUIT_SlowContemplation, wdd:FRUIT_Solitary,
        wdd:FRUIT_Disconnected, wdd:FRUIT_Introspective ;
    wdd:addressedTo wdd:AUD_PhilosopherCollector, wdd:AUD_Contemplative ;
    wdd:excludesAudience wdd:ANTI_PassiveConsumer, wdd:ANTI_StatusSeeker ;
    wdd:symbolicNumber 111 ;
    wdd:numberMeaning "Palindrome symbolising dialogue between humanity and nature" ;
    wdd:manifestoText "Mirrorless is a metaphysical object, belonging to worlds of thought that move away from rational logic to experiment with other universes of meaning that deal with abstraction, paradox, utopia." .

wdd:WORK_Memorie rdf:type owl:NamedIndividual , wdd:MaterialWork, wdd:DivisibleEditionWork ;
    rdfs:label "Memorie" ;
    wdd:archiveCode "WDD-MM-2024" ;
    wdd:conceptionYear "2024"^^xsd:gYear ;
    wdd:editionTotal "1959m" ; wdd:editionUnit "metres" ; wdd:minimumUnit "1.23m" ;
    wdd:dimensionsCm "6 width x 1 thickness x variable length" ;
    wdd:productionLocation "Kathmandu, Nepal" ;
    wdd:createdBy wdd:AUTH_FrancescoMeneghello ;
    wdd:coCreatedBy wdd:AUTH_DavideLanfranco ;
    wdd:realizedBy wdd:CRAFT_NepalWeavers ;
    wdd:questionPosed "Can you possess a fragment of infinity?" ;
    wdd:embodiesAxiom wdd:AX01_WeDontDesign, wdd:AX02_FormFollowsMeaning,
        wdd:AX03_AbsenceIsMore, wdd:AX04_DesignIsQuestion ;
    wdd:embodiesTension wdd:T01_PresenceAbsence, wdd:T03_UtilityReflection,
        wdd:T07_SimplicityComplexity, wdd:T17_PhysicalitySemantics,
        wdd:T18_InfiniteFinite, wdd:T19_PermanenceErosion ;
    wdd:activatesParadox wdd:P01_VisibilityOfImmaterial, wdd:P08_DivisibilityOfInfinite,
        wdd:P09_RuinAsForm ;
    wdd:evokesArchetype wdd:ARCH_Covering, wdd:ARCH_Remembering ;
    wdd:subvertsArchetype wdd:ARCH_Covering ;
    wdd:usesMaterial wdd:MAT_BlackSilk, wdd:MAT_Time, wdd:MAT_Memory, wdd:MAT_Infinite ;
    wdd:appliesSubtraction wdd:FunctionalSubtraction, wdd:SkeletalReduction ;
    wdd:citesArtist wdd:PERS_PieroManzoni ;
    wdd:citesArtwork wdd:ARTWORK_ManzoniLinee ;
    wdd:dialoguesWith wdd:ARTWORK_ManzoniLinee ;
    wdd:influencedBy wdd:MOV_Spatialism, wdd:MOV_ConceptualArt ;
    wdd:appropriatesGesture wdd:PRINC_Infinibility ;
    wdd:embodiesConcept wdd:CONC_Transience ;
    wdd:activatesSense wdd:SENSE_Sight, wdd:SENSE_Touch ;
    wdd:hasFruitionMode wdd:FRUIT_SlowContemplation, wdd:FRUIT_Introspective ;
    wdd:addressedTo wdd:AUD_PhilosopherCollector ;
    wdd:excludesAudience wdd:ANTI_RigidFunctionalist ;
    wdd:symbolicNumber 1959 ;
    wdd:numberSource "Piero Manzoni" ;
    wdd:numberMeaning "Year Manzoni created his first Linee" ;
    wdd:manifestoText "Memorie is an extreme act, a reflection on the fatal transience of things that has in the dimension of memory the only possible resistance." .

wdd:WORK_Aldila rdf:type owl:NamedIndividual , wdd:MaterialWork, wdd:LimitedEditionWork ;
    rdfs:label "Aldila" ;
    wdd:archiveCode "WDD-AL-2025" ;
    wdd:conceptionYear "2025"^^xsd:gYear ;
    wdd:editionTotal "9" ; wdd:editionUnit "pieces" ;
    wdd:dimensionsCm "50 diameter sphere" ;
    wdd:productionLocation "Murano, Italy" ;
    wdd:createdBy wdd:AUTH_FrancescoMeneghello ;
    wdd:coCreatedBy wdd:AUTH_SpyrosDrosopoulos ;
    wdd:realizedBy wdd:CRAFT_SimoneCenedese ;
    wdd:questionPosed "What are you willing to destroy to truly experience?" ;
    wdd:embodiesAxiom wdd:AX01_WeDontDesign, wdd:AX02_FormFollowsMeaning,
        wdd:AX04_DesignIsQuestion ;
    wdd:embodiesTension wdd:T01_PresenceAbsence, wdd:T11_FragileRobust,
        wdd:T20_PossessionExperience, wdd:T21_CreationDestruction, wdd:T22_VisibleInvisible ;
    wdd:activatesParadox wdd:P10_DestructionForFruition, wdd:P11_SelfAnnihilatingValue,
        wdd:P01_VisibilityOfImmaterial ;
    wdd:evokesArchetype wdd:ARCH_Containing, wdd:ARCH_Scenting ;
    wdd:subvertsArchetype wdd:ARCH_Containing ;
    wdd:usesMaterial wdd:MAT_MuranoCrystal, wdd:MAT_RoseFragrance, wdd:MAT_RawIron,
        wdd:MAT_Scent, wdd:MAT_Void, wdd:MAT_Absence ;
    wdd:appliesSubtraction wdd:FunctionalSubtraction ;
    wdd:requiresPerformativeAct wdd:ACT_DestructiveChoice ;
    wdd:includesActivatingObject wdd:OBJ_Hammer ;
    wdd:citesArtist wdd:PERS_LucioFontana, wdd:PERS_PieroManzoni, wdd:PERS_DanteAlighieri ;
    wdd:citesArtwork wdd:ARTWORK_FontanaFineDiDio, wdd:ARTWORK_ManzoniMerda, wdd:ARTWORK_DanteCommedia ;
    wdd:dialoguesWith wdd:ARTWORK_FontanaFineDiDio, wdd:ARTWORK_ManzoniMerda ;
    wdd:influencedBy wdd:MOV_Spatialism, wdd:MOV_ConceptualArt ;
    wdd:appropriatesGesture wdd:PRINC_ContentUnknowable ;
    wdd:embodiesConcept wdd:CONC_Neoplatonism, wdd:CONC_Synesthesia, wdd:CONC_Alchemy ;
    wdd:critiques wdd:PHEN_Consumerism, wdd:PHEN_InstantGratification ;
    wdd:activatesSense wdd:SENSE_Sight, wdd:SENSE_Touch ;
    wdd:blocksSense wdd:SENSE_Smell ;
    wdd:hasFruitionMode wdd:FRUIT_Performative, wdd:FRUIT_Decisive, wdd:FRUIT_SlowContemplation ;
    wdd:addressedTo wdd:AUD_PerformativeParticipant, wdd:AUD_PhilosopherCollector ;
    wdd:excludesAudience wdd:ANTI_PassiveConsumer, wdd:ANTI_RigidFunctionalist ;
    wdd:symbolicNumber 9 ;
    wdd:numberSource "Dante Alighieri" ;
    wdd:numberMeaning "9 circles of Hell, 9 heavens of Paradise — change and rebirth" ;
    wdd:manifestoText "Beyond. Beyond physical reality, beyond the common way of relating to things. Only one instant separates the visual experience from the olfactory one. An instant that contemplates an act of destruction, of renunciation of material presence." .

wdd:WORK_0000 rdf:type owl:NamedIndividual , wdd:ImmaterialWork, wdd:LimitedEditionWork ;
    rdfs:label "00:00" ;
    rdfs:comment "A non-edition: a collectible that cannot be collected, where the work coincides with its absence" ;
    wdd:archiveCode "WDD-00-0000" ;
    wdd:conceptionYear "2026"^^xsd:gYear ;
    wdd:editionTotal "0/0" ; wdd:editionUnit "pieces" ;
    wdd:dimensionsCm "no physical dimensions" ;
    wdd:productionLocation "Not site-bound (conceptual work)" ;
    wdd:createdBy wdd:AUTH_FrancescoMeneghello ;
    wdd:questionPosed "Can a work be acquired when it does not exist? What happens to desire, value and authorship when possession is structurally impossible?" ;
    wdd:embodiesAxiom wdd:AX01_WeDontDesign, wdd:AX02_FormFollowsMeaning,
        wdd:AX03_AbsenceIsMore, wdd:AX04_DesignIsQuestion ;
    wdd:embodiesTension wdd:T01_PresenceAbsence, wdd:T02_FullnessVoid,
        wdd:T06_ConceptName, wdd:T16_PromiseDenying,
        wdd:T20_PossessionExperience, wdd:T22_VisibleInvisible ;
    wdd:activatesParadox wdd:P01_VisibilityOfImmaterial, wdd:P02_WeightOfVoid,
        wdd:P04_FunctionOfLack, wdd:P11_SelfAnnihilatingValue ;
    wdd:evokesArchetype wdd:ARCH_Watching, wdd:ARCH_Measuring, wdd:ARCH_Recording ;
    wdd:subvertsArchetype wdd:ARCH_Containing ;
    wdd:usesMaterial wdd:MAT_Void, wdd:MAT_Absence, wdd:MAT_Time, wdd:MAT_Silence ;
    wdd:appliesSubtraction wdd:MaterialSubtraction, wdd:NamingSubtraction,
        wdd:NarrativeSubtraction, wdd:FunctionalSubtraction ;
    wdd:requiresPerformativeAct wdd:ACT_SlowObservation ;
    wdd:citesArtist wdd:PERS_LucioFontana, wdd:PERS_PieroManzoni ;
    wdd:influencedBy wdd:MOV_ConceptualArt, wdd:MOV_Minimalism, wdd:MOV_Spatialism ;
    wdd:appropriatesGesture wdd:PRINC_VoidAsMeaning, wdd:PRINC_GestureAsPrimary,
        wdd:PRINC_ContentUnknowable ;
    wdd:embodiesConcept wdd:CONC_Transience, wdd:CONC_Vanitas ;
    wdd:critiques wdd:PHEN_Consumerism, wdd:PHEN_InstantGratification ;
    wdd:activatesSense wdd:SENSE_Sight, wdd:SENSE_Hearing ;
    wdd:blocksSense wdd:SENSE_Touch, wdd:SENSE_Smell, wdd:SENSE_Taste ;
    wdd:hasFruitionMode wdd:FRUIT_SlowContemplation, wdd:FRUIT_Disconnected,
        wdd:FRUIT_Solitary, wdd:FRUIT_Performative ;
    wdd:addressedTo wdd:AUD_PhilosopherCollector, wdd:AUD_Contemplative,
        wdd:AUD_PerformativeParticipant ;
    wdd:excludesAudience wdd:ANTI_PassiveConsumer, wdd:ANTI_StatusSeeker,
        wdd:ANTI_RigidFunctionalist ;
    wdd:symbolicNumber 0 ;
    wdd:numberSource "00:00 (midnight)" ;
    wdd:numberMeaning "Zero as threshold: the beginning that coincides with the end; the void as a generative condition rather than a lack" ;
    wdd:manifestoText "00:00 is a refusal of possession. The work does not manifest as object, but as a condition: absence sustained, value short-circuited, desire kept open. A collectible that cannot be collected." .

#--- Exploration Themes (from WDD_19) ---#

wdd:THEME_Matter rdf:type owl:NamedIndividual , wdd:ExplorationTheme ; rdfs:label "Matter" .
wdd:THEME_SpaceAndVoid rdf:type owl:NamedIndividual , wdd:ExplorationTheme ; rdfs:label "Space and Void" .
wdd:THEME_HumanPerception rdf:type owl:NamedIndividual , wdd:ExplorationTheme ; rdfs:label "Human Perception" .
wdd:THEME_Time rdf:type owl:NamedIndividual , wdd:ExplorationTheme ; rdfs:label "Time" .
wdd:THEME_SocialCritique rdf:type owl:NamedIndividual , wdd:ExplorationTheme ; rdfs:label "Social and Cultural Critique" .

#--- Ethics (from WDD_05) ---#

wdd:ETHICS_MaterialHonesty rdf:type owl:NamedIndividual , wdd:EthicalPrinciple ; rdfs:label "Material Honesty" .
wdd:ETHICS_RadicalTransparency rdf:type owl:NamedIndividual , wdd:EthicalPrinciple ; rdfs:label "Radical Transparency" .
wdd:ETHICS_AntiHype rdf:type owl:NamedIndividual , wdd:EthicalPrinciple ; rdfs:label "Anti-Hype Communication" .
wdd:ETHICS_FairCraftsmanship rdf:type owl:NamedIndividual , wdd:EthicalPrinciple ; rdfs:label "Fair Craftsmanship" .
wdd:ETHICS_CollectorRespect rdf:type owl:NamedIndividual , wdd:EthicalPrinciple ; rdfs:label "Collector Respect" .
wdd:ETHICS_AntiWaste rdf:type owl:NamedIndividual , wdd:EthicalPrinciple ; rdfs:label "Anti-Waste Philosophy" .
wdd:ETHICS_IntellectualHonesty rdf:type owl:NamedIndividual , wdd:EthicalPrinciple ; rdfs:label "Radical Intellectual Honesty" .
