From: <lor...@us...> - 2011-11-10 14:58:36
|
Revision: 3394 http://dl-learner.svn.sourceforge.net/dl-learner/?rev=3394&view=rev Author: lorenz_b Date: 2011-11-10 14:58:27 +0000 (Thu, 10 Nov 2011) Log Message: ----------- Started script which picks some random resources from endpoint, and retrieves their surrounding up to a specific level and uses this data together with a generated DBpedia ontology for debugging tests. Added Paths: ----------- trunk/scripts/src/main/java/org/dllearner/scripts/SPARQLSampleDebugging.java trunk/scripts/src/main/resources/dbpedia_0.75.owl Added: trunk/scripts/src/main/java/org/dllearner/scripts/SPARQLSampleDebugging.java =================================================================== --- trunk/scripts/src/main/java/org/dllearner/scripts/SPARQLSampleDebugging.java (rev 0) +++ trunk/scripts/src/main/java/org/dllearner/scripts/SPARQLSampleDebugging.java 2011-11-10 14:58:27 UTC (rev 3394) @@ -0,0 +1,129 @@ +package org.dllearner.scripts; + +import java.io.ByteArrayInputStream; +import java.io.ByteArrayOutputStream; +import java.net.URL; +import java.util.Collections; +import java.util.HashSet; +import java.util.Set; + +import org.apache.log4j.Level; +import org.apache.log4j.Logger; +import org.dllearner.algorithm.qtl.util.ModelGenerator; +import org.dllearner.algorithm.qtl.util.ModelGenerator.Strategy; +import org.dllearner.kb.sparql.ExtractionDBCache; +import org.dllearner.kb.sparql.SparqlEndpoint; +import org.dllearner.kb.sparql.SparqlQuery; +import org.semanticweb.owlapi.apibinding.OWLManager; +import org.semanticweb.owlapi.model.IRI; +import org.semanticweb.owlapi.model.OWLOntology; +import org.semanticweb.owlapi.model.OWLOntologyCreationException; +import org.semanticweb.owlapi.model.OWLOntologyManager; +import org.semanticweb.owlapi.reasoner.OWLReasoner; + +import com.clarkparsia.pellet.owlapiv3.PelletReasonerFactory; +import com.hp.hpl.jena.query.ResultSet; +import com.hp.hpl.jena.rdf.model.Model; +import com.hp.hpl.jena.rdf.model.ModelFactory; + +public class SPARQLSampleDebugging { + + private SparqlEndpoint endpoint; + private ExtractionDBCache cache = new ExtractionDBCache("cache"); + + private int sampleSize = 1000; + private int depth = 3; + + private Logger logger = Logger.getLogger(SPARQLSampleDebugging.class); + + public SPARQLSampleDebugging(SparqlEndpoint endpoint) { + this.endpoint = endpoint; + } + + private Set<String> extractSampleResources(int offset){ + logger.info("Extracting " + sampleSize + "sample resources..."); + long startTime = System.currentTimeMillis(); + Set<String> resources = new HashSet<String>(); + String query = String.format("SELECT DISTINCT ?s WHERE {?s a ?type} LIMIT %d OFFSET %d", sampleSize, offset); + + ResultSet rs = SparqlQuery.convertJSONtoResultSet(cache.executeSelectQuery(endpoint, query)); + + while(rs.hasNext()){ + resources.add(rs.next().getResource("s").getURI()); + } + logger.info("...done in " + (System.currentTimeMillis()-startTime) + "ms."); + return resources; + } + + private OWLOntology extractSampleModule(Set<String> resources){ + logger.info("Extracting sample module..."); + long startTime = System.currentTimeMillis(); + ModelGenerator modelGen = new ModelGenerator(endpoint, cache); + Model model = ModelFactory.createDefaultModel(); + for(String resource : resources){ + model.add(modelGen.createModel(resource, Strategy.CHUNKS, depth)); + } + logger.info("...done in " + (System.currentTimeMillis()-startTime) + "ms."); + return convert(model); + + } + + private OWLOntology loadReferenceOntology() throws OWLOntologyCreationException{ + OWLOntology ontology = OWLManager.createOWLOntologyManager().loadOntologyFromOntologyDocument( + getClass().getClassLoader().getResourceAsStream("dbpedia_0.75.owl")); + return ontology; + } + + private OWLOntology convert(Model model) { + ByteArrayOutputStream baos = new ByteArrayOutputStream(); + model.write(baos, "N-TRIPLE"); + ByteArrayInputStream bais = new ByteArrayInputStream(baos.toByteArray()); + OWLOntologyManager manager = OWLManager.createOWLOntologyManager(); + OWLOntology retOnt = null; + try { + retOnt = manager.loadOntologyFromOntologyDocument(bais); + } catch (OWLOntologyCreationException e) { + + } + return retOnt; + } + + public void run() throws OWLOntologyCreationException{ + OWLOntology reference = loadReferenceOntology(); + + OWLOntology sample; + OWLOntology merged; + OWLReasoner reasoner; + for(int i = 0; i < 10; i++){ + Set<String> resources = extractSampleResources(i * sampleSize); + sample = extractSampleModule(resources); + + Set<OWLOntology> ontologies = new HashSet<OWLOntology>(); + ontologies.add(sample); + ontologies.add(reference); + + merged = OWLManager.createOWLOntologyManager().createOntology(IRI.create("http://merged.en"), ontologies); + + reasoner = PelletReasonerFactory.getInstance().createNonBufferingReasoner(merged); + boolean isConsistent = reasoner.isConsistent(); + logger.info("Consistent: " + isConsistent); + System.out.println(isConsistent); + reasoner.dispose(); + } + + } + + /** + * @param args + * @throws Exception + */ + public static void main(String[] args) throws Exception { + Logger.getRootLogger().setLevel(Level.INFO); + Logger.getLogger(SPARQLSampleDebugging.class).setLevel(Level.INFO); + SparqlEndpoint endpoint = new SparqlEndpoint(new URL("http://dbpedia.aksw.org:8902/sparql"), + Collections.singletonList("http://dbpedia.org"), Collections.<String>emptyList()); + new SPARQLSampleDebugging(endpoint).run(); + + } + +} Property changes on: trunk/scripts/src/main/java/org/dllearner/scripts/SPARQLSampleDebugging.java ___________________________________________________________________ Added: svn:mime-type + text/plain Added: trunk/scripts/src/main/resources/dbpedia_0.75.owl =================================================================== --- trunk/scripts/src/main/resources/dbpedia_0.75.owl (rev 0) +++ trunk/scripts/src/main/resources/dbpedia_0.75.owl 2011-11-10 14:58:27 UTC (rev 3394) @@ -0,0 +1,32812 @@ +<?xml version="1.0"?> +<rdf:RDF xmlns="owlapi:ontology:ont1#" + xml:base="owlapi:ontology:ont1" + xmlns:Software="http://dbpedia.org/ontology/Software/" + xmlns:Astronaut="http://dbpedia.org/ontology/Astronaut/" + xmlns:SpaceStation="http://dbpedia.org/ontology/SpaceStation/" + xmlns:Building="http://dbpedia.org/ontology/Building/" + xmlns:Work="http://dbpedia.org/ontology/Work/" + xmlns:GrandPrix="http://dbpedia.org/ontology/GrandPrix/" + xmlns:Spacecraft="http://dbpedia.org/ontology/Spacecraft/" + xmlns:Infrastructure="http://dbpedia.org/ontology/Infrastructure/" + xmlns:MeanOfTransportation="http://dbpedia.org/ontology/MeanOfTransportation/" + xmlns:schema="http://schema.org/" + xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#" + xmlns:PopulatedPlace="http://dbpedia.org/ontology/PopulatedPlace/" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:SpaceShuttle="http://dbpedia.org/ontology/SpaceShuttle/" + xmlns:Lake="http://dbpedia.org/ontology/Lake/" + xmlns:LunarCrater="http://dbpedia.org/ontology/LunarCrater/" + xmlns:School="http://dbpedia.org/ontology/School/" + xmlns:Rocket="http://dbpedia.org/ontology/Rocket/" + xmlns:foaf="http://xmlns.com/foaf/0.1/" + xmlns:AutomobileEngine="http://dbpedia.org/ontology/AutomobileEngine/" + xmlns:Automobile="http://dbpedia.org/ontology/Automobile/" + xmlns:ontology="http://dbpedia.org/ontology/" + xmlns:Canal="http://dbpedia.org/ontology/Canal/" + xmlns:SpaceMission="http://dbpedia.org/ontology/SpaceMission/" + xmlns:Planet="http://dbpedia.org/ontology/Planet/" + xmlns:Stream="http://dbpedia.org/ontology/Stream/" + xmlns:Weapon="http://dbpedia.org/ontology/Weapon/" + xmlns:xsd="http://www.w3.org/2001/XMLSchema#" + xmlns:owl="http://www.w3.org/2002/07/owl#" + xmlns:gml="http://www.opengis.net/gml/" + xmlns:Person="http://dbpedia.org/ontology/Person/"> + <owl:Ontology rdf:about="owlapi:ontology:ont1"/> + + + + <!-- + /////////////////////////////////////////////////////////////////////////////////////// + // + // Datatypes + // + /////////////////////////////////////////////////////////////////////////////////////// + --> + + + + + <!-- http://dbpedia.org/datatype/centimetre --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/centimetre"/> + + + + <!-- http://dbpedia.org/datatype/cubicCentimetre --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/cubicCentimetre"/> + + + + <!-- http://dbpedia.org/datatype/cubicKilometre --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/cubicKilometre"/> + + + + <!-- http://dbpedia.org/datatype/cubicMetre --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/cubicMetre"/> + + + + <!-- http://dbpedia.org/datatype/cubicMetrePerSecond --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/cubicMetrePerSecond"/> + + + + <!-- http://dbpedia.org/datatype/day --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/day"/> + + + + <!-- http://dbpedia.org/datatype/engineConfiguration --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/engineConfiguration"/> + + + + <!-- http://dbpedia.org/datatype/euro --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/euro"/> + + + + <!-- http://dbpedia.org/datatype/fuelType --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/fuelType"/> + + + + <!-- http://dbpedia.org/datatype/hour --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/hour"/> + + + + <!-- http://dbpedia.org/datatype/inhabitantsPerSquareKilometre --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/inhabitantsPerSquareKilometre"/> + + + + <!-- http://dbpedia.org/datatype/kelvin --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/kelvin"/> + + + + <!-- http://dbpedia.org/datatype/kilogram --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/kilogram"/> + + + + <!-- http://dbpedia.org/datatype/kilogramPerCubicMetre --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/kilogramPerCubicMetre"/> + + + + <!-- http://dbpedia.org/datatype/kilometre --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/kilometre"/> + + + + <!-- http://dbpedia.org/datatype/kilometrePerSecond --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/kilometrePerSecond"/> + + + + <!-- http://dbpedia.org/datatype/kilowatt --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/kilowatt"/> + + + + <!-- http://dbpedia.org/datatype/litre --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/litre"/> + + + + <!-- http://dbpedia.org/datatype/megabyte --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/megabyte"/> + + + + <!-- http://dbpedia.org/datatype/metre --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/metre"/> + + + + <!-- http://dbpedia.org/datatype/millimetre --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/millimetre"/> + + + + <!-- http://dbpedia.org/datatype/minute --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/minute"/> + + + + <!-- http://dbpedia.org/datatype/newtonMetre --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/newtonMetre"/> + + + + <!-- http://dbpedia.org/datatype/poundSterling --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/poundSterling"/> + + + + <!-- http://dbpedia.org/datatype/squareKilometre --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/squareKilometre"/> + + + + <!-- http://dbpedia.org/datatype/squareMetre --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/squareMetre"/> + + + + <!-- http://dbpedia.org/datatype/usDollar --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/usDollar"/> + + + + <!-- http://dbpedia.org/datatype/valvetrain --> + + <rdfs:Datatype rdf:about="http://dbpedia.org/datatype/valvetrain"/> + + + + <!-- http://www.w3.org/2001/XMLSchema#date --> + + <rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#date"/> + + + + <!-- http://www.w3.org/2001/XMLSchema#gYear --> + + <rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#gYear"/> + + + + <!-- http://www.w3.org/2001/XMLSchema#gYearMonth --> + + <rdfs:Datatype rdf:about="http://www.w3.org/2001/XMLSchema#gYearMonth"/> + + + + <!-- + /////////////////////////////////////////////////////////////////////////////////////// + // + // Object Properties + // + /////////////////////////////////////////////////////////////////////////////////////// + --> + + + + + <!-- http://dbpedia.org/ontology/academicAdvisor --> + + <owl:ObjectProperty rdf:about="http://dbpedia.org/ontology/academicAdvisor"> + <rdf:type rdf:resource="http://www.w3.org/2002/07/owl#InverseFunctionalProperty"/> + <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Person"/> + <rdfs:domain rdf:resource="http://dbpedia.org/ontology/Scientist"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/actScore"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/addressInRoad"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/administrativeCollectivity"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/administrativeDistrict"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/affiliation"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftAttack"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftBomber"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftElectronic"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftFighter"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftHelicopter"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftHelicopterAttack"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftHelicopterCargo"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftHelicopterMultirole"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftHelicopterObservation"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftHelicopterTransport"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftHelicopterUtility"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftInterceptor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftPatrol"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftRecon"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftTrainer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/aircraftTransport"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/album"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/alliance"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/alumni"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/animal"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/anthem"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/appointer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/archipelago"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/architect"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/architecturalStyle"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/arrondissement"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/artery"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/artist"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/assembly"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/assistantPrincipal"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/associate"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/associateEditor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/associatedAct"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/associatedBand"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/associatedMusicalArtist"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/associatedRocket"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/associationOfLocalGovernment"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/athletics"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/author"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/authority"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/automobilePlatform"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/availableSmartCard"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/award"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/bandMember"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/basedOn"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/battle"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/beatifiedBy"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/beatifiedPlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/beltwayCity"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/billed"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/binomial"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/binomialAuthority"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/biome"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/birthPlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/blockAlloy"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/board"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/bodyDiscovered"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/bodyStyle"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/boiler"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/boilerPressure"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/booster"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/border"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/borough"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/branchFrom"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/branchTo"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/brand"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/broadcastArea"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/broadcastNetwork"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/builder"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/building"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/campus"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/canonizedBy"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/canonizedPlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/canton"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/capital"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/capitalCountry"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/capitalMountain"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/capitalPlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/capitalPosition"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/capitalRegion"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/category"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/ceo"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/ceremonialCounty"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/chain"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/chairLabel"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/chairman"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/chairperson"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/chancellor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/channel"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/chaplain"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/chef"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/chiefEditor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/child"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/childOrganisation"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/choreographer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/cinematography"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/citizenship"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/city"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/class"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/closingFilm"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/clubsRecordGoalscorer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/coach"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/coachedTeam"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/college"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/colour"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/commandStructure"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/commander"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/committeeInLegislature"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/company"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/comparable"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/compiler"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/component"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/composer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/computingInput"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/computingMedia"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/computingPlatform"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/congressionalDistrict"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/connotation"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/constructionMaterial"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/coolingSystem"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/councilArea"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/country"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/countryOrigin"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/countryWithFirstAstronaut"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/countryWithFirstSatellite"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/countryWithFirstSatelliteLaunched"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/countryWithFirstSpaceflight"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/county"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/countySeat"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/coverArtist"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/cpu"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/creativeDirector"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/creator"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/creatorOfDish"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/crew"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/crewMember"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/crosses"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/curator"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/currency"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/currentMember"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/currentPartner"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/currentProduction"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/custodian"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/daylightSavingTimeZone"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/dean"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/deathCause"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/deathPlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/debutTeam"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/denomination"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/department"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/deputy"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/derivative"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/designCompany"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/designer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/developer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/director"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/discoverer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/distributingCompany"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/distributingLabel"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/distributor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/district"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/division"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/doctoralStudent"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/domain"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/draftTeam"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/drainsFrom"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/drainsTo"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/editing"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/editor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/education"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/educationSystem"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/emmyAward"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/employer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/endPoint"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/endingTheme"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/engine"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/engineType"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/engineer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/equipment"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/era"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/ethnicGroup"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/ethnicity"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/europeanAffiliation"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/europeanParliamentGroup"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/event"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/executiveProducer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/family"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/fastestDriver"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/fastestDriverCountry"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/fastestDriverTeam"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/federalState"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/field"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/film"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/filmFareAward"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/firstAppearance"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/firstAscentPerson"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/firstDriver"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/firstDriverCountry"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/firstDriverTeam"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/firstFlight"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/firstLaunchRocket"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/firstLeader"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/firstPopularVote"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/firstRace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/firstWin"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/firstWinner"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/flagBearer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/followingEvent"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/format"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/formerBandMember"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/formerBroadcastNetwork"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/formerChoreographer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/formerCoach"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/formerHighschool"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/formerPartner"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/formerTeam"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/foundationPlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/foundedBy"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/foundingPerson"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/fourthCommander"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/frazioni"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/fuel"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/fuelSystem"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/fundedBy"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/gameArtist"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/gameEngine"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/garrison"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/gender"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/generalManager"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/genre"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/genus"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/governingBody"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/government"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/governmentCountry"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/governmentMountain"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/governmentPlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/governmentPosition"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/governmentRegion"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/governmentType"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/governor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/governorGeneral"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/grades"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/ground"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/growingGrape"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/guest"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/hasJunctionWith"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/hasVariant"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/head"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/headAlloy"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/headChef"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/headquarter"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/headquarters"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/headteacher"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/heir"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/highestMountain"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/highestPlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/highestPosition"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/highestRegion"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/highestState"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/highschool"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/highwaySystem"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/homeArena"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/homeStadium"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/homeport"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/hometown"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/honours"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/house"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/hubAirport"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/ideology"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/illustrator"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/incumbent"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/industry"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/inflow"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/ingredient"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/innervates"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/instrument"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/intercommunality"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/internationalAffiliation"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/isPartOf"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/isPartOfAnatomicalStructure"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/isPartOfMilitaryConflict"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/isPartOfWineRegion"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/island"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/iso6391Code"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/iso6392Code"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/iso6393Code"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/isoCodeRegion"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/jointCommunity"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/jurisdiction"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/keyPerson"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/kingdom"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/knownFor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/landingVehicle"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/language"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/languageFamily"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/languageRegulator"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/largestCity"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/largestSettlement"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lastAppearance"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lastFlight"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lastLaunchRocket"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lastRace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lastWin"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/launchPad"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/launchSite"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/launchVehicle"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/layout"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/leader"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/leaderFunction"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/leaderName"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/leaderParty"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/league"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/leftChild"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/leftTributary"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/legalForm"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/license"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lieutenancyArea"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lieutenant"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/literaryGenre"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/localAuthority"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/locatedInArea"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/location"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/locationCity"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/locationCountry"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lounge"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lowestMountain"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lowestPlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lowestPosition"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lowestRegion"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lowestState"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lymph"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/lyrics"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/maidenFlightRocket"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/mainInterest"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/mainOrgan"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/maintainedBy"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/majorIsland"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/majorShrine"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/management"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/managementMountain"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/managementPlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/managementPosition"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/manager"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/managerClub"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/managingEditor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/manufacturer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/map"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/march"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/mayor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/mediaType"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/meetingRoad"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/memberOfParliament"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/mergedIntoParty"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/metropolitanBorough"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/militaryBranch"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/militaryRank"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/militaryUnit"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/mission"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/monarch"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/mostWins"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/mountainRange"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/mouthCountry"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/mouthMountain"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/mouthPlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/mouthPosition"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/mouthRegion"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/movement"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/municipality"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/musicBy"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/musicComposer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/musicFusionGenre"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/musicSubgenre"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/musicalArtist"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/musicalBand"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/namedAfter"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/narrator"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/nationalAffiliation"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/nationalOlympicCommittee"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/nationality"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/nearestCity"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/neighboringMunicipality"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/nerve"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/network"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/nextMission"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/nobelLaureates"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/nominee"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/nonFictionSubject"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/notableCommander"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/notableIdea"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/notableWine"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/notableWork"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/nrhpType"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/numberOfClassrooms"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/occupation"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/officerInCharge"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/officialLanguage"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/oilSystem"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/openingFilm"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/openingTheme"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/operatedBy"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/operatingSystem"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/operator"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/opponent"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/order"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/organSystem"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/origin"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/originalEndPoint"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/originalLanguage"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/originalStartPoint"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/orogeny"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/otherParty"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/outflow"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/owner"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/owningCompany"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/owningOrganisation"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/parent"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/parentCompany"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/parentMountainPeak"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/parentOrganisation"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/parish"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/part"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/partner"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/party"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/pastMember"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/pastor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/patron"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/person"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/personFunction"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/philosophicalSchool"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/photographer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/phylum"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/picture"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/pictureFormat"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/place"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/placeOfBurial"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/plant"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/poleDriver"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/poleDriverCountry"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/poleDriverTeam"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/politicalPartyInLegislature"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/politicalPartyOfLeader"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/populationPlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/port1"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/port2"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/portrayer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/powerType"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/precursor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/predecessor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/premierePlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/presenter"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/president"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/previousEditor"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/previousEvent"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/previousInfrastructure"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/previousMission"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/previousWork"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/primeMinister"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/principal"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/principalArea"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/principalEngineer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/producer"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/product"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/profession"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/programmeFormat"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/programmingLanguage"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/projectCoordinator"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/projectParticipant"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/promotion"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/prospectTeam"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/province"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/provost"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/publisher"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/railwayLineUsingTunnel"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/railwayRollingStock"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/rebuilder"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/recentWinner"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/recordLabel"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/recordedIn"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/rector"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/region"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/regionServed"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/regionalLanguage"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/related"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/relatedMeanOfTransportation"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/relation"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/relative"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/religion"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/religiousHead"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/religiousHeadLabel"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/residence"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/resolution"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/restingPlace"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/restingPlacePosition"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/retiredRocket"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/rightChild"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/rightTributary"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/rival"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/river"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/riverBranch"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/riverBranchOf"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/riverMouth"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/rocket"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/rocketFunction"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/routeEnd"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/routeEndLocation"/> + <owl:propertyDisjointWith rdf:resource="http://dbpedia.org/ontology/routeJunctio... [truncated message content] |